/*Обнуление*/
*{padding: 0;margin: 0;border: 0;}
*,*:before,*:after{-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a,a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: inherit;}
/*--------------------*/

// Убираем стрелки в поле ввода number
::-webkit-textfield-decoration-container { }
::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

body{
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/* Стиль для блока шапки с логотипом */
.header_block {
	height: 60px;
	border-radius: 15px;
	box-shadow: 0 0 10px #000;
	margin: 10px;
}
.header_block img{
	height: 60px;
}
.main_block{
	height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стиль формы ввода имени и пароля */
form {
    display: flex;
    flex-direction: column;
	background-color: #c8cfcf;
	height: 500px;
	width: 500px;
	border-radius: 15px;
	box-shadow: 0 0 10px #000;
	margin: 0px auto;
	padding: 60px 0;
}
.form_title{
	font-size: 25px;
	font-weight: 700;
	margin: 0px 0px 30px 70px;
}
.form_item{
	margin: 0px 0px 20px 80px;
}
.form_label{
	font-size: 18px;
	display: block;
	margin: 0px 0px 10px 0px;
}
.form_input{
	height: 50px;
	padding: 0px 10px;
	border-radius: 5px;
	width: 80%;
	font-size: 20px;
	transition: all 0.5s ease 0s;
}
.form_input:focus {
	box-shadow: 0 0 15px black;
}

/* Стиль кнопки отправки имени и пароля */
.form_button {
	width: 60%;
	margin: 60px 0px 10px 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	background-color: #7a956b;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 20px;
	box-shadow: 0 5px 0 #161b13;
	transition: background-color 0.3s ease 0s;
	position: relative;
	top: 0px;
}
.form_button:hover {
	background-color: #4f6146;
}
.form_button:active{
	top: 6px;
	box-shadow: 0 2px 0 #161b13;

}
/* Стиль для сообщения об ошибке ввода имени и пароля */
.msg {
	font-size: 20px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

/*Кнопка очистки фильтра*/
.clear_filter_button {
	box-shadow: 0 3px 0 #161b13;
	transition: background-color 0.3s ease 0s;
	position: relative;
	top: 0px;
	min-width: 150px;
	margin: 5px; 
	font-size: 16px;
	border: 2px solid black; 
	border-radius: 10px; 
	padding: 5px;	
}
.clear_filter_button:hover {
/*	background-color: #7a956b;*/
}
.clear_filter_button:active{
	top: 3px;
	box-shadow: 0 1px 0 #161b13;
/*	background-color: grey;*/
}

/* Блок с вкладками Settings и js*/
.settings_tabs {
	margin-bottom: 20px;
}
#settings_tabs .tab {
    display: inline-block; /* выстраиваем вкладки в один ряд */
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    z-index:5;
}
.tabContent {
    position: relative;
	min-height: 650px;
	margin-bottom: 10px;
    border: 1px solid #707070;
    top: -1px; 
    z-index:1;
    padding: 10px;
    border-radius: 0 0 3px 3px
}
/* Блок с вкладками Settings и js*/
.config_tabs {
	margin-bottom: 20px;
}
#config_tabs .tab_config {
    display: inline-block; /* выстраиваем вкладки в один ряд */
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    z-index:5;
}
.tabContentConfig {
    position: relative;
	min-height: 650px;
	margin-bottom: 10px;
    border: 1px solid #707070;
    top: -1px; 
    z-index:1;
    padding: 10px;
    border-radius: 0 0 3px 3px
}

.whiteborder {
    border: 1px solid #707070;
    border-bottom: 1px solid #fff;
    border-radius: 10px 3px 0  0;
}
.hide {
    display: none;
}
.show {
    display: block;
}

