:root {
	--color-primary: #003761;
	--color-primary-lighter: #004a82;
	--color-primary-darker: #002746;
	--color-accent: #19892a;
	--color-accent-darker: #39b54a;
	--color-secondary-1: #e1f0fb;
	--color-secondary-1-lighter: #e4f1fb;
	--color-secondary-1-darker: #cee8f9;
	--color-secondary-2: #ffb700;
	--color-secondary-3: #235;
	--color-secondary-3-lighter: #2f4674;
	--color-secondary-3-darker: #114f82;
	--color-secondary-4: #7ac;
	--color-secondary-5: #f9f9f9;
	--color-typography-primary: #243b56;
	--color-typography-secondary: #000;
	--color-anchor: #337ab7;
	--color-anchor-hover: #23527c;
	--color-success: #0ea54e;
	--color-danger: #fb3e3a;
	--color-danger-lighter: #fb9796;
	--color-warning: #f99f44;
	--color-info: #44b1f9;
	--color-disabled: #e4e4e4;
	--color-nav-background: #fff;
	--color-content-grey-background: #ecf1f1;
	--color-default-input-background: #fff;
	--color-default-input-foreground: #6f6f6f;
	--color-default-input-foreground-lighter: #959595;
	--color-default-input-label: #000;
	--color-default-border: #ebebeb;
	--color-default-border-light: #ecf1f1;
	--global-border-radius: 10px;
	--width-main-wrapper: 1100px;
	--width-main-wrapper-small: 1100px
}

html {
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
	font-size: 62.25%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
img,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
footer,
header {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

img,
video,
object,
iframe {
	max-width: 100%;
}

img {
	object-fit: contain;
	height: auto;
	display: block;
}

video {
	height: auto;
}

blockquote {
	color: var(--color-typography-primary);
	display: flex;
	padding: 10px 20px;
	position: relative;
	border-left: 10px solid var(--color-primary);
	border-radius: 10px;
	background-color: var(--color-content-grey-background);
	margin-bottom: 20px;
}

blockquote:not(:last-child) {
	margin-bottom: 10px;
}

blockquote p {
	margin: 0;
}

blockquote,
q {
	quotes: none;
}

button,
input,
select,
textarea {
	margin: 0;
	font-weight: inherit;
	font-size: 100%;
}

:focus {
	outline: 0;
}

body {
	padding: 0 0 60px;
	font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Arial, sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--color-typography-primary);
}

strong,
b {
	font-weight: bold;
}

h1,
h2,
h3,
h4 {
	font-weight: 700;
	color: var(--color-secondary-3);
	margin: 0 0 20px;
	line-height: 1.1;
	text-transform: uppercase;
}

h1 {
	font-size: 2rem;
	margin-bottom: 2px;
}

h2 {
	font-size: 1.8rem;
	margin: 0 0 20px;
}

p+h2 {
	margin-top: 20px;
}

h3 {
	font-size: 1.6rem;
	margin: 15px 0;
}

h4 {
	font-size: 1.4rem;
	margin: 16px 0 8px
}

/* p {
	margin-bottom: 20px;
} */

.site-main p:not(:last-child):not(.boxedin-wrap) {
	margin-bottom: 10px;
}

a {
	color: var(--color-anchor);
	transition: all 0.2s linear;
	font-weight: 700;
	text-decoration: none;
}

a:hover {
	color: var(--color-anchor-hover);
}

em,
i {
	font-style: italic;
}

small {
	font-size: 100%;
}

figure {
	margin: 10px 0 15px;
}

@media screen and (min-width: 889px) {
	body {
		padding: 70px 0 0;
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.6rem;
	}

	h3 {
		font-size: 2rem;
	}

	blockquote:not(:last-child) {
		padding: 20px;
		margin-bottom: 24px;
	}

	.site-main p:not(:last-child):not(.boxedin-wrap) {
		margin-bottom: 24px;
	}
}

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/*
**********************************************************************
* COMMON
**********************************************************************
*/

/*-[ Helpers ]-----------------------*/
.box {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	margin-top: 15px;
}

.box.shadow {
	box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
}

.box a {
	border: none;
}

.text-center {
	text-align: center;
}

.entry-title {
	font-size: 26px;
	margin: 0 0 10px;
}

.column-layout-block-background.wave-bg {
	background-image: url('/wp-content/themes/glm-theme/brands/kasinolinna/img/wave-1.svg'), url('/wp-content/themes/glm-theme/brands/kasinolinna/img/wave-2.svg');
	background-position: center top -5px, center bottom -5px;
	padding: 30px 0;
}

.column-layout-block-background+h2 {
	margin-top: 20px;
}

.wp-block-image:not(:last-child):not(.boxedin-wrap) {
	margin-bottom: 10px;
}

@media only screen and (min-width: 75em) {
	.column-layout-block-background.wave-bg {
		padding: 100px 0;
	}

	.wp-block-image:not(:last-child):not(.boxedin-wrap) {
		margin-bottom: 24px;
	}
}

/*-[ Breadcrumb & Post info ]-----------------------*/
.top-info {
	color: var(--color-primary);
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
	max-width: 1100px;
	margin: 0 auto;
}

.breadcrumb {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0;
}

.breadcrumb a {
	color: var(--color-anchor);
}

.updated:before {
	content: "";
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/icon-modified-time.svg);
	display: inline-block;
	height: 12px;
	margin: 3px 5px 0 10px;
	width: 12px;
}

.post-info {
	flex: 0 0 auto;
}

.post-info p {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
}

/*-[ Lists ]-----------------------*/
article ul,
article ol {
	list-style-position: inside;
	margin-bottom: 20px;
}

ol[class*=" is-style"] li,
ol[class^=is-style] li,
ul[class*=" is-style"] li,
ul[class^=is-style] li {
	font-weight: 500;
	margin: 10px 0;
	padding-left: 10px;
}

/* Markers */
ul.is-style-bullet-green li::marker {
	color: var(--color-success);
	content: "⏺ ";
}

ul.is-style-green-check-circle li {
	list-style-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDQwOC41NzYgNDA4LjU3NiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDA4LjU3NiA0MDguNTc2IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBkPSJNMjA0LjI4OCAwQzkxLjY0OCAwIDAgOTEuNjQ4IDAgMjA0LjI4OHM5MS42NDggMjA0LjI4OCAyMDQuMjg4IDIwNC4yODggMjA0LjI4OC05MS42NDggMjA0LjI4OC0yMDQuMjg4UzMxNi45MjggMCAyMDQuMjg4IDB6bTExNC4xNzYgMTUwLjUyOC0xMzAuNTYgMTI5LjUzNmMtNy42OCA3LjY4LTE5Ljk2OCA4LjE5Mi0yOC4xNi41MTJMODkuNjI0IDIxNy42Yy04LjE5Mi03LjY4LTguNzA0LTIwLjQ4LTEuNTM2LTI4LjY3MiA3LjY4LTguMTkyIDIwLjQ4LTguNzA0IDI4LjY3Mi0xLjAyNGw1NC43ODQgNTAuMTc2TDI4OS4yOCAxMjEuMzQ0YzguMTkyLTguMTkyIDIwLjk5Mi04LjE5MiAyOS4xODQgMHM4LjE5MiAyMC45OTIgMCAyOS4xODR6IiBmaWxsPSIjMGVhNTRlIi8+PC9zdmc+");
	padding-left: 5px;
}

ul.is-style-red-x-circle li {
	list-style-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0yNTYgMkMxMTUuNyAyIDIgMTE1LjcgMiAyNTZzMTEzLjcgMjU0IDI1NCAyNTQgMjU0LTExMy43IDI1NC0yNTRTMzk2LjMgMiAyNTYgMnpNMzc1LjYgMzM3LjZjOS45IDkuOSAwIDI2IDAgMzUuOS0xMC4xIDEwLjEtMjIuMiAxMy43LTM1LjkgMEwyNTYgMjkxLjlsLTgzLjYgODMuNmMtMTEuNiAxMS42LTI4LjQgNy41LTM1LjkgMC05LjktOS45LTkuOS0yNiAwLTM1LjlsODMuNi04My42LTgzLjYtODMuNmMtOS45LTkuOS05LjktMjYgMC0zNS45czI2LTkuOSAzNS45IDBsODMuNiA4My42IDgzLjYtODMuNmM5LjktOS45IDI2LTkuOSAzNS45IDBzOS45IDI2IDAgMzUuOUwyOTEuOSAyNTZ6IiBmaWxsPSIjRkIzRTNBIi8+PC9zdmc+");
	padding-left: 5px;
}

ol.is-style-number-green li::marker {
	color: var(--color-success);
	font-weight: 700
}

ol.is-style-number-red li::marker {
	color: var(--color-danger);
	font-weight: 700;
}

/*-[ Layout ]-----------------------*/
/* #page {
	display: flex;
	justify-content: center;
	position: relative;
} */

.container {
	max-width: 1100px;
	position: relative;
	margin: auto;
	padding: 0 15px;
}

#primary {
	padding-bottom: 35px;
	position: relative;
	margin: auto;
	width: 100%;
}

.wrapper {
	padding: 15px;
	margin: 0 auto;
}

/*-[ Move to top ]-----------------------*/
#move-to-top {
	color: #fff;
	cursor: pointer;
	height: 40px;
	position: fixed;
	right: 10px;
	transition: all .25s linear 0s;
	width: 40px;
	z-index: 14;
	background: var(--color-primary);
	border-radius: 50%;
	font-size: 2.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
}

#move-to-top i {
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/icon-chevron-up-white.svg);
	content: "";
	height: 14px;
	width: 14px;
}

#move-to-top:not(.filling) {
	opacity: 0;
	visibility: hidden;
}

/* COMMON - DESKTOP */
@media screen and (min-width: 889px) {
	#page {
		justify-content: space-between;
	}

	#move-to-top {
		right: 15px;
		left: auto;
	}
}

/*
**********************************************************************
* HEADER
**********************************************************************
*/
.logo {
	display: none;
}

.mobile-menu-active #nav {
	left: 0;
}

.top-search-button {
	display: none;
}


/* HEADER - DESKTOP */
@media screen and (min-width: 889px) {
	#site-header {
		margin: 0;
		width: 100%;
		max-width: initial;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		background-color: #fff;
		box-shadow: 0 0 10px var(--color-secondary-1);
	}

	#header-top {
		padding: 0 20px;
		display: flex;
		align-items: center;
	}

	.logo {
		display: flex;
		flex: 1 0 auto;
	}

	.logo img {
		display: flex;
		width: 200px;
	}

	.top-search-button img {
		width: 25px;
		height: 25px;
		margin-right: 65px;
	}
}

/*-[ Navigation ]-----------------------*/
#nav {
	position: fixed;
	width: 100%;
	background: #fff;
	bottom: 60px;
	transition: all 0.2s ease;
	height: calc(100% - 60px);
	overflow: auto;
	z-index: 15;
	justify-content: flex-end;
	flex-direction: column;
	display: flex;
	left: 100%;
}

#nav ul {
	list-style: none;
}

.display-mobile-menu #nav {
	display: flex !important;
}

.nav__menu-list {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__menu-list a {
	color: var(--color-secondary-3);
	text-transform: uppercase;
}

/* .current-menu-item {
	border-left: 4px solid var(--color-primary-lighter);
} */

.nav__parent-item {
	position: relative;
	transition: all 0.2s ease;
}

.nav__parent-item a {
	display: flex;
	height: 48px;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-indent: 15px;
	color: var(--color-secondary-3);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.6rem;
	width: 100%;
}

.nav__parent-item a.disabled {
	pointer-events: none;
	cursor: default;
}

.nav__toggle-caret {
	position: absolute;
	right: 0;
	top: 0;
	width: 49px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav__toggle-caret--parent {
	color: var(--color-secondary-3);
	height: 48px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__toggle-caret--child {
	height: 48px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__parent-item.active>.nav__toggle-caret {
	transform: rotate(180deg);
	border-left: none;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__child-item.active>.nav__toggle-caret {
	transform: rotate(180deg);
	border-left: none;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-down {
	display: flex;
}

.sort-down:before {
	content: "";
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--color-secondary-3);
}

.sub-menu {
	max-height: 0;
	background-color: var(--color-secondary-1-lighter);
	transition: max-height 0.15s ease-out;
	overflow: auto;
}

.menu-item.active>.sub-menu {
	max-height: 2400px;
	transition: max-height 0.25s ease-in;
}

.nav__child-item {
	position: relative;
	white-space: nowrap;
}

.nav__child-item a {
	text-indent: 25px;
	font-size: 1.4rem;
}

.nav__child-item .nav__child-item a {
	padding-left: 15px;
}

#mobile-nav {
	display: flex;
	justify-content: space-between;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background-color: #fff;
	transition: left 0.2s ease;
	z-index: 10;
	width: 100%;
	border-top: 1px solid var(--color-primary);
}

/* Navigation - DESKTOP */
@media screen and (min-width: 889px) {
	#nav {
		position: static;
		overflow: visible;
		flex-direction: row;
		margin-right: 15%;
	}

	.nav__menu-list {
		display: flex;
		border: none;
	}

	.current-menu-item {
		border: none;
	}

	.nav__parent-item>a {
		font-size: 1.4rem;
		text-align: center;
	}

	.nav__parent-item a {
		text-indent: 0;
		border-bottom: none;
		line-height: 12px;
		width: 100%;
		padding: 0 16px;
		display: flex;
		align-items: center;
		height: 70px;
		font-size: 12px;
	}

	.nav__parent-item.menu-item-has-children>a:after {
		content: "";
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid var(--color-primary);
		margin-left: 10px;
	}

	.nav__parent-item:hover>.sub-menu {
		display: block;
	}

	.nav__toggle-caret {
		display: none;
	}

	.sub-menu {
		display: none;
		position: absolute;
		top: 70px;
		z-index: 14;
		left: 0;
		max-height: initial;
		overflow: initial;
		background-color: #fff;
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
	}

	.nav__child-item a {
		height: 50px;
	}

	.nav__child-item a:hover {
		background-color: rgba(0, 0, 0, .1);
	}

	.nav__child-item:hover>.sub-menu {
		display: block;
	}

	.nav__child-item.menu-item-has-children>a:after {
		font-family: "icons";
		font-style: normal;
		vertical-align: middle;
		content: "\66";
		color: #fff;
		font-size: 2.6rem;
		font-weight: 100;
		margin-left: 10px;
		transform: rotate(270deg);
	}

	.nav__child-item .sub-menu {
		left: 100%;
		top: 0;
	}

	#mobile-nav {
		display: none;
	}
}

@media screen and (max-width: 888px) {
	#hamburger-button {
		width: 60px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border-right: 1px solid var(--color-primary);
		;
	}

	.button-title {
		color: var(--color-primary);
		font-weight: 700;
		font-size: 1rem;
		text-transform: uppercase;
	}

	.hamburger-box {
		width: 17px;
		height: 13px;
		display: inline-block;
		position: relative;
		margin: 5px 0;
	}

	.hamburger-inner,
	.hamburger-inner:before,
	.hamburger-inner:after {
		width: 16px;
		height: 2px;
		background-color: var(--color-primary);
		border-radius: 2px;
		position: absolute;
		transition-property: transform, -webkit-transform;
		transition-duration: .2s;
		transition-timing-function: ease
	}

	.hamburger-inner:before,
	.hamburger-inner:after {
		content: "";
		display: block
	}

	.hamburger-inner:before {
		top: 5px;
		transition-property: transform, opacity, -webkit-transform;
		transition-timing-function: ease;
		transition-duration: .15s
	}

	.hamburger-inner:after {
		top: 10px
	}

	.mobile-menu-active .hamburger-inner {
		-webkit-transform: translate3d(0, 5px, 0) rotate(45deg);
		transform: translate3d(0, 5px, 0) rotate(45deg)
	}

	.mobile-menu-active .hamburger-inner:before {
		-webkit-transform: rotate(-45deg) translate3d(-50px, -6px, 0);
		transform: rotate(-45deg) translate3d(-50px, -6px, 0)
	}

	.mobile-menu-active .hamburger-inner:after {
		-webkit-transform: translate3d(0, -10px, 0) rotate(-90deg);
		transform: translate3d(0, -10px, 0) rotate(-90deg)
	}
}

/*-[ Searchform (Header & Search page)  ]-----------------*/
#mobile-logo {
	display: flex;
	align-items: center;
}

#mobile-search-button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 60px;
	border-left: 1px solid var(--color-primary);
	color: var(--color-primary);
}

.mobile-search img {
	margin: 5px 0;
}

.close-search {
	display: none
}

.close-search img {
	width: 17px;
	height: 17px;
	margin: 5px 0;
}

#mobile-search-button.is-active .icon-search {
	display: none;
}

#mobile-search-button.is-active .close-search {
	display: block;
}

#header-search {
	position: fixed;
	bottom: 0;
	transition: opacity 0.1s ease;
	width: calc(100% - 60px);
	z-index: 11;
	opacity: 0;
	pointer-events: none;
	left: 0;
	background-color: var(--color-primary);
}

#header-search.is-active {
	opacity: 1;
	pointer-events: auto;
}

.searchform__search-field label {
	position: absolute;
	height: 1px;
	width: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
}

.searchform__search-field {
	position: relative;
}

.searchform__search-button {
	position: absolute;
	width: 44px;
	height: 59px;
	padding: 0;
	cursor: pointer;
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.searchform__close-button {
	display: none;
}

.searchform__search-input {
	font-size: 1.4rem;
	line-height: 59px;
	padding: 0 0 0 44px;
	width: 100%;
	border: none;
}

.search-box {
	background-color: var(--color-secondary-1);
	text-align: center;
	padding: 0 15px;
	margin-bottom: 35px;
}

.search-box__title {
	font-size: 3rem;
	font-weight: 700;
	margin: 0;
	padding: 20px 0 20px;
}

.search-box__form {
	display: flex;
	justify-content: center;
	padding-bottom: 50px;
}

.search-box__textbox {
	background-color: #fff;
	border: none;
	height: 40px;
	padding: 0 10px;
	flex: 1;
}

.search-box__button {
	background-color: var(--color-secondary-3-darker);
	border: none;
	color: #fff;
	cursor: pointer;
	height: 40px;
	transition: background-color .3s ease-in-out;
	width: 40px;
}

.search-box__button:after {
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/icon-search-white.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 24px;
	width: 24px;
}

.search-results__list {
	list-style: none;
	margin-bottom: 40px;
}

.search-results__item {
	background-color: var(--color-content-grey-background);
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 10px;
}

.search-results__item a {
	color: var(--color-typography-primary);
	font-weight: 400;
	font-size: 1.8rem;
}

/* Searchform - DESKTOP */
@media screen and (min-width: 889px) {
	.top-search-button {
		display: flex;
		flex: 1 0 auto;
		margin-right: 10px;
		cursor: pointer;
	}

	.top-search-button img {
		width: 25px;
		height: 25px;
		margin-right: 10px;
	}

	#header-search {
		opacity: 1;
		position: absolute;
		pointer-events: auto;
		width: 280px;
		border: 1px solid rgba(255, 255, 255, 0.2);
		right: 20px;
		top: 10px;
		left: auto;
		bottom: auto;
		z-index: 20;
		background-color: #fff;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 0 3px rgba(0, 0, 0, .6);
		display: none;
	}

	#header-search.is-active {
		display: block;
	}

	.searchform__search-field {
		display: flex;
		flex-direction: row-reverse;
	}

	.searchform__search-button,
	.searchform__close-button {
		width: 42px;
		height: 42px;
		position: static;
		flex: 1 0 auto;
	}

	.searchform__close-button {
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.searchform__close-button img {
		width: 17px;
		height: 17px;
	}

	.searchform__search-input {
		line-height: 42px;
		background-color: #fff;
		transition: all 0.2s ease;
		padding-left: 10px;
	}

	#header-search .searchform__search-input::placeholder {
		opacity: 0.7;
	}

	.search-box__title {
		font-size: 4rem;
		padding-bottom: 30px;
	}

	.search-box__textbox {
		max-width: 50%;
		height: 60px;
		padding: 0 20px;
	}

	.search-box__button {
		height: 60px;
		width: 60px;
	}
}

/*
**********************************************************************
* Author
**********************************************************************
*/
.top-bg {
	background-color: var(--color-primary);
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/nettibg.svg);
	background-position-y: center;
	height: 140px;
}

.author-page .top-info {
	padding: 15px 0 0;
}

.author-page .updated:before {
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/icon-modified-time.svg);
}

/*-[ Author box ]-----------------------*/
.author-box {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.author-page .author-box {
	margin-top: -85px;
	border: none;
}

.author-page .author-box p {
	color: #000;
}

.author-box p {
	margin-bottom: 10px;
}

.author__job {
	font-size: 1.4rem;
}

.author__top {
	margin: 20px 0 10px;
}

.author__name {
	font-size: 2.2rem;
	font-weight: 800;
	margin: 0;
	line-height: 1.2;
}


/* Author - DESKTOP */
@media screen and (min-width: 889px) {
	.top-bg {
		height: 120px;
	}

	.author-box {
		flex-direction: row;
		text-align: left;
	}

	.author__image {
		margin: 0 20px 0 0;
		width: 110px;
		flex: 0 0 auto;
	}

	.author-page .author__image {
		display: block;
	}

	.author__top {
		margin: 0 0 10px;
		display: flex;
	}

	.author__job {
		margin: 0 0 0 10px;
		line-height: 26px;
	}
}

/*
**********************************************************************
* Reviews
**********************************************************************
*/
/* Single Review Banner */
.single-review__header {
	background-color: var(--color-secondary-1);
	padding: 20px 0 35px;
}

.single-review__table {
	background-color: #fff;
	border-radius: 10px;
	width: 100%;
}

.single-review__table tr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.single-review__col--image {
	padding: 15px 10px 15px 25px;
	width: 30%;
}

.single-review__col--bonus {
	padding: 10px 0;
	max-width: 70%;
}

.single-review__bonus-list {
	padding: 0 10px;
	list-style: none;
	margin: 0;
}

.single-review__bonus-item {
	position: relative;
	padding-left: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.single-review__bonus-item:before {
	content: '';
	width: 14px;
	height: 14px;
	position: absolute;
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/icon-ammattilaisten.svg);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.single-review__col--details {
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	width: 100%;
	border-top: 1px solid var(--color-default-border);
	padding-top: 10px;
}

.single-review__col--cta {
	width: 100%;
	padding: 10px;
}

.single-review__cta {
	background-color: var(--color-accent);
	color: #fff;
	display: block;
	font-weight: 700;
	padding: 10px 0;
	text-align: center;
	border-radius: 10px;
	font-size: 12px;
	width: 100%;
}

.single-review__table--bottom {
	margin-bottom: 35px;
}

/* Summary */
.single-review__summary {
	background-color: #fff;
	border-radius: 10px;
	padding: 10px;
	margin: 10px 0;
}

.single-review__summary-item {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
	padding: 5px 0;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 700;
}

.single-review__summary-item:last-of-type {
	border-bottom: none;
}

.single-review__summary-value {
	color: #000;
	text-align: right;
}

/* Reviews - DESKTOP */
@media screen and (min-width: 889px) {
	.single-review__header {
		padding: 35px 0 25px;
	}

	.single-review__table tr {
		justify-content: space-between;
	}

	.single-review__table td {
		display: flex;
		align-items: center;
	}

	.single-review__col--image {
		width: 250px;
	}

	.single-review__table--bottom .single-review__col--image {
		width: 170px;
	}



	.single-review__col--bonus,
	.single-review__col--rating {
		flex: 1;
		justify-content: center;
	}

	.single-review__rating-stars:before,
	.single-review__rating-fill {
		content: "";
		display: block;
		height: 29px;
		background-size: 150px;
	}

	.single-review__rating-stars {
		height: 29px;
		width: 150px;
	}

	.single-review__rating-stars:before {
		background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/star.svg);
	}

	.single-review__rating-fill {
		position: relative;
		top: -29px;
		width: 100%;
	}

	.single-review__rating-fill {
		background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/star-grey.svg);
	}

	.single-review__col--details {
		width: auto;
		border: none;
		padding: 0;
	}

	.single-review__col--cta {
		width: 200px;
		padding-right: 20px;
	}

	/* Summary */
	.single-review__summary {
		display: flex;
		flex-wrap: wrap;
		gap: 3%;
		position: relative;
	}

	.single-review__summary:after {
		content: "";
		background-color: #fff;
		bottom: 10px;
		height: 1px;
		position: absolute;
		width: 100%;
	}

	.single-review__summary-item {
		width: 31.3%;
	}
}

/*
**********************************************************************
* 404 PAGE
**********************************************************************
*/
.error-page__top {
	background-image: linear-gradient(90deg, var(--color-secondary-1) 0, var(--color-secondary-1-darker) 35%, var(--color-secondary-1) 100%);
	display: flex;
	min-height: calc(100vh - 190px);
	color: #fff;
}

.error-page__title {
	font-size: 52px;
	color: #fff;
	font-weight: 800;
}

.error-page__text {
	margin: 40px 0;
}

.error-page__404 {
	color: hsla(0, 0%, 100%, .2);
	font-size: 16rem;
	user-select: none;
}

.error-page .search-box {
	background-color: var(--color-content-grey-background);
	background-image: none;
	margin: 50px 0;
}

.error-page .search-box__title {
	color: var(--color-primary);
}

.error-page .search-box__button {
	background-color: var(--color-primary);
}

/* 404 PAGE - DESKTOP */
@media screen and (min-width: 889px) {
	.error-page__content {
		width: 48%;
		margin-bottom: 0;
	}

	.error-page__404 {
		font-size: 26rem;
		position: absolute;
		top: 0;
		right: -20px;
	}
}

/*
**********************************************************************
* FOOTER
**********************************************************************
*/
#site-footer {
	background-color: var(--color-secondary-4);
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/wave-1.svg);
	background-position: center top -5px;
	background-repeat: no-repeat;
	background-size: 100% 50px;
	padding-top: 40px;
}

#site-footer .container {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	flex-direction: column-reverse;
}

.f-column {
	width: 100%;
	margin: auto;
	text-align: center;
	padding: 30px 0;
}

.f-column p {
	color: #fff;
}

.f-column__title {
	color: var(--color-secondary-3);
	font-size: 2rem;
	font-weight: 600;
	white-space: nowrap;
	text-transform: uppercase;
}

.f-column__title:after {
	background-color: #fff;
	content: " ";
	display: block;
	height: 4px;
	margin: 8px auto;
	width: 39px;
}

.f-column .menu {
	list-style-type: none;
}

.f-column a {
	color: #fff;
	font-weight: 400;
	line-height: 30px;
}

.footer-links {
	width: 100%;
}

.footer-links .widget {
	padding: 30px 0 10px;
	text-align: center;
	width: 100%;
	display: flex;
	justify-content: center;
}

.footer-links img {
	margin: 5px;
}

.footer-bottom {
	border-top: 1px solid #fff;
	padding: 10px 0;
	text-align: center;
}

.footer-bottom p {
	color: #fff;
	margin: auto;
}

.footerimages {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	gap: 20px;
}

/* FOOTER - DESKTOP */
@media screen and (min-width: 889px) {
	#site-footer .container {
		flex-direction: row;
	}

	.footer-row {
		display: flex;
	}

	.footer-row__bottom {
		flex-direction: row-reverse;
	}

	.f-column {
		flex: 1 0 247px;
		margin: 0;
		text-align: left;
	}

	.f-column__title:after {
		margin: 2px 0 8px;
	}

	.footer-links .widget {
		padding: 0;
	}

	.footer-links img {
		margin: 5px 25px;
	}

	.footer-bottom {
		margin-top: 20px;
	}
}

/*
**********************************************************************
* ELEMENTS
**********************************************************************
*/
/*-[ Buttons ]-----------------*/
.cta {
	background-color: var(--color-anchor);
	padding: 10px;
	border: none;
	border-radius: var(--global-border-radius);
	font-size: 1.6rem;
	display: inline-block;
	text-align: center;
	color: #fff;
	margin-right: 10px;
	margin-bottom: 20px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	text-transform: uppercase;
}

.cta:hover {
	background: rgba(45, 45, 53, 0.5);
	background-blend-mode: multiply;
}

.cta.primary {
	background-color: var(--color-anchor);
}

.cta.secondary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

@media screen and (min-width: 889px) {
	.cta {
		padding: 11px 30px;
		font-size: 1.8rem;
		letter-spacing: .15rem;
	}
}


/*-[ Tables ]--------------------*/
table {
	border-collapse: collapse;
}

.fade-left {
	-webkit-mask-image: linear-gradient(to right,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 1) 5%);
}

.fade-right {
	-webkit-mask-image: linear-gradient(to right,
			rgba(0, 0, 0, 1) 95%,
			rgba(0, 0, 0, 0) 100%);
}

.fade-both {
	-webkit-mask-image: linear-gradient(to right,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 1) 5%,
			rgba(0, 0, 0, 1) 95%,
			rgba(0, 0, 0, 0) 100%);
}

/*-[ Cookie notification ]--------------------*/
/* #cookie-notice a.cta.primary.cn-more-info {
	background-color: transparent;
	border-color: transparent;
	color: white;
	margin: 0;
	padding: 0 0 0 5px;
	text-decoration: underline;
}

#cookie-notice a.cta.primary {
	padding: 5px 20px;
	border-radius: 8px;
	margin: 0 10px 0 0;
}

#cn-notice-text {
	display: block;
	margin-bottom: 5px;
}

.cookie-notice-container {
	box-sizing: border-box;
} */

/*-[ Bottom casino offer CTA ]--------------------*/
#bottom-offer {
	background-color: var(--color-secondary-3-darker);
	bottom: 60px;
	display: none;
	position: fixed;
	width: 100%;
	z-index: 10;
	box-shadow: 0 -3px 6px rgba(0, 0, 0, .16);
}

#bottom-offer.visible {
	display: block;
}

#bottom-offer a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.6rem;
	height: 50px;
	text-transform: uppercase;
}

#bottom-offer a:after {
	content: '';
	border: solid #fff;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
	height: 4px;
	width: 4px;
	position: relative;
	left: 10px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

/* Bottom casino offer CTA - DESKTOP */
@media screen and (min-width: 889px) {
	#bottom-offer {
		bottom: 0px;
	}
}

/*
**********************************************************************
* YOAST
**********************************************************************
*/
/*-[ Yoast How-to block ]--------------------*/
.schema-how-to-description {
	font-weight: bold;
}

.schema-how-to-steps {
	display: flex;
	overflow-x: scroll;
	cursor: grab;
	margin-bottom: 30px;
	padding: 0 0 10px;
	border: none;
	background: transparent;
	box-shadow: none;

	/* Hide scrollbar for IE, Edge and Firefox */
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* Scrollbar for Chrome, Safari and Opera */
.schema-how-to-steps::-webkit-scrollbar {
	height: 5px;
}

.schema-how-to-steps::-webkit-scrollbar-track {
	background: #eee;
}

.schema-how-to-steps::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #ccc;
}

.schema-how-to-steps.active {
	cursor: grabbing;
}

.schema-how-to-step {
	min-width: 245px;
	margin-right: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	text-align: center;
}

.schema-how-to-step:before {
	left: 0;
}

.schema-how-to-step-name {
	min-height: 58px;
	display: block;
	color: var(--color-primary);
}

.schema-how-to-step-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.schema-how-to-step-text img {
	flex: 1;
	margin-bottom: 20px;
	pointer-events: none;
	order: -1;
}

.schema-how-to-step-text a {
	display: contents;
}

/*-[ Yoast FAQ ]--------------------*/
.schema-faq-section {
	margin-bottom: 10px;
	background-color: #fff;
	border: 1px solid #e4e1e1;
	border-radius: 10px;
}

.schema-faq-question {
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	line-height: 24px;
	font-weight: 600;
	padding: 10px 20px;
}

.schema-faq-question:after {
	content: "";
	display: inline-block;
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/icon-plus-white.svg);
	background-color: var(--color-accent);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.open .schema-faq-question:after {
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/icon-minus-white.svg);
}

.schema-faq-answer {
	display: none;
}

.open .schema-faq-answer {
	display: block;
}

p.schema-faq-answer {
	margin: 0 10px 10px 20px;
	padding-left: 15px;
	border-left: 1px solid #e8e8e8;
}

p.schema-faq-answer img {
	margin: 10px 0;
}

/* Yoast FAQ - DESKTOP */
@media screen and (min-width: 889px) {
	.schema-faq-question {
		font-size: 1.8rem;
	}

	p.schema-faq-answer {
		margin: 0 20px 20px 20px;
		padding-left: 20px;
	}
}

/*
**********************************************************************
* Gutemberg
**********************************************************************
*/
.wp-block-group {
	background-color: #fff;
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 15px;
}

.wp-block-group .wp-block-heading {
	margin-top: 0;
}

.wp-block-image img {
	border-radius: 10px;
}

.wp-block-image figcaption {
	text-align: center;
	font-size: 1.4rem;
	margin: 10px 0 20px;
}

.wp-block-table {
	margin-bottom: 15px;
	overflow-x: auto;
	width: 100%;
}

.wp-block-table table {
	border-collapse: collapse;
	width: 100%;
}

.wp-block-table thead th {
	background-color: var(--color-secondary-3);
	color: #fff;
	padding: 10px;
	text-align: left;
}

.wp-block-table tbody tr {
	background-color: #fff;
	border: 1px solid #ccc;
}

.wp-block-table tbody td {
	padding: 10px;
}

.has-text-align-left {
	text-align: left;
}

.has-text-align-center {
	text-align: center;
}

.wp-block-columns {
	display: flex;
	flex-wrap: wrap;
}

.wp-block-column {
	flex-grow: 1;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
}

.has-background {
	padding: 20px 30px;
}

.has-white-color,
.has-white-color th,
.has-white-color td {
	color: #fff;
}

.has-black-color,
.has-black-color th,
.has-black-color td {
	color: #000;
}

.aligncenter {
	display: block;
	justify-self: center;
	margin: 0 auto;
	text-align: center;
}

/* Gutemberg - DESKTOP */
@media (min-width: 889px) {

	.wp-block-table thead th,
	.wp-block-table tbody td {
		padding: 15px;
	}

	.wp-block-columns {
		flex-wrap: nowrap;
	}

	.wp-block-column {
		flex-basis: 0;
		flex-grow: 1;
	}

	.wp-block-column:not(:first-child) {
		margin-left: 32px;
	}
}

/*
**********************************************************************
* Icons
**********************************************************************
*/
.icon-search,
.icon-close {
	width: 17px;
	height: 17px;
}

@media (min-width: 889px) {

	.icon-search,
	.icon-close {
		width: 25px;
		height: 25px;
	}
}

/*
**********************************************************************
* Block - Above The Fold
**********************************************************************
*/
#above-fold {
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-primary);
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/nettibg.svg);
	background-repeat: repeat;
	background-position-y: center;
	background-size: auto;
	margin-bottom: 20px;
}

.author-page .top-info {
	padding: 15px 0 0;
}

#above-fold .top-info span,
#above-fold .top-info a,
#above-fold .top-info p {
	color: #fff;
}

#above-fold .updated:before {
	background-image: url(/wp-content/themes/glm-theme/brands/kasinolinna/img/icon-modified-time-white.svg);
}

#above-fold__wrap {
	padding: 20px 15px;
	color: #fff;
	text-align: center;
	max-width: 1130px;
	margin: 0 auto;
}

#above-fold h1 {
	color: #fff;
	margin: 0 0 10px;
}

.above-fold__description {
	max-height: 200px;
	overflow: hidden;
	margin-bottom: 20px;
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.above-fold__description.open {
	max-height: unset;
	-webkit-mask-image: none;
	margin-bottom: 0;
}

.above-fold__description p {
	margin-bottom: 10px;
}

.above-fold__description a,
.above-fold__description a:hover {
	color: var(--color-accent);
}

.reveal-more {
	position: absolute;
	z-index: 1;
	width: 100%;
	bottom: 20px;
	left: 0;
}

#reveal-more__button {
	color: #fff;
	text-decoration: underline;
	font-weight: normal;
	cursor: pointer;
}

.above-fold__description:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	pointer-events: none;
	width: 100%;
	height: 100px;
}

.above-fold__description.open:after {
	content: none;
}

/* Above The Fold - DESKTOP */
@media (min-width: 889px) {
	#above-fold__wrap {
		padding-bottom: 25px;
	}

	.above-fold__description {
		max-height: 100px;
	}
}

/*
**********************************************************************
* Block: Slider Table
**********************************************************************
*/
.slider-table__title {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
}

.slider-table table {
	overflow-x: scroll;
	cursor: grab;
	margin: 30px 0 40px;
	padding: 0 0 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
	display: block;
	user-select: none;
}

.slider-table.active {
	cursor: grabbing;
}

.slider-table tr {
	border: none;
}

.slider-table th,
.slider-table td {
	min-width: 245px;
	padding: 0 10px 0;
	font-size: 1.6rem;
	vertical-align: top;
	line-height: inherit;
	text-align: center;
}

.slider-table th {
	color: var(--color-primary);
	height: 58px;
}

.slider-table td:first-of-type {
	font-weight: 400;
}

.slider-table td img {
	max-width: 245px;
	max-height: unset;
	margin: 0 auto 20px;
	pointer-events: none;
}

/*
**********************************************************************
* Block: Pros and Cons
**********************************************************************
*/
.pros-cons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.pros-cons.pros-cons--single-column {
	flex-direction: column;
}

.pros-cons__column {
	flex: 1 1 100%;
	margin-bottom: 20px;
}

.pros-cons__title {
	margin: 0 0 10px;
	font-size: 2rem;
	font-weight: 600;
}

.pros-cons__list {
	margin: 0;
}

.pros-cons__item {
	margin: 5px 0;
	padding: 10px 12px;
	border-radius: 6px;
	background-color: #f5f5f5;
}

.pros-cons__item--pro {
	background-color: rgba(107, 204, 52, 0.3);
	color: #000;
}


.pros-cons__item--con {
	background-color: rgba(195, 196, 199, 0.3);
	color: #000;
}

.pros-cons__item--pro::marker {
	content: "＋ ";
	font-weight: 700;
}

.pros-cons__item--con::marker {
	content: "− ";
	font-weight: 700;
}

.pros-cons__item:last-child {
	margin-bottom: 0;
}

@media (min-width: 889px) {
	.pros-cons:not(.pros-cons--single-column) .pros-cons__column {
		flex: 1 1 calc(50% - 8px);
	}
}

/*
***************************************************************
* Block: Table of Contents
***************************************************************
*/
.toc {
	margin: 20px 0;
	border: 1px solid #003761;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.toc__title {
	display: flex;
	justify-content: center;
	cursor: pointer;
	padding: 10px;
	font-weight: 700;
	color: #003761;
	transition: opacity 0.2s ease-in-out;
}

.toc__title::after {
	content: "▼";
	margin-left: 10px;
	transition: transform 0.3s ease-in-out;
}

.toc.expanded .toc__title::after {
	transform: rotate(180deg);
}

.toc__nav {
	padding: 0 20px 10px;
	display: none;
}

.toc.expanded .toc__nav {
	display: block;
}

.toc__list {
	list-style: none;
	margin: 0;
}

.toc__item--h3 {
	padding-left: 20px;
	border-left: 1px solid var(--color-content-grey-background);
}

.toc__item a {
	display: flex;
	justify-content: space-between;
	font-weight: 600;
	font-size: 1.4rem;
	padding: 10px 0;
}

.toc__item a::after {
	content: "›";
	font-size: 2.5rem;
	line-height: 1;
	margin: 0 -5px 0 10px;
}

/*
***************************************************************
* Block: Peek Box
***************************************************************
*/
.peek-box-wrap {
	background-color: var(--color-primary);
	margin-bottom: 20px;
	background-image: url('img/peek-box-bg.png');
	background-repeat: no-repeat;
	background-position: top 30px right 30px;
}

.peek-boxes {
	background-color: rgba(0, 46, 108, 0.9);
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	border-radius: 10px;
	border: 3px solid var(--color-accent);
	overflow: hidden;
	padding: 20px 20px 14px;
	position: relative;

}

.peek-box {
	padding: 15px;
	text-align: center;
	border-bottom: 6px solid var(--color-accent);
}

.peek-box:last-of-type {
	border-bottom: none
}

.peek-box__title,
.peek-box__text,
.peek-box__link {
	word-break: break-word;
}

.peek-box__title,
.peek-box__text p {
	color: #fff;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-transform: uppercase;
	font-weight: 900;
}

.peek-box__title {
	font-size: 3.2rem;
	line-height: 1.1;
	margin: 10px 0 20px;
}

.peek-box__text p {
	font-size: 2.2rem;
	line-height: 1.3;
	color: #fff;
	margin-bottom: 20px;
}

.peek-box__link {
	margin-top: auto;
}

.peek-box__link a {
	font-size: 1.8rem;
	text-transform: uppercase;
	background-color: var(--color-accent);
	padding: 0 20px;
	display: inline-block;
	text-align: center;
	color: #000;
	font-weight: 900;
	border-radius: 5px;
	margin-bottom: 20px;
}


@media (min-width: 889px) {
	.peek-boxes {
		grid-template-columns: repeat(2, 1fr);
	}

	.peek-boxes:after {
		content: "";
		background-color: var(--color-primary);
		bottom: 14px;
		height: 6px;
		position: absolute;
		width: 100%;
	}

	.peek-box {
		display: flex;
		flex-direction: column;
	}

	.peek-box:nth-child(odd) {
		border-right: 6px solid var(--color-accent);
	}
}

/*
**********************************************************************
* Delete after new blocks are in use
**********************************************************************
*/

body .generic-top-fold-block {
	padding-top: 0;
}

.top-breadcrumbs {
	background-color: var(--color-content-grey-background);
	border-bottom: 1px solid var(--color-default-border);
	color: var(--color-primary);
	font-size: 1.2rem;
	/* margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%); */
}

.top-breadcrumbs.top-fold {
	background: 0 0;
	border-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 0 15px;
	position: absolute;
	top: 10px;
	width: 100%;
}

.top-breadcrumbs .wrapper {
	align-items: flex-start;
	display: flex;
	padding-bottom: 5px;
	padding-top: 5px;
}

.breadcrumbs-wrap {
	text-align: left;
	padding-left: 0;
}

.top-breadcrumbs p {
	margin: 0;
}

.top-breadcrumbs span {
	text-shadow: none;
}

.top-breadcrumbs a {
	font-weight: 600;
	text-shadow: none;
}

.modified-time {
	align-items: flex-start;
	display: flex;
	font-weight: 700;
	padding-left: 10px;
}

.modified-time:before {
	background-image: url(img/icon-modified-time.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 12px;
	margin: 3px 5px 0 -2px;
	width: 12px;
}

.top-fold .modified-time:before {
	background-image: url(img/icon-modified-time.svg);
}

@media (min-width: 889px) {
	.top-breadcrumbs {
		font-size: 1.6rem;
	}
}