* {
	box-sizing: border-box;
}

body {
	background: #eeeeee;
	color: #212121;
	font-size: 16px;
	margin: 0;
	font-family: arial, helvetica, sans-serif;
	box-shadow: none;
	line-height: 1.5;
}

body.theme-darkblue {
	background: #01074b;
	color: #fefefe;
}

nav {
	margin: 0 auto 16px;
	padding: 16px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
}

body.theme-darkblue>nav {
	display: none;
}

nav .nav-logo a {
	color: #212121;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	font-weight: bold;
}

nav .nav-links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px 16px;
	flex-shrink: 1;
}

nav .nav-links a {
	color: #212121;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
}

nav .nav-links a:hover {
	text-decoration: underline;
}

nav .nav-search {
	width: 300px;
	flex-shrink: 0;
}

@media(max-width: 576px) {
	nav .nav-search {
		width: 100%;
	}
}

nav .nav-search .searchbar {
	position: relative;
}

nav .nav-search .searchbar input {
	border: 0;
	background: #ffffff;
	padding: 8px 42px 8px 10px;
	font-size: 12px;
	border-right-width: 0;
	width: 100%;
	height: 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

nav .nav-search .searchbar button {
	top: 0;
	right: 0;
	width: 32px;
	height: 32px;
	position: absolute;
	border: 0;
	background: #ffffff;
	font-size: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid #efefef;
}

nav .nav-search .searchbar button:hover {
	background: rgba(0, 0, 0, 0.15);
}

.page {
	max-width: 660px;
	margin: 0 auto;
}

.widgets {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-flow: row dense;
	max-width: 1200px;
	margin: 0 auto 16px;
}

@media (max-width: 992px) {
	.widgets {
		grid-template-columns: repeat(6, 1fr);
	}
}

.widgets>div {
	padding: 16px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.widgets>div>a {
	display: block;
	text-decoration: none;
	color: #212121;
}

.widgets>div .widget-image {
	width: 200px;
	height: 200px;
	margin-bottom: 8px;
}

.widgets>div .widget-image>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.widgets>div .widget-title {
	font-weight: bold;
	font-size: 24px;
}

.widgets>div .widget-snippet {
	font-size: 14px;
}

.widgets>.widget-8x3 {
	grid-column-end: span 8;
	grid-row-end: span 3;
}

.widgets>.widget-4x1 {
	grid-column-end: span 4;
}

.widgets>.widget-6x1 {
	grid-column-end: span 6;
}

.widgets>.widget-6x1 a {
	display: grid;
	gap: 16px;
	grid-template-columns: 120px auto;
}

.widgets>.widget-6x1 .widget-image {
	width: 120px;
	height: 100%;
	margin-bottom: 0;
}

.widgets>.widget-6x1 .widget-image>img {
	object-fit: cover;
	aspect-ratio: 3 / 2;
}

.widgets>.widget-6x1 .widget-title {
	font-size: 20px;
}

.widgets>.widget-6x1 .widget-snippet {
	display: none;
}

.widgets>.widget-6x3 {
	grid-column-end: span 6;
	grid-row-end: span 3;
}

.widgets>.widget-6x3 .widget-image {
	width: 100%;
	height: 350px;
}

.widgets>.widget-6x3 .widget-image>img {
	height: 100%;
	overflow: hidden;
}

.widgets>.widget-6x3 {
	grid-column-end: span 6;
	grid-row-end: span 3;
}

.widgets>.widget-6x4 {
	grid-column-end: span 6;
	grid-row-end: span 3;
}

.widgets>.widget-6x4 .widget-image {
	width: 100%;
	height: 350px;
}

.widgets>.widget-6x4 .widget-image>img {
	height: 100%;
	overflow: hidden;
}

.widgets>.widget-6x4 {
	grid-column-end: span 6;
	grid-row-end: span 4;
}

.widgets>.widget-3x1 {
	grid-column-end: span 3;
}

.widgets>.widget-3x1 .widget-image {
	width: 100%;
	height: 110px;
}

.widgets>.widget-3x1 .widget-title {
	font-size: 16px;
}

.widgets>.widget-3x1 .widget-snippet {
	display: none;
}

.container {
	max-width: 100%;
	margin: 1px 0;
	padding: 16px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

body.theme-darkblue .container {
	background: #01074b;
	box-shadow: unset;
}

.article-image img {
	display: block;
	margin-bottom: 8px;
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
}

body.theme-darkblue .article-image {
	display: none;
}

.article {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.article h2 {
	margin-top: 0;
}

.article h2 a {
	text-decoration: none;
	color: #212121;
}

.article h2 a:hover {
	color: #0025ff;
}

.article h2 a:focus {
	color: #0025ff;
	text-decoration: underline;
}

.toolbar {
	max-width: 100%;
	margin: 1px 0;
	padding: 0;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#customSearchBarButton {
	display: block;
	background: none;
	border: none;
	cursor: pointer;
}

#customSearchBarButton svg {
	width: 17px;
	height: 17px;
}

.header-image {
	height: 100px;
	width: 100%;
	object-fit: cover;
	display: block;
	margin-bottom: 16px;
}

body.theme-darkblue .header-image {
	display: none;
}

.published-on,
.search-icon {
	font-size: 12px;
	margin-top: 10px;
}

h1 {
	font-size: 1.4rem;
	margin-top: 0;
}

h2 {
	font-size: 1.1rem;
}

footer {
	text-align: center;
	border-top: 0.3rem solid #eeeeee;
	margin-top: 50px;
	padding-top: 25px;
}

.footer {
	text-align: center;
}

footer a,
.footer a {
	color: #212121;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
}

body.theme-darkblue footer a,
body.theme-darkblue .footer a {
	color: #fefefe;
}

.webresults {
	margin-top: 16px;
	color: #515151;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.webresults a {
	color: #515151;
	font-size: 18px;
	text-decoration: none;
}

.ws-domain {
	font-size: 14px;
}

.offers {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.offers>.offer {
	display: flex;
	flex-direction: column;
	gap: 6px;
	border: 2px solid #020c7d;
	padding: 16px;
}

.offers>.offer>.offer-title {
	font-weight: bold;
	line-height: 1;
}

.offers>.offer>.offer-snippet {
	color: #9e9e9e;
	font-size: 14px;
}

.offers>.offer>.offer-link {
	text-decoration: none;
	color: #fff;
	display: block;
	text-align: center;
	padding: 4px 8px;
	background-color: #020c7d;
	border: 0;
}