@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: Airbus; /* Гарнитура шрифта */
    src: url('https://wtruib.ru/img/aispec.ttf'); /* Путь к файлу со шрифтом */
}

/* @import url(http://meyerweb.com/eric/tools/css/reset/reset.css); */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ---------- GENERAL ---------- */

body {
	background-color: #2c3338;
	color: #95999d;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
}

a {
	color: #eee;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

input, select, option {
	border: none;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	padding: 0;
	-webkit-appearance: none;
}

p {
	line-height: 1.5em;
}


h1{
	font-size:xx-large;
	font-weight:bold;
	color:#eee;
	text-align:center;
	padding:5px;
}

h2{
	font-size:large;
	font-weight:bold;
	color:#eee;
	text-align:center;
	padding:5px;
}

abbr{color:#eee; font-weight:bold;}
small{ font-size:x-small;}
b{font-weight:bold;}

.wrapper {
	/*display: table; */
	/*height: 100%; */
	/*width:100%;*/
	display: flex; /* Создаем гибкую структуру */
	flex-direction: column; /* Располагаем элементы вертикально */
	min-height: 100vh
}
.content {display: table-row; height: 100%; }
.footer {
	background-color: #3b4148;
	text-align:center;
	font-size: small;
	font-weight:bold;
	padding:2px;
	margin-top: auto; /* Здесь вступает в действие магия Flexbox */
}

#logo {
  font-size:xx-large;
	font-weight:bold;
	color:#eee;
	text-align:center;
	padding:0;
	height:32px;
	display:block;
/* 	border: 1px solid #fff; */
}
#logo a{
/*    position:absolute; */
   width:32px;
   height:32px;
   background:url('https://wtruib.net/img/ic_launcher4/icon32.png');
	display:inline-block;
/* 	border: 1px solid #fff; */
}

#logo5 {
	display:block;
	text-align: center;
}

.logo5{
/*    position:absolute; */
	width:48px;
	height:48px;
	background:url('https://wtruib.net/img/logo5_48.png');
	display:inline-block;
/* 	border: 1px solid #fff; */
}

#logo5 a{
	padding:0;
	font-family: 'Airbus';
	font-size:40px;
	text-decoration:none;
	display:block;
} 

#logo5 span{
	display: inline-block;
	padding:0px;
	height:48px;
}


#logo span{
	height:32px;
	margin: 5px auto; 
	padding: 5px 0px;
	display:inline-block;
/* 	border: 1px solid #fff; */
}


.topbar{
	/* padding:2px 5px; */
	width:100%;
}
.auth{
	padding:2px 5px;
	float:right;
	text-align:right;
}
.topbar a{
	cursor:pointer;
	padding: 0px 3px;
}


.box1{
	padding:5px;
}


.clearfix:before, .clearfix:after {
	display: table;
	content: "";
}

.clearfix:after { 
	clear: both; 
}

/* NAV BAR */

.nav-bar{
	padding: 5px;
	font-weight: bold;
}

.nav-bar a{
	cursor: pointer;
}

/* ---------- LOGIN ---------- */

#login {
	margin: 30px auto;
	width: 350px;
}

#login form{
	text-align: center;
	padding: 5px;
}

#login form span{
	background-color: #363b41;
	border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	-webkit-border-radius: 3px 0 0 3px;
	color: #606468;
	display: block;
	float: left;
	height: 50px;
	line-height: 50px;
	text-align: center;
	width: 50px;
}

#login form input, select {
	height: 50px;
	outline:none;
}

#login form input[type="text"], input[type="password"], select {
	background-color: #3b4148;
	border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	-webkit-border-radius: 0px 3px 3px 0px;
	color: #606468;
	margin-bottom: 1em;
	padding: 0 16px;
	width: 255px;
}

#login form  select {
	width: 287px;
}

#login form input:focus {
	color:#fff;
}

/* @deprecated - use pink-button */
#login form input[type="submit"] {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #ea4c88;
	color: #eee;
	font-weight: bold;
	margin-bottom: 2em;
	text-transform: uppercase;
	cursor:pointer;
	width: 280px;
}
/* @deprecated  - use pink-button */
#login form input[type="submit"]:hover {
	background-color: #d44179;
}

#login > p {
	text-align: center;
}

#login > p span {
	padding-left: 5px;
}

#login option, select{
	color:white;
}

#login a:hover{
	text-decoration: underline;
}

/* PAGE BOX */

.page-box{
	width: 100%;
	padding: 10px;
	margin: 10px auto;
	text-align: center;
}

.subscriptions{

	border-radius: 5px;
	padding: 5px 5px 10px 5px;
	border: 1px solid #606468;
	margin-top: 20px;
}

.subscriptions h3{
	position: relative;
	top: -15px;
	text-align: center;
	font-weight: bold;
	width: 100%;
}
.subscriptions h3 span{
	padding: 0 10px;
	background: #2c3338;
}

.subscriptions h3 b{
	color: grey;
}

.subscriptions h3 small{
	text-decoration: line-through;
	font-size: small;
}

.subscriptions b{
	word-break: break-all;
	display: inline;
	border: 1px dotted grey;
	padding: 2px;
	border-radius: 2px;
	margin: 2px;
}

.subscriptions li{
	padding: 5px;
}

.subscriptions hr{
	margin: 5px 0;
	padding: 0;
	height: 0;
	border: none;
	border-top: 1px dashed grey;
}

.invite{
	font-size: large;
	font-weight: bold;
	border: 1px dotted grey;
	background: #4d4d4d;
	padding: 5px;
	margin: 2px;
	text-align: center;
}

.invite a{
	font-size: small;
}

.green {
	font-weight: bold;
	color: green;
}

.red {
	font-weight: bold;
	color: #bf0303;
}

.yellow{
	font-weight: bold;
	color: #bfae05;
}

.circle-number {
	position: relative; /* Абсолютное позиционирование */
	top: -13px; /* Отступ от верхнего края */
	right: 10px; /* Отступ от правого края */
	width: 15px; /* Ширина круга */
	height: 15px; /* Высота круга */
	background-color: grey; /* Цвет круга */
	border-radius: 50%; /* Делаем круг */
	text-align: center; /* Выравниваем текст по центру */
	line-height: 15px; /* Выравниваем текст по вертикали */
	color: black; /* Цвет текста */
	font-size: 11px; /* Размер текста */
}

/* BUTTONS */

.pink-button {
	padding: 10px;
	text-align: center;
	outline:none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #ea4c88;
	color: #eee;
	font-weight: bold;
	margin: 10px 5px 2em;
	text-transform: uppercase;
	cursor:pointer;
	width: 280px;
	text-decoration: none;
}

.pink-button:hover {
	background-color: #d44179;
}

.pink-button a, a:hover, a:visited, a:link, a:active{
	text-decoration: none;
}

/* ---------- SIMPLE FORMS ---------- */

.asterics{
	display:inline-block;
	color:red;
}

.info-block {
	background-color: #3b4148;
	border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	-webkit-border-radius: 0px 3px 3px 0px;
	color: white;
	margin-bottom: 1em;
	padding: 0 30px;
	width: 280px;
	text-align: left;
}
.info-block h5 {
	text-align: center;
}

.abbr a {
	margin:5px;
}

.errors ul{
	padding-left: 1px;
	list-style: square inside;
}
.errors{
	padding: 1px;
	border: 1px solid #ea4c88;
	background: #404040;
	color:#ea4c88;
}

.view{
	height:100%;
	margin:auto auto;
}

/* ---------- DROPDOWN LIST ---------- */

.hide-content{
	margin: 10px auto;
	/* padding: auto; */
	display: none;
	text-align: left;
}
.hide-content li{
	text-align: left;
	cursor: pointer;
}
.hide-content li:hover{
	background-color: #3b4148;
}

.hide-content a{
	font-size: large;
}



.hd li{
	font-size: small;
	text-align: center;
	cursor: auto;
}
.hd li:hover{
	background-color: #2c3338;
}


/* Изменение цвета выпадающих ссылок при наведении курсора */
.dropdown-content a:hover {background-color: #ddd;}

/* Показать выпадающее меню при наведении курсора */
.dropdown:hover .dropdown-content {display: block;}

/* Изменение цвета фона кнопки раскрывающегося списка при отображении содержимого раскрывающегося списка */
.dropdown:hover .dropbtn {background-color: #3e8e41;}

/* ---------- MAIL ---------- */

.mail{
	width: 100%;
	text-align:right;
}

.infobox{
  	margin:5px auto;
	padding:2px 0;
}

/* MAIN TABLES */

.main_table{
	width: 100%;
	overflow-x: auto;
	overflow-y: auto;

}
.main_table table{
	border: 1px solid grey;
	overflow-x: auto;
	overflow-y: auto;
	width: 99%;
}

.main_table th{
	text-align: center;
	font-size: small;
	background: #4d4d4d;
}
.main_table tr{
	border: 1px dotted grey;

}
.main_table td{
	padding: 5px;
}

/* Table buttons */

.button-give{
	cursor: pointer;
	border: 1px solid grey;
	border-radius: 5px;
	padding: 3px;
	font-weight: bold;
}
.button-give:hover{
	background: #4d4d4d;
}

/* STATUSES COLOR */
.status_box{color: #292929; font-weight: bold; font-size: large; font-family: "Courier New", Courier, monospace;}
.status_0{background: #dfdcdc;}
.status_1{background: #dcdc83;}
.status_2{background: #6bb56b;}
.status_3{background: #5a81e3;}
.status_4{background:indianred;}


/* ---------- table for ABBR and STATION ---------- */
.tables{
	border: #3b4148 solid 1px;
}
.tables th{
	border: #606468 solid 1px;
	background: #3b4148;
	padding: 5px;
}
.tables td{
	padding: 5px;
	border: #3b4148 solid 1px;
}

