/* @import url("https://use.typekit.net/jig1pns.css"); */


/*******************************************************************************************************************************/

:root {
	--black: #333333;
	--black-dark: #000000;
	--black-light: #666666;
	--grey: #E2E2E4;
	--grey-light: #F5F5F5;
	--grey-hover: #B1B2B7;
	--grey-text: #444548;
	--white-hover: #E2E2E4;
	--opacity-hover: rgba(0,0,0,.1);
	--color-1: #2DAC44;
	--color-2: #FB6822;
	--color-disabled: #CCC;
	--opacity-disabled: .5;
}

/*******************************************************************************************************************************/


/***/
div {
	display: block;
}

/* HTML */
html:not(.fixed):not(.fullscreen) {
	overflow: auto;
}

/* BODY */
body {
	font-family: open-sans, sans-serif;
	font-weight: 300;
	color: var(--black);
	background-color: #fff;
}
html.mobile,
html.mobile body,
html[os="android"].fullscreen #container {
	background-color: var(--grey-light) !important;
}


/* CONTAINER */
#container {
	width: 100%;
	height: auto;
	font-size: 20px !important;
}
html.no-mobile #container {
	height: 100vh;
	display: flex;
	justify-content: start;
}
html.fixed #container,
html.fullscreen #container {	
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: auto !important;
	height: auto !important;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	overflow-y: auto;
}


/* WRAPPER */
#wrapper {
	width: 100%;
}
html.no-mobile #wrapper {
	flex: 1 0 auto;
	height: 100%;
	display: flex;
	flex-direction: column;
}


/* HEADER */
#header {
	background-color: #fff;
	color: var(--black);
	z-index: 100;
}
html.no-mobile #header {
	flex: 0 0 auto;
	box-shadow: 0 0 10px rgba(0,0,0,.25);
	/* box-shadow: 0 0 10px #6d6e7359; */
}

/***/
#header-wrapper {
	height: 50px;
	display: flex;
	justify-content: space-between;
}

/***/
#header-breadcrumb {
	flex: 1 1 1em;
	width: 100%;
	max-width: 100%;
	padding: 0 15px;
	line-height: 50px;
	font-size: .8em;
	font-weight: 600;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#header-breadcrumb div {
	display: inline;
}
#header-breadcrumb .breadcrumb-note::after {
	content: ' // ';
}
#header-breadcrumb .breadcrumb-content .breadcrumb-note::after {
	content: ' > ';
	display: inline-block;
	transform: scaleX(.6);
	margin-left: 4px;
	margin-right: 4px;
}
#header-breadcrumb > div:not(.breadcrumb-content) {
	color: var(--color-2);
}
#header-breadcrumb .breadcrumb-content {
	margin-left: 25px;
}
#header-breadcrumb .breadcrumb-content::before {
	content: '';
	position: absolute;
	top: -6px;
	left: -13px;
	bottom: -5px;
	border-left: 1px solid var(--grey);
}
#header-breadcrumb .breadcrumb-section .lucide,
#header-breadcrumb .breadcrumb-content .lucide {
	display: inline-block;
	width: 1em;
}
#header-breadcrumb .breadcrumb-section .lucide svg,
#header-breadcrumb .breadcrumb-content .lucide svg {
	width: 1.1em;
	height: 1.1em;
}

/***/
.header-button {
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	cursor: pointer;
	color: var(--color-2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-button > svg {
	width: 24px;
	height: 24px;
}
.header-button.disabled {
	color: var(--color-disabled);
	pointer-events: none;
}
.header-button.selected {
	background-color: var(--black-light);
}
html.multi-books .header-button.selected {
	background-color: var(--black);
}
html.no-touch .header-button:not(.disabled):not(.selected):hover {
	background-color: var(--opacity-hover);
}

html:not(.fullscreen-toggle) #header-buttons-fullscreen {
	display: none;
}


/***/
#header-navigation {
	flex: 0 0 auto;
	display: flex;
}

/***/
#header-buttons {
	flex: 0 0 auto;
	display: flex;
	margin-left: 9px;
}
#header-buttons::before {
	content: '';
	position: absolute;
	left: -5px;
	top: 7px;
	bottom: 7px;
	border-left: 1px solid var(--grey);
}



html.mobile #header {
	background-color: transparent;
}
html.mobile #header-wrapper {
	flex-wrap: wrap;
	height: auto;
}

html.mobile #header-breadcrumb {
	flex: 1 0 100%;
	order: 3;
	width: 100%;
	text-align: left;
	background-color: #fff;
	padding: 12px 15px;
	line-height: 26px;
	white-space: normal;
}


#header-content-links-toggle {
	position: absolute;
	width: 50px;
	height: 50px;
	left: 0;
	bottom: 0;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	/* color: var(--black) !important; */
	z-index: 1;
}
html.no-mobile #header-content-links-toggle,
html.content-links-no #header-content-links-toggle,
html:not(.content-links-hidden) #header-content-links-toggle {
	display: none !important;
}
html.no-touch #header-content-links-toggle:hover {
	background-color: var(--opacity-hover);
}
#header-content-links-toggle > svg {
	width: 24px;
	height: 24px;
}


html.mobile #header-breadcrumb .breadcrumb-content {
	display: block;
	margin-left: unset;
	margin-top: 10px;
	margin-left: 40px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	direction: rtl;
}
html.mobile #header-breadcrumb .breadcrumb-content::before {
	display: none;
}
html.mobile:not(.content-links-hidden):not(.content-links-no) #header-breadcrumb .breadcrumb-content {
	visibility: hidden;
}
html #header-breadcrumb .breadcrumb-content .breadcrumb-note::after {
	direction: ltr;
}

html.mobile #header-navigation {
	order: 1;
}

html.mobile #header-buttons {
	order: 2;
	margin: 0;
}
html.mobile #header-buttons::before {
	display: none;
}




/* CONTENTS */
/*#contents {
	
}*/
html.no-mobile #contents {
	flex: 0 1 100%;
	height: 100%;
	display: flex;
	justify-content: start;
	overflow: hidden;
}
html.mobile #contents {
	padding: 10px 0 50px;
}
html.mobile.landscape #contents {
	padding-bottom: 0;
}
html.no-mobile.leveys-1280:not(.content-links-no) #contents {
	padding-left: 50px; /*Asetetaan js:llä*/
}
html:not(.leveys-1280) #contents,
html.content-links-no #contents,
html.mobile #contents {
	padding-left: 0 !important;
}



/* CONTENT *****************************************************************************************************/
#content {	
	width: 100%;
	height: 100%;
	margin: 0 auto;
	z-index: 1;
}
html.no-mobile #content {
	flex: 0 1 auto;
	order: 1;
}
html.mobile #content {
	height: 100vh; /* korkeus säädetään lopulta index-layouts.css:ssä, kun android tai windows-phone */
}
html.mobile.portrait #content {
	height: calc(100vh - 50px); /* korkeus säädetään lopulta index-layouts.css:ssä, kun android tai windows-phone */
}

/***/
.content-iframe-container {
	width: 100%;
	height: 100%;
}
.content-iframe-container:not(.active) {
	display: none;
}
.content-iframe-container iframe,
.content-iframe-container embed {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	border: none;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.content-iframe-container iframe:not(:first-child) {
	background-color: #fff;
}
html[os="ios"].mobile .content-iframe-container iframe.iframe-hidden {
	display: none;
}

.close-extra-content {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 50px;
	padding: 0 15px 0 30px;
	color: #fff;
	cursor: pointer;
	background-color: #666;
}
html.no-touch .close-extra-content:hover {
	text-decoration: underline;
}
.close-extra-content > div {
	font-size: .8em;
}
.close-extra-content::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 30px;
	background-image: url(../images/nappi/vasen.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


/* IMAGE **************************************************************************************************************************/
#image {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	cursor: zoom-out;
	z-index: 100000;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,.75);
}
#image-img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#image iframe {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	border: none;
	overflow: hidden;
	width: 100%;
	height: 100%;
	pointer-events: none;
}


/* CONFIRM **************************************************************************************************************************/
.confirm-container {
	position: fixed;
	z-index: 100001;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.5);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}
.confirm {
	display: block;
	border-radius: 10px;
	/* border: 1px solid var(--grey); */
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,.25);
	font-size: .8em;
	overflow: hidden;
	min-width: 300px;
	max-width: 100%;
}

.confirm-header {
	display: flex;
	justify-content: flex-end;
	min-height: 50px;
	border-bottom: 1px solid var(--grey);
}
.confirm-header-heading {
	flex: 1 1 100%;
	display: flex;
	align-items: center;
	font-weight: bold;
	padding: 0 15px;
}
.confirm-header-close {
	flex: 0 0 auto;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
html.no-touch .confirm-header-close:hover {
	background-color: var(--white-hover);
}
.confirm-header-close > svg {
	width: 24px;
	height: 24px;
}
.confirm-content {
	padding: 15px;
}

.confirm-button {
	cursor: pointer;
	padding: 8px 10px;
	border: 1px solid var(--grey);
	background-color: #fff;
	margin-top: 10px;
}
html.no-touch .confirm-button:hover {
	border-color: var(--black);
}

/* MENU **************************************************************************************************************************/
.menu-link {
	display: flex;
	gap: 10px;
	padding: 5px 0;
}
.menu-link[data-index] {
	cursor: pointer;
}
.menu-link:first-child {
	margin-top: -5px;
}
.menu-link:last-child {
	margin-bottom: -5px;
}
.menu-link.disabled {
	opacity: var(--opacity-disabled);
	pointer-events: none;
}
html.no-touch .menu-link[data-index]:hover {
	text-decoration: underline;
}


/* CONTENT-LINKS ******************************************************************************************************************/
#content-links {
	background-color: #fff;
}
html.content-links-no #content-links {
	display: none !important;
}
html.no-mobile #content-links {
	flex: 0 0 auto;
	order: 0;
	width: 351px;
	max-width: 100%;
	height: 100%;
	border-right: 1px solid var(--grey);
	display: flex;
	flex-direction: column;
	z-index: 3;
}
html.no-mobile.leveys-1280 #content-links {
	position: absolute;
	top: 0;
	left: 0;
}
html.no-mobile:not(.content-links-hidden).leveys-1280 #content-links {
	box-shadow: 0 0 20px rgba(0,0,0,.25);
}
html.mobile #content-links {
	min-height: calc(100vh - 50px);
	padding-bottom: 20px;
	box-shadow: 0 0 20px rgba(0,0,0,.25);
	z-index: 101;
}
/*html.mobile #content-links::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 8px;
	pointer-events: none;
	
	background-image: url(images/content-links-shadow-up.png);
	background-size: 125% 100%;
	background-repeat: no-repeat;
	background-position: center;
}*/


/*** CONTENT-LINKS-BUTTONS ***/
#content-links-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 50px;
	border-bottom: 1px solid var(--grey);
}
html.no-mobile #content-links-buttons {
	flex: 0 1 auto;
}
html.mobile #content-links-toggle {
	/* display: none; */
	transform: translateY(-50px);
}

.content-links-button {
	flex: 0 0 auto;
	min-width: 50px;
	height: 50px;
	cursor: pointer;
}
html.no-touch .content-links-button:hover {
	background-color: var(--opacity-hover);
}
html.mobile .content-links-button {
	background-color: #FFFFFF;
}
html.mobile.no-touch .content-links-button:hover {
	background-color: var(--white-hover);
}

.content-links-textbutton {
	flex: 0 0 auto;
	cursor: pointer;
	color: var(--grey-text);
	background-color: var(--grey);
	border-radius: 8px;
	margin-right: 5px;
	padding: 5px 7px;

	display: flex;
	align-items: center;
	justify-content: center;
}
.content-links-textbutton.disabled {
	opacity: var(--opacity-disabled);
	pointer-events: none;
}
.content-links-textbutton > div {
	font-size: .7em;
}
html.no-touch .content-links-textbutton:hover {
	background-color: var(--grey-hover);
}


#content-links-buttons-header {
	font-size: .8em;
	font-weight: 600;
	margin: 0 15px;
}
#content-links-buttons-fill {
	flex: 1 1 auto;
}
#content-links-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
}
#content-links-toggle > svg {
	width: 24px;
	height: 24px;
}
html:not(.content-links-hidden) #content-links-toggle > svg:first-child,
html.content-links-hidden #content-links-toggle > svg:last-child {
	display: none;
}


/***/
#content-links-wrapper {
	-webkit-overflow-scrolling: touch;
	background-color: inherit;
	overflow: hidden;
}
html.no-mobile #content-links-wrapper {
	flex: 0 1 100%;
	width: 350px;
}
html.no-mobile #content-links.scroll #content-links-wrapper {
	overflow-y: scroll;
}
html.no-mobile #content-links.scroll.scrolled #content-links-buttons {
	border-bottom-color: transparent;
}
html.no-mobile #content-links.scroll.scrolled #content-links-buttons::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 8px;
	pointer-events: none;
	z-index: 1;
	background-image: url(images/content-links-shadow-down.png);
	background-size: 125% 100%;
	background-repeat: no-repeat;
	background-position: center;
}


/* kuvake */
.content-links-element-icon {
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.content-link-container .content-links-element .content-links-element-icon {
	visibility: hidden;
}
.content-links-element-icon > .content-links-element-icon-color {
	border-radius: 50%;
	width: 75%;
	height: 75%;
	color: var(--black);
	background-color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 70% auto;
}
.content-links-element-icon > .content-links-element-icon-color > svg {
	width: 24px;
	height: 24px;
}
.content-links-element-icon:empty {
	background-image: url(images/_ikonit.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}


/* .content-link-container auki/kiinni + toggle */
.content-link-container.open {
	color: inherit !important;
	background-color: inherit !important;
}
.content-link-container::before {
	content: '+';
	position: absolute;
	width: 25px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	z-index: 1;
	pointer-events: none;
}
.content-link-container.open::before {
	content: '–';
	transform: translateY(-2px);
}
.content-link-container .content-link-container::before {
	left: 40px;
}
.content-link-container .content-link-container .content-link-container::before {
	left: 60px;
}
.content-link-container .content-link-container .content-link-container .content-link-container::before {
	left: 80px;
}
.content-link-container .content-link-container .content-link-container .content-link-container .content-link-container::before {
	left: 100px;
}
.content-link-container:not(.open) > .content-links-elements {	
	display: none;
}
html:not(.content-links-hidden) .content-link-container.open::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	/* border-top: 1px solid var(--grey); */
	height: 8px;
	background-image: url(images/content-links-shadow-up.png);
	background-size: 125% 100%;
	background-repeat: no-repeat;
	background-position: center;
}
html:not(.content-links-hidden) #content-links-wrapper > .content-link-container.open:last-child::after {
	display: none;
}
.dummy{
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#40000000',GradientType=0 ); /* IE6-9 */
}



/***/
.content-links-elements {
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: inherit;
}
html:not(.content-links-hidden) .content-links-elements,
.content-link-container:not(.open) .content-links-elements {
	top: auto !important;
	height: auto !important;
}
.content-links-elements > .content-links-element-header {
	font-weight: 600;
	display: none;
	cursor: default;
}


/***/
.content-links-element {
	opacity: 1;
	transition: opacity .25s linear;
	min-width: 50px;
	min-height: 50px;
	background-color: inherit;
}
.content-links-element.disabled > .content-links-element-wrapper > .content-links-element-wrapper-content {
	cursor: default;
	pointer-events: none;
}
.content-links-element.selected {
	color: #fff;
	background-color: var(--color-1);
}

.content-links-element-wrapper {
	display: block;
	background-color: inherit;
}
.content-links-element-wrapper > * {
	background-color: inherit;
}

.content-links-element-wrapper-content {
	display: flex;
	justify-content: flex-start;
	cursor: pointer;
	padding-left: 20px;
	background-color: inherit;
}
.content-links-element-wrapper-content > * {
	background-color: inherit;
}
.content-link-container .content-link-container .content-links-elements .content-links-element-wrapper-content {
	padding-left: 40px;
}
.content-link-container .content-link-container .content-link-container .content-links-elements .content-links-element-wrapper-content {
	padding-left: 60px;
}
.content-link-container .content-link-container .content-link-container .content-link-container .content-links-elements .content-links-element-wrapper-content {
	padding-left: 80px;
}
.content-link-container .content-link-container .content-link-container .content-link-container .content-links-elements .content-links-elements .content-links-element-wrapper-content {
	padding-left: 100px;
}
.content-links-element-header {
	flex: 1 1 auto;
	line-height: 20px;
	padding: 15px 30px 15px 0;
}
.content-links-element-header > div {
	font-size: .8em;
}
.content-links-element.disabled .content-links-element-icon,
.content-links-element.disabled .content-links-element-header > div {
	opacity: var(--opacity-disabled);
}
html.mobile .content-links-element-header br {
	display: none;
}

html.no-touch:not(.content-links-hidden) .content-link-container > .content-links-element-wrapper > .content-links-element-wrapper-content:hover,
html.no-touch:not(.content-links-hidden) .content-link:not(.selected) > .content-links-element-wrapper > .content-links-element-wrapper-content:hover,
html.no-touch.no-mobile.content-links-hidden .content-link-container > .content-links-element-wrapper > .content-links-element-wrapper-content > .content-links-element-header:hover,
html.no-touch.no-mobile.content-links-hidden .content-link:not(.selected) > .content-links-element-wrapper > .content-links-element-wrapper-content > .content-links-element-header:hover{
	text-decoration: underline;
}


/* header */
.content-header {
	pointer-events: none;
	font-weight: 600;
	border-bottom: 1px solid var(--grey);
}
.content-header .content-links-element-wrapper-content {
	cursor: default;
}
#content-links-wrapper > .content-header {
	/* padding-left: 10px; */
}
#content-links-wrapper > .content-header .content-links-element-wrapper-content {
	padding-left: 15px;
}
#content-links-wrapper > .content-header .content-links-element-icon {
	display: none;
}



/* popup / save */
.content-links-element[data-type] span[data-type] > svg {
	width: 16px;
	height: 16px;
	transform: translateY(2px);
}


/* CONTENT-LINKS-HIDDEN *******************************************************************************************************/
html.no-mobile.content-links-hidden #content-links {
	z-index: 2;
	width: auto;
}
html.no-mobile.content-links-hidden #content-links-buttons > *:not(#content-links-toggle) {
	display: none;
}
html.no-mobile.content-links-hidden #content-links-wrapper {
	width: auto;
}
html.no-mobile.content-links-hidden #content-links-wrapper > .content-links-element {
	width: 50px;
}
html.no-mobile.content-links-hidden .content-links-element-wrapper-content {
	padding-left: 0;
}
html.no-mobile.content-links-hidden .content-links-element .content-links-element .content-links-element .content-links-element-wrapper-content {
	padding-left: 20px;
}
html.no-mobile.content-links-hidden #content-links-wrapper > .content-header {
	min-height: unset;
}
html.no-mobile.content-links-hidden #content-links-wrapper > .content-header:first-child {
	display: none;
}
html.no-mobile.content-links-hidden #content-links-wrapper > .content-header .content-links-element-wrapper {
	display: none;
}


html.mobile.content-links-hidden #content-links {
	display: none;
}
/* html.mobile:not(.content-links-hidden):not(.content-links-no) #header-breadcrumb .breadcrumb-content, */
html.mobile:not(.content-links-hidden):not(.content-links-no) #content {
	display: none;
}
html.mobile:not(.content-links-hidden):not(.content-links-no) #contents {
	padding: 0;
}


html.no-mobile.content-links-hidden #content-links-wrapper > .content-links-element.open {
	position: fixed;
	box-shadow: 0 0 20px rgba(0,0,0,.25);
	/* box-shadow: 0 0 20px #dfe3e6; */
	z-index: 1;
}
html.no-mobile.content-links-hidden .content-link-container::before {
	display: none;
}
html.no-mobile.content-links-hidden #content-links-wrapper > .content-link-container.open::after {
	content: '';
	position: absolute;
	top: -15px;
	bottom: -15px;
	right: 0;
	width: 15px;
	background: none;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	z-index: -1;
}
html.no-mobile.content-links-hidden .content-link-container > .content-links-element-wrapper > .content-links-element-wrapper-content > .content-links-element-header {
	display: none;
}
html.no-mobile.content-links-hidden .content-links-element-header br {
	display: none;
}
html.no-mobile.content-links-hidden #content-links-wrapper > .content-link-container > .content-links-elements {
	position: absolute;
	top: 0;
	left: 50px;
	background-color: inherit;
	z-index: -1;
	box-shadow: 0 0 20px rgba(0,0,0,.25);
	/* box-shadow: 0 0 20px #dfe3e6; */
}
html.no-mobile.content-links-hidden #content-links-wrapper > .content-link .content-links-element-header {
	z-index: -1;
	box-shadow: 0 0 20px rgba(0,0,0,.25);
	/* box-shadow: 0 0 20px #dfe3e6; */
}
html.no-mobile.content-links-hidden .content-links-elements > .content-links-element-header {
	display: block;
}
html.no-mobile.content-links-hidden .content-links-element-header {
	flex: 1 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
html.no-mobile.content-links-hidden .content-links-elements .content-links-element-icon {
	display: none;
}
html.no-mobile.content-links-hidden #content-links-wrapper > .content-links-element:not(.open) > .content-links-element-header {
	display: none;
}
html.no-mobile.content-links-hidden .content-links-element-header {
	white-space: nowrap;
}


/***/
#popupWindow {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #111;
	z-index: 100000;
}
#popupWindow-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	background-color: var(--color-2);
	cursor: pointer;
}
#popupWindow-close.disabled {
	background-color: #aaa;
	pointer-events: none;
}
#popupWindow-close.disabled::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,.5);
}
html.no-touch #popupWindow-close:not(.disabled):hover::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,.15);
}

#popupWindow-iframe-container {
	position: absolute;
	display: block;
	left: 10px;
	top: 10px;
	right: 55px;
	bottom: 10px
}
#popupWindow-iframe-container iframe {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: none;
}


html.mobile #popupWindow-close {
	top: 5px;
	right: 5px;
}
html.mobile #popupWindow-iframe-container {
	top: 5px;
	left: 5px;
	right: 45px;
	bottom: 5px;
}
html.mobile.portrait #popupWindow-iframe-container {
	top: 45px;
	left: 5px;
	right: 5px;
	bottom: 5px;
}



/***/
div.lucide {
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
}
div.lucide > svg {
	position: absolute;
	top: 4px;
	width: 18px;
	height: 18px;
}


/***/
html[data-organisation="Sanoma Utbildning"] #content-links-buttons > *:not(#content-links-buttons-header):not(#content-links-toggle) {
	visibility: hidden;
}
/* html[data-organisation="Sanoma Utbildning"].mobile #content-links-wrapper {
	margin-top: -50px;
} */