/* Базовый контейнер табов */
.tabs {
	padding: 0px;
	margin: 30px auto;
	width:100%;
}
/* Стили секций с содержанием */
.tabs>section {
	display: none;
	padding: 35px 15px;
	background: #fff;
	border: 1px solid #f1f1f1;
}
.tabs>section>p {
	margin: 0 0 5px;
	line-height: 1.5;
	__color: #383838;
}
.tabs section *{
		/* прикрутим анимацию */
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

/* Описываем анимацию свойства opacity */
 
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* Прячем чекбоксы */
.tabs>input {
	display: none;
	position: absolute;
}
/* Стили переключателей вкладок (табов) */
.tabs>label {
	display: inline-block;
	margin: 0 0 -1px;
	padding: 5px 10px;
	text-align: center;
	border: 0px solid #f1f1f1;
	border-width: 1px 1px 1px 1px;
	border-radius: 15px 15px 0 0;
	font-size:12px;
	cursor:pointer;
}
.tabs>label i{margin-right:5px; font-size:18px;}

*/
/* Изменения стиля переключателей вкладок при наведении */
 
.tabs>label:hover {
	color: #E22638;
	cursor: pointer;
}
/* Стили для активной вкладки */
.tabs>input:checked+label {
	color: #E22638;
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #fff;
	background: #fff;
}
/* Активация секций с помощью псевдокласса :checked */
#tab1:checked~#content-tab1, #tab2:checked~#content-tab2, #tab3:checked~#content-tab3, #tab4:checked~#content-tab4, #tab5:checked~#content-tab5 {
	display: block;
}

#tab10:checked~#content-tab10, #tab11:checked~#content-tab11{
	display: block;
}

/* Убираем текст с переключателей 
* и оставляем иконки на малых экранах
*/

/*
@media screen and (max-width: 680px) {
	.tabs>label {
		font-size: 0;
	}
	.tabs>label:before {
		margin: 0;
		font-size: 18px;
	}
}
@media screen and (max-width: 400px) {
	.tabs>label {
		padding: 15px;
	}
}
*/


@media screen and (max-width: 850px) {
	.tabs>label span{display:none;}
	.tabs>label {__padding: 10px 20px;}
}
