:root {
  --hd-bg-top-color: #0779bf;
  --hd-bg-bottom-color: #47a8e4;
  --menu-bg-color: #c6e3f5;
  --menu-bg-hv-color: #e6eff5;
  --link-color: #0071b3;
  --main-text-color: DarkSlateGray;
  --light-gray-0: #e4e4e4;
  --light-gray-1: #efefef;
  --sc-color: #e75e1a;
}

body {
  text-align: center;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

div.container {
  display: flex;
  margin-left: auto;
  margin-right:auto;
  height: 100%;
  width: 100%;
  max-width: 750px;
}

h1, h2 {
  text-align: center;
  margin: 10px 0;
  font-weight: inherit;
  font-size: 120%;
}

/* ==== Шапка страницы ==== */

header {
  height: 110px;
  background: linear-gradient(var(--hd-bg-top-color),var(--hd-bg-bottom-color));
}


#logo {
  padding:5px;
  height: 100px;
}

#logo img {
  width: 100px;
}

#header {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  color: white;
  font-size: 12px;
  text-align: center;
}

#header > div {
  display: flex;
  flex-grow: 1;
}

/* Заголовок, включающий копирайт и статистику  */

#title-container {
  padding: 0 20px;
}

#copyright a {
  color: white;
  font-weight: bold;
}

#title {
  margin-top: 5px;
  font-size: 20px;
  white-space: nowrap;
}

#stat {
  margin: 6px 0 7px 0;
  font-size: 11px;
}

/* Кнопки меню и поиска для w < 480 */

#buttons-toggle {
  display: none;
  margin: 0 5px;
  font-size: 24px;
}

#buttons-toggle i {
  cursor: pointer;
}

#search-toggle {
  margin: 2px 0;
}

#menu-toggle {
  margin-top: 40px;
}

/* Форма поиска */

#search-form {
  margin-top: 0;
  text-align: left;
}

#search-form input {
  border: 1px solid var(--menu-bg-color);
  padding-top: 3px;
  font-size: 14px;
  background: var(--menu-bg-hv-color);
}

#search-form button {
  margin: 0;
  cursor: pointer;
  border: none;
  border-radius: 0;
  padding: 1px 4px 2px 1px;
  font-size: 18px;
  background: transparent;
  color: inherit;
  text-shadow: none;
}

#search-form button:hover {
  background: rgba(255,255,255,0.2);
}

/* Главное меню */

#main-menu {
  flex-grow: 0;
}

#menu-links {
  display: flex;
  margin: 4px 0 0 0;
  padding: 0;
}

#main-menu li {
  margin: 0 1px;
  padding: 8px 10px;
  border-radius: 10px 10px 0 0;
  background: var(--menu-bg-color);
  font-size: 13px;
  list-style: none;
  white-space: nowrap;
}

#main-menu li:hover {
  background: var(--menu-bg-hv-color);
}

#main-menu li a {
  color: var(--main-text-color);
  text-shadow: 0 1px DarkGray;
}

#menu-item-current {
  background: white;
}


/* Формы ввода */

label {
  display: block;
  color: var(--main-text-color);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: bold;
}

input {
  margin: 3px 0;
  padding: 2px 5px;
  border: 1px solid silver;
  font-size: 13px;
}

button {
  margin: 10px 0 2px;
  padding: 4px 17px;
  border-radius: 15px;
  border: 1px solid var(--light-gray-0);
  border-bottom: 1px solid #b4b4b4;
  border-left-color: lightGray;
  border-right-color: lightGray;
  background: var(--light-gray-1);
  color: #555;
  text-shadow: 0 1px #eee;
  cursor: pointer;
}

button:hover {
  background: var(--light-gray-1);
}

button:disabled {
  color: #aaa;
}

/* --- Подвал страницы --- */

footer {
  height: 25px;
  margin-top: 25px;
  background: #1b88ca;
}

#footer-container {
  display: inline-block;
  height: 100%;
  color: white;
  font-size: 12px;
}

#symfony {
  float: left;
  padding: 4px 20px;
}

#symfony a {
  color: white;
  font-weight: bold;
}

#logout {
  float: right;
  padding: 4px 20px;
}

#logout a {
  color: yellow;
  font-weight: bold;
}

/* --- Основной блок --- */

#main-container {
  color: var(--main-text-color);
  font-size: 15px;
}

/* --- Блок с основным содержанием --- */


#content {
  width: 100%;
  line-height: 1.5;
  text-align: left;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

ul.list {
  padding: 0;
}

ul.list >li {
  padding: 0 4px;
  margin: 2px;
}

ul.list >li:nth-child(even) {
  background: var(--light-gray-0);
}

ul.list >li:nth-child(odd) {
  background: var(--light-gray-1);
}

.hidden {
  display: none;
}
/* --- Пейджер --- */

.pager {
  text-align: center;
}

.pager ul {
  padding-left: 0;
  margin: 5px 0;
}

.pager li {
  display: inline;
  padding: 2px 5px;
  font-size: 13px;
  font-weight: bold;
  list-style-type: none;
  border: 1px solid white;
}

.pager li:hover:not(.nohover) {
  border: 1px solid lightGray;
}

/* --- Форма авторизации -- */

#login_form {
  padding: 20px 30px;
  font-size: 13px;
}

@media (max-width: 480px) {

#title-container {
  padding: 0;
}

#title {
  white-space: normal;
}

#search-form {
  max-height: 0;
  max-height: 0;
  position: absolute;
  overflow: hidden;
  top: 111px;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 2;
  background: var(--hd-bg-bottom-color);
}

#search-form input {
  margin: 2px;
  background: white;
}

#search-form.active {
  max-height: 100%;
}


#main-menu {
  max-height: 0;
  position: absolute;
  overflow: hidden;
  top: 110px;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 3;
  background: white;
}

#main-menu.active {
  max-height: 100%;
}

#menu-links {
  display: block;
  margin: 0;
}

#main-menu li {
  margin: 1px;
  border-radius: 0 0 0 0;
}

#menu-item-current {
  background: var(--menu-bg-color);
}

#buttons-toggle {
  display: inline-block;
}

}

@media (max-width: 350px) {

#logo {
  padding-left: 2px;
}

#stat {
  display: none;
}

}
