/* Базовый контейнер табов */

.tabs {
    min-width: 320px;
    /* max-width: 800px; */
	width: 100%;
    padding: 0px;
    margin: 0 auto;
}
/* Стили секций с содержанием */

.tabs > section {
    display: none;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
}
/* Сразу открываем первую по очереди секцию */

section[name=sections1] {
	display: block;
}

.tabs > section > div {
    /* line-height: 1.5; */
    color: #383838;
    /* прикрутим анимацию */
    -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: 10px 10px;
    font-weight: 600;
    text-align: center;
    color: #aaa;
    border: 0px solid #ddd;
    border-width: 1px 1px 1px 1px;
    background: #f1f1f1;
    border-radius: 3px 3px 0 0;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
/* Шрифт-иконки от Font Awesome в формате Unicode */
/*
.tabs > label:before {
    font-family: fontawesome;
    font-weight: normal;
    margin-right: 10px;
}

.tabs > label[for*="1"]:before {
    content: "\f19a";
}

.tabs > label[for*="2"]:before {
    content: "\f17a";
}

.tabs > label[for*="3"]:before {
    content: "\f13b";
}

.tabs > label[for*="4"]:before {
    content: "\f13c";
}
*/

.section_roundrobin,
.section_bracket,
.section_places,
.section_stat,
.section_information {
	font-family: "fontello";
	margin-right: 5px;
}

.section_roundrobin:before {
	content: "\f0ce";
}

.section_bracket:before {
	content: "\e80a";
}

.section_places:before {
	content: "\f0cb";
}

.section_stat:before {
	content: "\e809";
}

.section_information:before {
	content: "\e811";
}

/* Изменения стиля переключателей вкладок при наведении */

.tabs > label:hover {
    color: #888;
    cursor: pointer;
}
/* Стили для активной вкладки */

.tabs > input:checked + label {
    color: #555;
    border-top: 1px solid #009933;
    border-bottom: 1px solid #fff;
    background: #fff;
}
/* Активация секций с помощью псевдокласса :checked */
/* При множественном использовании tabs не актуально
#tab1:checked ~ #content-tab1,
#tab2:checked ~ #content-tab2,
#tab3:checked ~ #content-tab3,
#tab4:checked ~ #content-tab4 {
    display: block;
}
		*/
		
/* Убираем текст с переключателей 
* и оставляем иконки на малых экранах

@media screen and (max-width: 680px) {
    .tabs > label {
font-size: 0;
    }
    .tabs > label:before {
margin: 0;
font-size: 100%;
    }
}
*/
/* Изменяем внутренние отступы 
*  переключателей для малых экранов
*/

@media screen and (max-width: 400px) {
    .tabs > label {
padding: 15px;
    }
}