@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@400;500;600&family=Roboto+Flex:wght@100;200;300;400;500;600&display=swap');
@import url('../fonts/Fonts.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-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,img{display:block}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

body, html {
	height: 100%;
	font-family: "Roboto Flex", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #336699;
	line-height: 1.45;
}

.loading {
	width: 0%;
	height: 2px;
	background: #336699;
}

::selection {
  background: #336699;
  color: white;
}

::-moz-selection {
  background: #336699;
  color: white;
}

::-webkit-selection {
  background: #336699;
  color: white;
}

body.no-scroll { overflow: hidden; }

*, *::before, *::after { box-sizing: border-box; }

a {
	color: #336699;
	text-decoration: none;
	transition: 0.2s ease-in-out;
}

a:focus {
	outline: none;
	border: none;
}

strong, b { font-weight: 600; }

input, select {
	font-family: "Roboto Flex", sans-serif;
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0 12px;
	font-size: 16px;
	font-weight: 300;
	color: #336699;
	border: 2px solid transparent;
	outline: none;
	transition: border 0.2s ease-in-out;
}

textarea {
	font-family: "Roboto Flex", sans-serif;
	resize: none;
	width: 100%;
	padding: 12px;
	font-size: 16px;
	font-weight: 400;
	color: #336699;
	border: 2px solid transparent;
	outline: none;
	transition: border 0.2s ease-in-out;
}

textarea::-webkit-scrollbar-thumb { background-color: #336699; border: 1px solid #fff; }

input:focus, textarea:focus { border-color: #336699; }

input::placeholder, textarea::placeholder {
	font-family: "Roboto Flex", sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #ccc;
}

input[type="checkbox"] {
	width: 20px;
	height: 20px;
}

.field {
	position: relative;
	width: 100%;
}

.field .icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	color: #ccc;
}

.field:has(input:focus) .icon { color: #336699; } 

button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	height: 40px;
	cursor: pointer;
	border: none;
	background: #336699;
	color: #fff;
	padding: 0 20px;
	font-size: 14px;
	white-space: nowrap;
}

button:hover { background: #0e3047; }

button:focus {
	border: none;
	outline: none;
}

blockquote, .quote_block {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #336699;
	padding: 20px;
	color: #fff;
}

blockquote .icon { font-size: 20px; }

.wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	height: 100vh;
}

.modal {
	position: fixed;
	justify-content: center;
	align-items: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: rgba(7, 20, 34, 0.9);
	display: none;
	z-index: 10;
}

@keyframes fadeIn {
	from { background: rgba(7, 20, 34, 0); }
	to { background: rgba(7, 20, 34, 0.9); }
}

.modal.active {
	display: flex;
	animation: fadeIn 0.2s ease-in-out;
}

.modal .block {
	position: relative;
	display: flex;
	gap: 10px;
	width: 50%;
	padding: 20px;
	color: #fff;
}

.modal button { width: 40px; }

.modal-open .wrapper {
	pointer-events: none;
	user-select: none;
}

body.modal-open {
	overflow: hidden;
}

.container {
	max-width: 1180px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.header {
	display: flex;
	flex-direction: column;
}

.header .top, .header .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	line-height: 16px;
}

#weather {
	display: flex;
	align-items: center;
	gap: 5px;
	user-select: none;
	cursor: default;
}

#weather img  { height: 20px; }

.header .top .menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.header .menu_icon {
   display: none;
   width: 20px;
   height: 14px;
   position: relative;
   cursor: pointer;
}

.header .menu_icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #336699;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
 
.header .menu_icon span:nth-child(1) { top: 0px; }

.header .menu_icon span:nth-child(2),.header  .menu_icon span:nth-child(3) { top: 6px; }

.header .menu_icon span:nth-child(4) { top: 12px; }

 .menu.open .menu_icon span:nth-child(1), .menu.open  .menu_icon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.menu.open .menu_icon span:nth-child(2) { transform: rotate(45deg); }

.menu.open  .menu_icon span:nth-child(3) { transform: rotate(-45deg); }

.header .top .nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.header .top .nav .menus {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	font-size: 14px;
}

.header .top .nav .menus .item {
	text-transform: uppercase;
	display: none;
	text-align: center;
}

.header .top .nav .menus a {
	position: relative;
}

.header .top .nav .menus a:hover {
	margin-top: -5px;
	transition: 0.2s ease;
}

.header .top .nav .menus a:after {    
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: #336699;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.header .top .nav .menus a:hover:after { 
  width: 100%; 
  left: 0; 
}

.header .top .menu.open .nav {
		position: fixed;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		margin-top: 60px;
		background: #fff;
		z-index: 1000;
		overflow: auto;
	}

.header .social {
	display: flex;
	gap: 6px;
}

.header .social svg {
	width: 20px;
	height: 20px;
}
.header .social svg {
	fill: #336699;
}

.header .social a {
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(1);
	transition: transform 0.2s ease;
}

.header .social a:hover {
	transform: scale(1.3);
}

.header .bottom {
	padding-top: 10px;
}

.header-nav {
	display: flex;
	flex: 1;
	justify-content: space-between;
	font-family: "Fira Sans Condensed", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	align-items: center;
}

.header-nav .block {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	flex-wrap: wrap;
}

.header-nav a {
	position: relative;
	display: flex;
	justify-content: center;
	height: 30px;
	line-height: 32px;
	padding: 0 10px;
	flex-grow: 0;
}

.header-nav .search {
	line-height: 30px;
	width: 30px;
	height: 30px;
}

.header-nav .space {
	display: flex;
	flex-grow: 3;
}

.header-nav a:first-child {
	padding: 0;
	width: 30px;
	line-height: 28px;
}

.header-nav a.active {
	pointer-events: none;
}

.header-nav a.active, .header-nav a:active {
	background: #336688;
	color: #fff;
}

.header-nav .border {
  position: absolute;
  left: 0;
  background: currentColor;
  transition: transform 0.3s ease-in-out;
}

.header-nav .border-top,
.header-nav .border-bottom {
	width: 100%;
	height: 1px;
	transform: scaleX(0);
}

.header-nav .border-left,
.header-nav .border-right {
	width: 1px;
	height: 100%;
	transform: scaleY(0);
}

.header-nav .border-top,
.header-nav .border-left,
.header-nav .border-right {
	top: 0;
}

.header-nav .border-bottom {
	bottom: 0;
	transform-origin: bottom right;
}

.header-nav .border-top {
	transform-origin: top left;
}

.header-nav .border-left {
	transform-origin: bottom left;
}

.header-nav .border-right {
	left: auto;
	right: 0;
	transform-origin: top right;
}

.header-nav a:hover .border-top, .header-nav a:hover .border-bottom { transform: scaleX(1); }

.header-nav a:hover .border-left, .header-nav a:hover .border-right { transform: scaleY(1); }

.header-nav a:hover .border-right { transition-delay: 0.2s; }

.header-nav a:hover .border-bottom { transition-delay: calc(0.2s * 2); }

.header-nav a:hover .border-left { transition-delay: calc(0.2s * 3); }

[data-animation="diagonal"] .border-left { transform-origin: top left; }

[data-animation="diagonal"] .border-right, [data-animation="diagonal"] .border-bottom { transform-origin: bottom right; }

[data-animation="diagonal"] a:hover [class^=border] { transition-delay: 0s; }

.banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2px;
}

.banner a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner img {
	max-width: 100%;
}

.banner .erid { font-size: 8px; }

.main {
	display: flex;
	flex-direction: column;
	gap: 40px;
	flex: 1;
}

.main .section {
	display: flex;
	align-items: center;
	font-family: "Fira Sans Condensed", sans-serif;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}

.main .section .icon {
	font-size: 12px;
}

.main .content {
	display: flex;
	align-items: flex-start;
	width: 100%;
	gap: 20px;
}

.main .article {
	flex-direction: column;
}

.main .grid {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 20px;
}

/*.main .content .grid { width: 100%; }*/

.main .article .grid {
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.main .cell {
	display: flex;
	user-select: none;
}

.main .article .cell { overflow: hidden; }

.main .article .wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	color: #fff;
}

.main .article .wrap > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s;
	will-change: transform;
}

.main .article .wrap:hover > img {
	transform: scale(1.15);
}

.main .article .shutter {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	background-color: rgba(14, 48, 71, 0.8);
	transition: all 0.3s;
	transform: translate3d(0, 100%, 0);
	will-change: transform;
}

.main .article .content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: auto;
	transition: all 0.3s;
	transform: translate3d(0);
	will-change: transform;
	display: flex;
	flex-direction: column;
}

.main .article .title {
	display: block;
	width: 100%;
	margin: 0;
	padding: 20px 20px 50px;
	transition: all 0.3s;
	background-color: rgba(14, 48, 71, 0.6);
	transform: translate3d(0, -100%, 0);
	will-change: transform;
	text-transform: uppercase;
}

.main .article .story {
	padding: 0 20px;
	margin: 0;
	opacity: 0;
	transition: opacity 0.35s 0.2s;
	transform: translate3d(0);
	will-change: transform;
}

.main .article .info {
	position: absolute;
	width: 100%;
	opacity: 1;
	bottom: 0;
	padding: 20px;
	transition: opacity 0.3s;
	will-change: transform;
}

.main .article .cell .title { font-weight: 400; }

.main .article .cell .story { font-weight: 100; }

.main .article .wrap:hover .shutter { transform: translateY(0); }

.main .article .wrap:hover .content {
	top: 50%;
	transform: translate(0, -50%);
}

.main .article .wrap:hover .title {
	padding: 0 20px;
	background-color: rgba(255, 255, 255, 0);
	transform: translateY(0%);
}

.main .article .wrap:hover .story { opacity: 1; }

.main .article .wrap:hover .info { opacity: 0; }

.main .news .grid { width: 50%; }

.main .news .cell,
.main .inner .cell {
	position: relative;
	flex-direction: column;
}

.main .news .cell { height: 240px; }

.cell.block { position: relative; }

.cell.block:before {
	position: absolute;
	content: '';
	bottom: 25px;
	right: 20px;
	width: 100px;
	height: 20px;
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 75%, rgba(255,255,255,1) 100%);
	z-index: 1;
}

.main .inner .cell.articles, .main .inner .cell.newss, .main .inner .cell.partners { height: 193px; }

.main .inner .cell.vips, .main .inner .cell.autors { height: 240px; }

.articles .cover img, .newss .cover img, .partners .cover img {
	width: 250px !important;
	height: 150px !important;
}
.vips .cover img, .autors .cover img {
	width: 150px !important;
	height: 200px !important;
}

.main .news .wrap,
.main .inner .wrap { 
	display: flex;
	height: 100%;
	gap: 20px;
	padding: 20px;
	/*background: #f6f6f6;*/
	position: relative;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/*transform: translateZ(0);*/
}

.main .news .wrap:before,
.main .inner .wrap:before {
	content: "";
	position: absolute;
	border: #f6f6f6 solid 1px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: 0.3s;
	transition-property: top right bottom left;
	z-index: 1;
}

.main .news .wrap:hover:before,
.main .inner .wrap:hover:before {
	border: #336699 solid 1px;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
}

.main .news .cover {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.main .inner .cover {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.main .news .cover img,
.main .inner .cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main .cell .info {
	display: flex;
	justify-content: space-between;
	font-weight: 400;
}

.main .cell .info .date,
.main .cell .info .view {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 14px;
	gap: 4px;
}

.main .cell.fullstory .info .date, .main .cell.fullstory .info .view { font-size: 14px; }

.main .cell .icon { font-size: 14px; }

.main .news .text,
.main .inner .text {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 10px;
}

.main .news .title,
.main .inner .title {
	font-weight: 500;
	text-transform: uppercase;
}

.main .news .story,
.main .inner .story {
	display: flex;
	flex-grow: 1;
	overflow: hidden;
}

.main .inner .story { text-align: justify; }

.sidebar {
	display: flex;
	flex-shrink: 0;
	flex-direction: column;
	width: 200px;
	gap: 20px;
	text-align: center;
}

#dle-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}


.speedbar {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 4px;
	align-items: center;
	justify-content: flex-start;

}

.speedbar * { white-space: nowrap; }

.cell.fullstory {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #f6f6f6;
	padding: 20px;
	user-select: text;
}

.fullstory .title {
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
}

.fullstory .story:has(p) {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.fullstory .story { text-align: justify; }

.fullstory .story h1 { font-size: 24px; font-weight: 600; }
.fullstory .story h2 { font-size: 22px; font-weight: 600; }
.fullstory .story h3 { font-size: 20px; font-weight: 600; }
.fullstory .story h4 { font-size: 18px; font-weight: 600; }
.fullstory .story h5 { font-size: 16px; font-weight: 600; }
.fullstory .story h6 { font-size: 14px; font-weight: 600; }

.fullstory .story p {
	display: block;
	text-align: justify;
}

.fullstory .story i { font-style: italic; }

.fullstory .story a:not(.highslide) {
	color: #336699;
	box-shadow: inset 0 -1.2px 0 0 #336699;
	display: inline-block;
	padding: 0 4px;
	text-indent: 0;
}
.fullstory .story a:hover:not(.highslide) {
	border: none;
	box-shadow: inset 0 -25px 0 0 #336699;
	color: #fff;
}

.fullstory ul, .fullstory ol { margin-left: 20px; }

.fullstory ul li, .fullstory ol li { padding: 0 0 10px 10px; }

.fullstory .cover {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fullstory iframe {
	max-width: 920px;
}

.fullstory img {
	max-width: 920px;
	display: block;
	margin: 0 auto;
}

.fullstory .highslide {
	display: flex;
	justify-content: center;
}

.fullstory .cover a, .fullstory .border { position: relative; }

.fullstory .cover a:hover img, .fullstory a:hover .alt-text { cursor: zoom-in; }

.fullstory .border {}

.fullstory .alt-text {
	position: absolute;
	width: 100%;
	padding: 20px;
	background: rgba(0, 0, 0, 0.3);
	bottom: 0;
	color: #f6f6f6;
	font-size: 14px;
	text-align: center;
}

.fullstory .options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.fullstory .options a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	height: 30px;
	font-size: 14px;
	font-weight: 400;
	gap: 2px;
}

.fullstory .options a:hover .icon,
.fullstory .options a:active span {
	background: #0e3047;
	transition: 0.2s ease;
}

.fullstory .options a *  {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	background: #336699;
}

.fullstory .options .icon {
	display: flex;
	align-items: center;
	width: 40px;
	font-size: 18px;
}

.fullstory .options span { padding: 0 12px; }

.navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 40px 0;
}
.navigation .icon { font-size: 20px; }

.navigation .pages {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.navigation .pages * {
	font-size: 14px;
	padding: 8px 12px;
}

.navigation .pages span:not([class]) {
	font-size: 22px;
	font-weight: 700;
}

.navigation span { color: #ccc; }
.navigation .pages span { color: #336699; }

.footer {
	display: flex;
	padding: 30px 0;
	width: 100%;
	justify-content: center;
	align-items: center;
	background: #0e3047;
	color: #fff;
}

.footer a { color: #fff; }

.footer .block {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 1180px;
}

.footer .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	padding-bottom: 10px;
	border-bottom: 2px solid #fff;
}

.footer .top a:hover { margin-top: -10px; }

.footer-nav {
	display: flex;
	justify-content: center;
	font-family: "Fira Sans Condensed", sans-serif;
	text-transform: uppercase;
	align-items: center;
	column-gap: 10px;
	flex-wrap: wrap;
}

.footer-nav a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	font-weight: 400;
}

.footer .bottom {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.footer .bottom .nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	font-size: 14px;
}

.footer .bottom .nav a { position: relative; }

.footer .bottom .nav a:after {
	bottom: -5px;
	content: '';
	display: block;
	height: 1px;
	left: 50%;
	position: absolute;
	background: #fff;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}

.footer .bottom .nav a:hover:after {
	width: 100%;
	left: 0; 
}

.footer .social {
	display: flex;
	gap: 6px;
}

.footer .social a {
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(1);
	transition: transform 0.2s ease;
}

.footer .social a:hover { transform: scale(1.3); }

.footer .social svg {
	width: 20px;
	height: 20px;
}
.footer .social svg { fill: #fff; }

.footer .copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.footer .info, .footer .contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-weight: 100;
}

.footer .info div,
.footer .contacts div {
	display: flex;
	align-items: center;
	gap: 5px;
}

#share {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	background: #0e3047;
	color: #fff;
	padding: 50px;
}

#share label {
	font-size: 14px;
	font-weight: 300;
}

.share-title {
	font-size: 20px;
	font-weight: 300;
}

.share-title div {
	text-transform: uppercase;
}
.share-link .field { position: relative; }

.link-buffer {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 2px;
}

.share-link input {
	width: 600px;
	border: none;
}

.share-link button { height: 36px; }

.share-cover { width: 600px; }
.share-cover .cover-img {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2px;
	padding: 2px;
	background: #fff;
	color: #336699;
}
.share-cover img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}
.share-cover .butts {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 2px;
}
.share-cover button { width: 100%; height: 30px; }
.share-cover .butts .update, .share-cover .butts .delete { width: 30px; }

.loader {
	width: 32px;
	height: 32px;
	border: 4px solid #ccc;
	border-top: 4px solid #336699;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin: 10px auto;
}

.hidden { display: none; }

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.share-link, .share-cover {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

#dropmenudiv {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 2px;
	min-width: 163px;
	font-size: 12px;
	background: #f6f6f6;    
}

#dropmenudiv a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	width: 100%;
	white-space: nowrap;
	background:  #336699;
	color: #fff;
}

#dropmenudiv a:hover { background-color: #0e3047; }

#sendmail {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feedback, .name-email {
	display: flex;
	gap: 20px;
}

.feedback { flex-direction: column; }

.feedback .field .icon { font-size: 18px; }

.feedback input { padding-left: 35px; }

.searchtable {
	position: relative;
	z-index: 9;
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.searchmsg {
	font-size: 14px;
	font-style:  italic;
	text-align: center;
}

.cookie-banner {
		position: fixed;
		bottom: 10px;
		left: 10px;
		right: 10px;
		background-color: rgba(14, 48, 71, 0.8);
		color: white;
		padding: 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		z-index: 9999;
		border: 1px solid #336699;
		backdrop-filter: blur(5px);
	}
.cookie-banner a { text-decoration: underline; color: white; }
.cookie-banner a:hover { text-decoration: none; }
.cookie-banner button { border: 1px solid #f6f6f6; }

table { width: 100%; border: 1px solid #336699; }
table tr:first-child td { background: #336699; color: #fff; }
table tr:first-child td:not(:last-child) { border-right: 1px solid #f6f6f6; }
table td { border: 1px solid #336699; padding: 4px 10px; }
table th:not(:first-child), table td:not(:first-child) { text-align: center; }

.topnews, .related {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.topnews .wrap { flex-direction: column; }
.topnews .cell { height: auto !important; }

.topnews .text {
	display: flex;
	flex-direction: column;
}
.topnews .story { text-align: left !important; }
.topnews .title {
	text-transform: none !important;
	font-weight: 300 !important;
}