﻿/* TABS */
.tabs {
    position: relative;
    margin: 20px auto 0px; /* вернуть margin: 20px auto 80px; как будет видео обзор */
	width: 100%;}

.tabs h2
{
    float: left;
    width: 100%;
    margin: 20px 0 10px 0;
    font-family: OpenSans-Bold, GothaProBol, Calibri, Tahoma;
    font-size: 34px;
    line-height: 120%;
    color: #000;
}	

.tabs h3
{
    display: none;
}
	
.tabs label {
	display: block;
	float: left;
    font-family: OpenSans-Regular, OpenSans-Bold, GothaProBol, Calibri, Tahoma;
    font-size: 19px;
    font-weight: 400;
	border-radius: 10px;
    margin: 20px 2% 20px 0;
	padding: 5px 15px 5px 15px;
	color: #000;
	box-shadow: 0 0 30px #c1c1c1;
	background: #fff;
	cursor: pointer;
	position: relative;
	top: 0px;
	min-width: 90px;
	height: 40px;
	line-height: 40px;
	text-align: left;
	z-index: 1;
	opacity: 1;
}
	
.tabs label:hover
{
    color: #f91010;
}
	
.tabs input {
	position: absolute;
	left: -9999px;}
#tab_1:checked  ~ #tab_l1,
#tab_2:checked  ~ #tab_l2,
#tab_3:checked  ~ #tab_l3,
#tab_4:checked  ~ #tab_l4,
#tab_5:checked  ~ #tab_l5,
#tab_6:checked  ~ #tab_l6 {
	background: #f91010;
	top: 0;
	z-index: 3;
	color: #fff;
	position: relative;
	opacity: 1;
	box-shadow: none;
}

.tabs_cont {

	padding: 0px 0 0 0;
	position: relative;
	z-index: 2;
}

.tabs_cont > div {
	position: absolute;
	left: -9999px;
	top: 0;
	opacity: 0;
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;}

#tab_1:checked ~ .tabs_cont #tab_c1,
#tab_2:checked ~ .tabs_cont #tab_c2,
#tab_3:checked ~ .tabs_cont #tab_c3,
#tab_4:checked ~ .tabs_cont #tab_c4,
#tab_5:checked ~ .tabs_cont #tab_c5,
#tab_6:checked ~ .tabs_cont #tab_c6   {
	position: static;
	left: 0;
	opacity: 1;}
	
	
#tab_l1 img, #tab_l2 img, #tab_l3 img, #tab_l4 img, #tab_l5 img
{
    width: 30px;
    position: absolute;
    left: 12px;
    top: 10px;
}




