/* ---------------------------------------------------------------------------------------------

	Theme Name: WP Glossary
	Text Domain: wpglossary
	Version: 1.00
	Description: Theme for WP Glossary.
	Author: Anders Norén
	Author URI: http://www.andersnoren.se


/* ---------------------------------------------------------------------------------------------


	Terms of Content

	0.	CSS Reset
	1.	Document Setup
	X.  Element Base
	X.	Structure
	X.	Site Header
	X.	Header Menus
	X.  Site Footer
	X.  Media Queries


/* --------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* --------------------------------------------------------------------------------------------- */


html, body {
	border: none;
	height: 100%;
	margin: 0;
	min-height: 100%;
	padding: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	border: none;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	margin: 0;
	padding: 0;
	text-align: left;
}

blockquote:before,
blockquote:after {
	content: "";
}

a {
	outline: none;
}


/* --------------------------------------------------------------------------------------------- */
/*	1. Document Setup
/* --------------------------------------------------------------------------------------------- */


html {
	font-size: 62.5%; /* 1rem = 10px */
}

body {
	background: #fff;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #2D3741;
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 1.6rem;
	padding-top: 7rem;
}

*,
*:before,
*:after {
		-webkit-box-sizing: inherit;
		-moz-box-sizing: inherit;
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
}

::selection {
	background: #2D3741;
	color: #fff;
}


/* Clearing ---------------------------------- */


.group:after,
.entry-content:after {
	clear: both;
	content: "";
	display: block;
}


/* Base Transitions ------------------------------- */

a,
path {
	transition: all .15s linear;
}


/* WP Required Classes ----------------------- */


.sticky {}
.bypostauthor {}


/* Screen Reader Text ------------------------ */


.screen-reader-text {
	clip: rect( .1rem, .1rem, .1rem, .1rem );
	height: .1rem;
	overflow: hidden;
	position: absolute !important;
		left: -999999rem;
	width: .1rem;
}

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


/* --------------------------------------------------------------------------------------------- */
/*	2. Element Base
/* --------------------------------------------------------------------------------------------- */

p {
	line-height: 1.2;
	margin: 0 0 2rem 0;
}

em,
i,
q,
dfn {
	font-style: italic;
}

b,
strong {
	font-weight: 700;
}

ins {
	text-decoration: underline;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup { top: -0.5em; }
sub { bottom: -0.25em; }

abbr,
acronym {
	cursor: help;
}

address {
	margin: 0 0 2rem 0;
}

hr {
	border-top: .1rem solid #ddd;
	margin: 4rem 0;
	text-align: center;
}

a {
	color: #3C48D5;
}


/* Lists ------------------------------------- */


ul,
ol {
	margin: 0 0 2rem 3rem;
}

ul { list-style: disc; }
ul ul { list-style: circle; }
ul ul ul { list-style: square; }

ol { list-style: decimal; }
ol ol { list-style: lower-alpha; }
ol ol ol { list-style: lower-roman; }

li {
	margin: 1rem 0;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 2rem;
}

.reset-list-style,
ul.reset-list-style,
.reset-list-style ul,
.reset-list-style ol,
ul.reset-list-style ul,
ul.reset-list-style ol,
.reset-list-style,
ol.reset-list-style,
.reset-list-style ul,
.reset-list-style ol,
ol.reset-list-style ul,
ol.reset-list-style ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.reset-list-style li {
	margin: 0;
}

dt {
	font-weight: 700;
}

dd + dt {
	margin-top: 1.5rem;
}


/* ARROW LIST CIRCLED */

.arrow-list-circled li + li {
	margin-top: 1.4rem;
}

.arrow-list-circled a {
	align-items: center;
	display: flex;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
}

.arrow-list-circled a:before {
	background: url( http://wayback.fauppsala.se:80/wayback/20200215043516/https://www.wpglossary.net/wp-content/themes/wpglossary/assets/images/icons/arrow-circled-right-blue.svg ) no-repeat center;
	content: "";
	display: block;
	height: 3.2rem;
	margin-right: 1rem;
	width: 3.2rem;
}

.arrow-list-circled a:hover {
	text-decoration: underline;
}

.arrow-list-circled.horizontal {
	align-items: center;
	display: flex;
}

.arrow-list-circled.horizontal.centered {
	justify-content: center;
}

.arrow-list-circled.horizontal li + li {
	margin: 0 0 0 1.8rem;
}

@media ( max-width: 479px ) {

	.arrow-list-circled.horizontal.stack-mobile {
		align-items: flex-start;
		flex-direction: column;
	}

	.arrow-list-circled.horizontal li + li {
		margin: 1rem 0 0 0;
	}

}


/* ARROW LIST */

.arrow-list li {
	border-top: .1rem solid #E1E1E6;
}

.arrow-list li:first-child,
.arrow-list li.first-result {
	border-top: none;
}

.arrow-list a {
	color: #2D3741;
	display: block;
	font-feature-settings: "lnum";
	font-variant-numeric: lining-nums;
	font-size: 1.8rem;
	line-height: 1.25;
	padding: 2rem 4rem 1.9rem 0;
	position: relative;
	text-decoration: none;
}

.arrow-list a:before {
	background: url( http://wayback.fauppsala.se:80/wayback/20200215043516/https://www.wpglossary.net/wp-content/themes/wpglossary/assets/images/icons/arrow-right-blue.svg ) no-repeat center;
	content: "";
	display: block;
	height: 1.8rem;
	position: absolute;
		right: 0;
		top: 50%;
	transform: translateY( -50% );
	width: 2.2rem;
}

.arrow-list a:hover {
	color: #3C48D5;
}


/* Quotes ------------------------------------ */


blockquote {
	margin: 0;
	padding: 0 0 0 3rem;
}


/* Code -------------------------------------- */


pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	background: #F0F1F2;
	border-radius: .2rem;
	font-family: monospace;
	font-size: 1em;
	padding: .4rem .6rem;
}


/* Media ------------------------------------- */


img,
embed,
iframe,
object {
	height: auto;
	max-width: 100%;
}

div.wp-caption {
	display: block;
	margin-bottom: 3rem;
}

.alignleft,
.alignright {
	margin-bottom: 2rem;
	max-width: 50%;
}

.alignleft {
	float: left;
	margin-right: 2rem;
}

.alignright {
	float: right;
	margin-left: 3rem;
}

.aligncenter,
.alignnone {
	margin: 0 auto;
}

.wp-caption-text {
	margin-top: 1rem;
	text-align: center;
}


/* GALLERIES */

.gallery {
	margin-bottom: 3rem;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item { max-width: 50%; }
.gallery-columns-3 .gallery-item { max-width: 33.33%; }
.gallery-columns-4 .gallery-item { max-width: 25%; }
.gallery-columns-5 .gallery-item { max-width: 20%; }
.gallery-columns-6 .gallery-item { max-width: 16.66%; }
.gallery-columns-7 .gallery-item { max-width: 14.28%; }
.gallery-columns-8 .gallery-item { max-width: 12.5%; }
.gallery-columns-9 .gallery-item { max-width: 11.11%; }

.gallery-caption {
	display: block;
	margin-top: 1rem;
}


/* Inputs ------------------------------------ */


label {
	color: #7D8791;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	margin: 0 0 .5rem 0;
}

input,
select,
textarea {
	font-family: inherit;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	border: .2rem solid #E1E1E6;
	border-radius: .4rem;
	box-shadow: none;
	display: block;
	font-size: inherit;
	margin: 0;
	max-width: 100%;
	outline: none;
	padding: 1.35rem 1.8rem;
	width: 100%;
}

textarea {
	height: 12rem;
	line-height: 1.5;
	width: 100%;
}

input::-webkit-input-placeholder { color: #919BA5; }
input:-ms-input-placeholder { color: #919BA5; }
input::-moz-placeholder { color: #919BA5; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

button,
.faux-button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #3C48D5;
	border: none;
	border-radius: 999rem;
	color: #fff;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
	min-width: 14rem;
	padding: 1.4rem 2.4rem 1.5rem;
	text-align: center;
	text-decoration: none;
	transition: background-color .15s linear;
}

button.no-min-width,
.faux-button.no-min-width,
input[type="button"].no-min-width,
input[type="reset"].no-min-width,
input[type="submit"].no-min-width {
	min-width: auto;
}

button:hover,
.faux-button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #2C359F;
	cursor: pointer;
}

button:focus,
.faux-button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	background: #2C359F;
}


/* Tables ------------------------------------ */


table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	margin-bottom: 3rem;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

th,
td {
	line-height: 1.4;
	margin: 0;
	overflow: visible;
	padding: 2.5%;
}

caption {
	border-bottom: 1px solid #ddd;
	font-weight: 700;
	padding-bottom: 2.5%;
	text-align: center;
}

thead {
	vertical-align: bottom;
	white-space: nowrap;
}

th {
	border-bottom: 1px solid #ddd;
	font-weight: 700;
}

tbody > tr:nth-child(even) {
	background-color: #f6f6f6;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Helper Classes
/* --------------------------------------------------------------------------------------------- */


/* Layout ------------------------------- */


.screen-height {
	min-height: 100vh;
}

.screen-width {
	position: relative;
		left: calc( 50% - 50vw );
	width: 100vw;
}

.center-vertically {
	align-items: center;
	display: flex;
	justify-content: center;
}

.no-margin { margin: 0; }
.no-padding { padding: 0; }


/* Sections ------------------------------- */


.section-inner {
	width: 100%;
}

.section-inner.center {
	margin-left: auto;
	margin-right: auto;
}

.section-inner.thin { max-width: 52rem; }
.section-inner.small { max-width: 60rem; }
.section-inner.medium { max-width: 65rem; }


/* Toggles ------------------------------- */


.toggle {
	cursor: pointer;
	position: relative;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
	user-select: none;
}

.cover-toggle {
	opacity: 0;
	position: fixed;
		bottom: 0;
		left: -99999rem;
		right: 99999rem;
		top: 0;
	transition: opacity .4s linear, left 0s .4s, right 0s .4s;
	z-index: 9;
}

.cover-toggle.active {
	left: 0;
	opacity: 1;
	right: 0;
	transition: opacity .4s linear;
}

.cover-toggle.short-transition { transition: opacity .2s linear, left 0s .2s, right 0s .2s; }
.cover-toggle.short-transition.active { transition: opacity .2s linear; }


/* Grid Helper ------------------------------- */


.grid,
.grid .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.grid {
	margin: 0 0 -2rem -2rem;
}

.grid .item {
	margin: 0 0 2rem 2rem;
	width: calc( 100% - 2rem );
}

.item.space-between {
	align-items: center;
	display: flex;
	justify-content: space-between;
}


/* Bordered grid helper ------------------------------- */

.bordered-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 4rem 0;
	position: relative;
		left: calc( 50% - 50vw );
	width: 100vw;
}

.bordered-grid .item {
	border: .1rem solid #E1E1E6;
	border-left: none;
	margin-top: -.1rem;
	min-height: 15rem;
	padding: 2.5rem;
	width: 50%;
}

.bordered-grid div.item:last-child,
.bordered-grid .item:nth-child(2n) { border-right-width: 0; }

.bordered-grid p {
	margin-top: .8rem;
}


/* Typography ------------------------------- */


.font-serif { font-family: 'Lyon Text', sans-serif; }
.font-script { font-family: Mochary, sans-serif; }

.font-size-xl { font-size: 1.25em; }
.font-size-xs { font-size: 0.8em; }

.style-italic { font-style: italic; }

.weight-bold { font-weight: 700; }
.weight-semibold { font-weight: 600; }
.weight-medium { font-weight: 500; }
.weight-regular { font-weight: 400; }
.weight-light { font-weight: 300; }

.text-align-inherit { text-align: inherit; }
.text-align-left { text-align: left; }
.text-align-center { text-align: center; }
.text-align-right { text-align: right; }

.letterspacing-incr-5 { letter-spacing: 0.10em; }
.letterspacing-incr-4 { letter-spacing: 0.08em; }
.letterspacing-incr-3 { letter-spacing: 0.06em; }
.letterspacing-incr-2 { letter-spacing: 0.04em; }
.letterspacing-incr-1 { letter-spacing: 0.02em; }

.letterspacing-decr-1 { letter-spacing: -0.02em; }
.letterspacing-decr-2 { letter-spacing: -0.04em; }
.letterspacing-decr-3 { letter-spacing: -0.06em; }
.letterspacing-decr-4 { letter-spacing: -0.08em; }
.letterspacing-decr-5 { letter-spacing: -0.10em; }

.line-height-single { line-height: 1; }
.line-height-title { line-height: 1.25; }
.line-height-paragraph { line-height: 1.45; }

.text-decoration-none { text-decoration: none; }
.text-decoration-hover-underline:hover { text-decoration: underline; }

@media ( max-width: 599px ) {
	.text-hide-mobile { display: none; }
}

.text-shadow-dark { text-shadow: 0 .1rem 0 rgba( 0, 0, 0, 0.25 ); }

.lining-numerals {
	font-feature-settings: "lnum";
	font-variant-numeric: lining-nums;
}

.smallcaps {
	font-variant-caps: small-caps;
	font-weight: 500;
	text-transform: lowercase;
}

.transform-uppercase {
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.no-select {
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
	user-select: none;
}


/* Text sizes ------------------------------------- */


.mfs-10 { font-size: 1.0rem; }
.mfs-11 { font-size: 1.1rem; }
.mfs-12 { font-size: 1.2rem; }
.mfs-13 { font-size: 1.3rem; }
.mfs-14 { font-size: 1.4rem; }
.mfs-15 { font-size: 1.5rem; }
.mfs-16 { font-size: 1.6rem; }
.mfs-17 { font-size: 1.7rem; }
.mfs-18 { font-size: 1.8rem; }
.mfs-19 { font-size: 1.9rem; }
.mfs-22 { font-size: 2.2rem; }
.mfs-24 { font-size: 2.4rem; }
.mfs-25 { font-size: 2.5rem; }
.mfs-30 { font-size: 3.0rem; }
.mfs-40 { font-size: 4.0rem; }
.mfs-48 { font-size: 4.8rem; }


/* Position ------------------------------- */


.position-static { position: static; }
.position-relative { position: relative; }

.position-cover {
	position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
}

.z-level-1 { z-index: 9; }
.z-level-2 { z-index: 99; }
.z-level-3 { z-index: 999; }
.z-level-4 { z-index: 9999; }
.z-level-5 { z-index: 99999; }


/* Colors ------------------------------- */


/* TEXT COLOR */

.color-white,
.color-white-hover:hover { color: #FFF; }
.color-white-semitransparent,
.color-white-semitransparent-hover:hover { color: rgba( 255, 255, 255, 0.5 ); }

.color-gray,
.color-gray-hover:hover { color: #919BA5; }
.color-dark-gray,
.color-dark-gray-hover:hover { color: #7D8791; }
.color-black,
.color-black-hover:hover { color: #2D3741; }

.color-blue,
.color-blue-hover:hover { color: #3C48D5; }
.color-blue-dark,
.color-blue-dark-hover:hover { color: #2C359F; }

.color-twitter-blue,
.color-twitter-blue-hover:hover { color: #55ACEE; }
.color-facebook-blue,
.color-facebook-blue-hover:hover { color: #3B5998; }

.color-inherit { color: inherit; }


/* BACKGROUND COLOR */

.bg-none { background: none; }

.bg-white,
.bg-white-hover:hover { background: #FFF; }
.bg-light-gray,
.bg-light-gray-hover:hover { background: #F6F6F7; }

.bg-gray,
.bg-gray-hover:hover { background: #919BA5; }
.bg-dark-gray,
.bg-dark-gray-hover:hover { background: #7D8791; }
.bg-black,
.bg-black-hover:hover { background: #2D3741; }

.bg-twitter-blue,
.bg-twitter-blue-hover:hover { background: #55ACEE; }
.bg-facebook-blue,
.bg-facebook-blue-hover:hover { background: #3B5998; }

.bg-blue,
.bg-blue-hover:hover { background: #3C48D5; }
.bg-blue-dark,
.bg-blue-dark-hover:hover { color: #2C359F; }


/* Image Classes ------------------------------- */


.faux-image,
.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-contain {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.bg-fixed {
	background-attachment: fixed;
}

.faux-image {
	position: relative;
}

a.faux-image {
	display: block;
}

.faux-image:after {
	content: "";
	display: block;
	padding-top: 62.5%;
	width: 100%;
}

.faux-image.half:after { padding-top: 50%; }
.faux-image.television:after { padding-top: 56.25%; }
.faux-image.square:after { padding-top: 100%; }


/* Background Overlay ------------------------------- */


.bg-overlay:before {
	background: rgba( 45, 55, 65, 0.4 );
	content: "";
	display: block;
	position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
}

.bg-overlay.light:before { background: rgba( 45, 55, 65, 0.25 ); }
.bg-overlay.dark:before { background: rgba( 45, 55, 65, 0.55 ); }


/* Icon Link ------------------------------- */


.icon-link {
	align-items: center;
	display: flex;
}

.icon-link svg { 
	position: relative;
	width: 1.5rem; 
}

.icon-link span + svg,
.icon-link svg + span {
	margin-left: .9rem;
}

.icon-link.icon-horizontal-arrow svg { 
	width: 1.9rem; 
}


/* Separator ------------------------------- */


.separator {
	background: #D1D1D6;
	margin: 3rem auto;
	height: .1rem;
	width: 15rem;
}

.separator div {
	background: #fff;
	height: .1rem;
	margin: 0 auto;
	position: relative;
	width: 3.5rem;
}

.separator div:before,
.separator div:after {
	background: #D1D1D6;
	content: "";
	display: block;
	height: 1.5rem;
	position: absolute;
		left: calc( 50% - .05rem );
		top: calc( 50% - .75rem );
	transform: rotate( 45deg );
	width: .1rem;
}

.separator div:before { margin-left: -.5rem; }
.separator div:after { margin-left: .5rem; }


/* Share Links ------------------------------- */


.share-links,
.share-link,
.share-link .icon-wrapper {
	align-items: center;
	display: flex;
	justify-content: flex-start;
}

.share-link + .share-link {
	margin-left: 1rem;
}

.share-link .icon-wrapper {
	border-radius: 50%;
	height: 4.4rem;
	justify-content: center;
	min-width: 4.4rem;
	transition: background-color .15s linear;
}

.share-link svg { 
	display: block;
	height: auto; 
}

.share-facebook svg { width: 1.14rem; }
.share-twitter svg { width: 2.2rem; }
.copy-link svg { width: 1.87rem; }

.share-link-text {
	display: none;
	margin-left: 1rem;
	transition: color .15s linear;
}

.copy-link .share-link-text {
	display: block;
}

.copy-link:not(.copied) .after-copy,
.copy-link.copied .before-copy { 
	display: none; 
}

.copy-link .icon {
	transition: all .15s ease-in-out;
}

.copy-link:not(.copied) .checkmark-icon,
.copy-link.copied .link-icon {
	opacity: 0;
	transform: scale( 0 );
}

.copy-link.copied .share-link-text {
	color: #7ac143;
}

.copy-link.copied .icon-wrapper {
	background: #7ac143;
}



/* Notices ------------------------------- */


.notice {
	background: #ECEDF0;
	border-radius: .4rem;
	color: #454D69;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	padding: 1.4rem 1.5rem;
	position: relative;
	width: 100%;
}

.notice.notice-success { 
	background: #DFE9E0; 
	color: #2B672C;
}

.notice.notice-error { 
	background: #FAEBEC;
	color: #D43546;
}

.notice.notice-warning { 
	background: #FAEADE;
	color: #DA7323;
}

.notice.has-icon {
	align-items: center;
	display: flex;
}

.notice.has-icon svg {
	flex-shrink: 0;
	margin-right: 1.2rem;
	width: 1.5rem;
}

.notice p {
	display: block;
	line-height: 1.35;
	margin: 0;
}

.notice a {
	text-decoration: underline;
}

.notice a:hover {
	opacity: .5;
}

.notice .close-notice {
	background: url( http://wayback.fauppsala.se:80/wayback/20200215043516/https://www.wpglossary.net/wp-content/themes/wpglossary/assets/images/icons/cross-dark.svg ) no-repeat center;
	background-size: 1.2rem;
	cursor: pointer;
	position: absolute;
		bottom: 0;
		right: 0;
		top: 0;
	width: 4rem;
}

.no-js .close-notice {
	display: none;
}


/* Cover Modal ------------------------------- */


.cover-modal {
	display: flex;
	opacity: 0;
	overflow: auto;
	padding: 2rem 0;
	position: fixed;
		bottom: 0;
		left: -9999rem;
		right: 9999rem;
		top: 0;
	transition: opacity .25s ease-in, left 0s .25s, right 0s .25s;
	z-index: 9999;
}

.cover-modal.active {
	left: 0;
	right: 0;
	opacity: 1;
	transition: opacity .25s ease-out;
}

.cover-modal .modal-inner {
	margin: auto;
	max-width: 56rem;
	opacity: 0;
	transform: translateY( 1rem );
	transition: transform .25s linear, opacity .25s linear;
	width: 90%;
}

.cover-modal.loading .modal-inner {
	display: flex;
}

.cover-modal.loading .modal-inner .loading-icon {
	position: absolute;
		left: 50%;
		top: 50%;
	transform: translateX( -50% ) translateY( -50% );
}

.cover-modal.active .modal-inner {
	opacity: 1;
	transform: translateY( 0 );
}

.cover-modal .modal-header {
	margin-bottom: 2.5rem;
}

.cover-modal .modal-content {
	font-size: 1.6rem;
}

.cover-modal .modal-content .smallcaps {
	margin-bottom: 1rem;
}


/* Windows ------------------------------------- */


.cover-modal.has-modal-windows { 
	background: #fff;
}

.cover-modal.has-modal-windows .modal-inner { 
	margin: 0; 
}

.cover-modal-window {
	background: #fff;
	border-radius: .8rem;
	box-shadow: 0 .5rem 2rem 0 rgba( 45, 55, 65, 0.15 );
	padding: 2.5rem;
}

.cover-modal-window .overlay-top-link {
	cursor: pointer;
	display: flex;
	height: 5.5rem;
	position: absolute;
		top: 0;
	width: 5.5rem;
}

.cover-modal-window .overlay-top-link.link-position-left { left: 0; }
.cover-modal-window .overlay-top-link.link-position-right { right: 0; }

.cover-modal-window .overlay-top-link .inner {
	background-color: transparent;
	border-radius: 50%;
	display: flex;
	height: 4rem;
	position: absolute;
		left: 50%;
		top: 50%;
	transform: translate( -50%, -50% );
	transition: all .15s linear;
	width: 4rem;
}

.cover-modal-window .overlay-top-link:hover .inner {
	background-color: #ECEDF0;
	transform: translate( -50%, -50% ) scale( 1.1 );
}

.cover-modal-window .overlay-top-link svg {
	height: 1.6rem;
	margin: auto;
	position: relative;
	width: 1.6rem;
}

.cover-modal-window .close-overlay svg {
	height: 1.6rem;
	width: 1.6rem;
}

.cover-modal-window .back-overlay svg {
	height: 1.6rem;
	width: 2.048rem;
}

.cover-modal-window .window-title {
	margin: 0;
}

.cover-modal-window .window-subtitle {
	margin: 1rem 0 0;
}

.cover-modal-window .window-subtitle.transform-uppercase {
	font-size: 1.3rem;
	margin-top: 1.5rem;
}

.cover-modal-window .window-header + .window-content,
.cover-modal-window .window-content + .window-footer,
.cover-modal-window .window-header + .window-footer {
	margin-top: 4rem;
}

.window-title-small {
	margin-bottom: 1.5rem;
}


/* Image Lightbox ------------------------------- */


#image-lightbox {
	cursor: zoom-out;
}

#image-lightbox .modal-inner {
	background: no-repeat center;
	background-size: contain;
	max-width: none;
	position: absolute;
		bottom: 1rem;
		left: 1rem;
		right: 1rem;
		top: 1rem;
	width: auto;
}


/* Barba.js ------------------------------- */


/* BARBA MINIMAL */

.barba-cover {
	background: #fff;
	display: flex;
	opacity: 0;
	position: fixed;
		bottom: 0;
		left: -9999rem;
		right: 9999rem;
		top: 0;
	transition: opacity .2s ease-out;
	z-index: 5;
}

.barba-animate-out .barba-cover {
	left: 0;
	right: 0;
	opacity: 1;
}

.barba-animate-in .barba-cover {
	left: -9999rem;
	right: 9999rem;
	opacity: 0;
	transition: opacity .2s linear, left 0s .2s, right 0s .2s;
}

.barba-cover-inner {
	display: flex;
	padding: 7rem 0 0;
	width: 100%;
}

.scrolling-down .barba-cover-inner {
	padding-top: 0;
}

.barba-cover-inner p {
	margin: auto;
}


/* Loading Indicator ------------------------------- */


.loader {
	animation: spin 1.4s linear infinite;
    border: .5rem solid #E1E1E6;
	border-radius: 50%;
    border-top: .5rem solid #919BA5;
    height: 5rem;
	margin: auto;
    width: 5rem;
}

.loader.small {
	height: 3rem;
	width: 3rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Site Header
/* --------------------------------------------------------------------------------------------- */


#site-header {
	align-items: center;
	background: #fff;
	box-shadow: 0 0 1rem rgba( 46, 56, 66, 0.25 );
	display: flex;
	height: 7rem;
	justify-content: space-between;
	position: fixed;
		left: 0;
		top: 0;
	width: 100%;
	z-index: 9;
}

.scrolling-down #site-header {
	left: -99999rem;
	transform: translateY( -100% );
	transition: transform .15s linear, left 0s linear .15s;
}

.scrolling-up #site-header {
	transition: transform .15s linear, left 0s linear;
}

#site-header .header-title,
#site-header .toggle {
	align-items: center;
	display: flex;
	justify-content: center;
}

#site-header .header-title svg {
	height: 5rem;
	width: auto;
}

#site-header .toggle {
	height: 8rem;
	padding: 0 2.5rem;	
	width: 8rem;
}

#site-header .nav-toggle svg {
	width: 2.6rem;
}


/* Site Search ------------------------- */


#site-search {
	box-shadow: 0 .1rem 2rem rgba( 45, 55, 65, .15 );
	position: fixed;
		left: -9999rem;
		right: 9999rem;
		top: 0;
	transition: transform .2s ease-in, left 0s .2s, right 0s .2s;
	transform: translateY( -100% );
	z-index: 99;
}

.home #site-search {
	box-shadow: none;
}

#site-search.active {
	left: 0;
	right: 0;
	transform: translateY( 0 );
	transition: transform .2s linear;
}

#site-search .search-form {
	position: relative;
}

#site-search .search-field {
	border: none;
	border-radius: 0;
	font-size: 1.8rem;
	height: 6.9rem;
	padding: 1.5rem 8rem 1.5rem 2.5rem;
}

#site-search .search-empty {
	display: none;
}

#site-search .search-untoggle {
	display: flex;
	position: absolute;
		bottom: 0;
		right: 0;
		top: 0;
	width: 8rem;
}

#site-search .search-untoggle svg {
	margin: auto;
	width: 1.6rem;
}

.home #search-results-cover {
	display: none;
}

#site-search .search-results {
	background: #fff;
	border-top: .1rem solid #E1E1E6;
	display: none;
	max-height: calc( 100vh - 7rem );
	overflow: auto;
	padding: 2rem 2.5rem;
}

.no-results-text {
	display: none;
}

.no-results .no-results-text {
	display: block;
}


/* Sidebar ------------------------- */


.sidebar {
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 32.5rem;;
	overflow: auto;
	padding: 3rem;
	position: fixed;
		bottom: 0;
		left: -99999rem;
		top: 0;
	transform: translateX( -100% );
	transition: transform .4s ease-out, left 0s .4s;
	width: calc( 100% - 5rem );
	z-index: 99;
}

.sidebar.active {
	left: 0;
	transform: translateX( 0 );
	transition: transform .4s ease-out;
}

.sidebar-title,
.sidebar-description,
ul.main-menu {
	margin-bottom: 3rem;
}

.sidebar-title a {
	display: block;
}

.sidebar-title svg {
	display: block;
	height: auto;
	max-width: 100%;
	width: 21.75rem;
}

.sidebar-description {
	font-size: 1.6rem;
}

.sidebar-credits {
	font-size: 1.3rem;
}

.sidebar-credits a:hover {
	color: #3C48D5;
}


/* SIDEBAR ADVERT */

.sidebar-bottom {
	margin-top: 6rem;
}

.advert {
	display: block;
}

.advert img {
	display: block;
	height: auto;
	width: 10.4rem;
}

.advert-origin {
	position: absolute;
		left: 12rem;
		top: 3.2rem;
}

.advert p {
	 margin: 1.5rem 0 0;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Structure
/* --------------------------------------------------------------------------------------------- */


#site-content {
	min-height: calc( 100vh - 45.3rem );
	padding: 2rem 2.5rem 4rem 2.5rem;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Word Single
/* --------------------------------------------------------------------------------------------- */


.single-wpglossary_word .page-header {
	max-width: 73rem;
}

.page-header .home-link {
	display: inline-flex;
	margin-bottom: 2rem;
}

.page-subtitle {
	margin: 1.2rem 0 0;
}

.page-header .forwarded {
	color: #7D8791;
	font-size: 0.9em;
	margin: .6rem 0 2rem;
}

.page-header .share-links {
	margin-top: 2rem;
}


/* Word Video ------------------------- */

.word-inner-wrapper {
	margin-top: 3rem;
}

.word-video.desktop {
	display: none;
}

.word-video .video-title {
	margin: 1rem 0 0;
}


/* Article Tools ------------------------- */

.article-tools {
	border-top: .1rem solid #E1E1E6;
	display: flex;
	padding-top: 1rem;
}

.word-video + .article-tools {
	margin-top: 3rem;
}

.article-tool + .article-tool {
	margin-left: 2.2rem;
}

.tool-text-size svg { width: 1.914rem; }
.tool-print svg { width: 1.733rem; }
.tool-correct svg { width: 1.6rem; }

.article-tool svg + span {
	margin-left: 1rem;
}

.tool-text-size:not(.active) .smaller-text,
.tool-text-size.active .bigger-text {
	display: none;
}


/* Word Content ------------------------- */

.word-content-wrapper {
	margin-top: 3rem;
}


/* Word Bottom Meta ------------------------- */

.word-bottom-meta {
	margin-top: 2rem;
}

.word-bottom-meta p {
	line-height: 1.5;
	margin: 0;
}

.word-bottom-meta p + p {
	margin-top: .2rem;
}

.word-bottom-meta time {
	border-bottom: .1rem dotted #E1E1E6;
	cursor: help;
	transition: border-color .15s linear;
}

.word-bottom-meta time:hover {
	border-bottom-color: #7D8791;
}


/* Word Links ------------------------- */

.word-video-links {
	margin-top: 4rem;
}

.word-links .block-title {
	margin-bottom: 1.5rem;
}

.word-links li {
	border-bottom: .1rem dashed #D1D1D6;
	margin-bottom: 1.4rem;
	padding-bottom: 1.4rem;
}

.word-links li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.word-links a {
	display: block;
	padding-left: 2.9rem;
	position: relative;
}

.word-links a:hover .link-title {
	text-decoration: underline;
}

.word-links svg {
	position: absolute;
		left: 0;
		top: .2rem;
	width: 1.9rem;
}

.word-links p + p {
	margin-top: .3rem;
}


/* Related Words ------------------------- */

.related-words {
	margin-top: 4rem;
	width: 100%;
}

.related-words .block-title {
	margin-bottom: 1.5rem;
}

.related-words-list {
	margin-bottom: -1rem;
}

.related-word {
	border: .1rem solid #E1E1E6;
	border-radius: .5rem;
	display: block;
	margin-bottom: 1rem;
	padding: 1.8rem 2rem;
	position: relative;
}

.related-word svg {
	position: absolute;
		right: 2rem;
		top: 50%;
	transform: translateY( -50% );
	width: 1.8rem;
}

.related-word-title {
	padding-right: 3rem;
}

.related-word-subtitle {
	display: none;
}

.related-word:hover .related-word-title {
	text-decoration: underline;
}


/* Correction Modal ------------------------- */

.modal-page:not(.active) {
	display: none;
}

.modal-page-one .comment-form {
	margin-top: 3rem;
}

.modal-page-one .close-link {
	background: #F1F3F7;
	border-radius: 50%;
	display: flex;
	height: 3.2rem;
	position: absolute;
		top: calc( 50% - 1.6rem );
		right: 0;
	transition: all .2s ease-out;
	width: 3.2rem;
}

.modal-page-one .close-link svg {
	display: block;
	height: auto;
	margin: auto;
	width: 1rem;
}

.modal-page-one .close-link:hover {
	transform: scale( 1.1 );
}

.modal-page-two .modal-subtitle {
	margin: 1.5rem 0 1.9rem;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Sub Page
/* --------------------------------------------------------------------------------------------- */


.page #site-content {
	padding-top: 4rem;
}

ul.post-content-links {
	margin-top: 2.5rem;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Changelog
/* --------------------------------------------------------------------------------------------- */


.changelog-list {
	border-top: .1rem solid #E1E1E6;
}

.changelog-list a {
	display: block;
}

.changelog-list a {
	align-items: center;
	border-bottom: .1rem solid #E1E1E6;
	color: inherit;
	font-size: 1.8rem;
	justify-content: space-between;
	padding: 1.8rem 0;
	text-decoration: none;
}

.changelog-list a > div {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.changelog-list a > div + div {
	margin: .5rem 0 0;
}

.changelog-list a:hover .changelog-title {
	color: #3C48D5;
}

.status {
	background: #3C48D5;
	border-radius: .2rem;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
	min-width: 2.9rem;
	padding: .4rem .5rem .5rem;
	text-align: center;
	text-transform: uppercase;
}

.status.green { background: #3CD570; }
.status.red { background: #D53C3C; }

.changelog-list .status {
	 margin-left: 1rem;
}

.changelog-list time {
	color: #7D8791;
	font-size: 1.4rem;
}


/* Pagination ------------------------- */


.pagination {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}

.pagination .loader {
	display: none;
}

.pagination.loading .load-more { display: none; }
.pagination.loading .loader { display: block; }


/* --------------------------------------------------------------------------------------------- */
/*	X. Entry Content
/* --------------------------------------------------------------------------------------------- */


.entry-content.big-text {
	font-size: 1.15em;
	max-width: 56rem;
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }

.logged-in .entry-content a[data-broken-word-link] {
	color: #F44C4C;
}

.entry-content a:hover {
	color: #2C359F;
}

.entry-content a[href*="//"]:not([href*="localhost"]):not([href*="wpglossary.net"]):after,
.logged-in .entry-content a[data-broken-word-link]:after {
	background: no-repeat center;
	background-size: 1.5rem auto;
	content: "";
	display: inline-block;
	height: 1.5rem;
	margin: 0 .1rem 0 .5rem;
	position: relative;
		bottom: -.2rem;
	width: 1.5rem;
}

.entry-content a[href*="//"]:not([href*="localhost"]):not([href*="wpglossary.net"]):after {
	background-image: url( http://wayback.fauppsala.se:80/wayback/20200215043516/https://www.wpglossary.net/wp-content/themes/wpglossary/assets/images/icons/arrow-external-blue.svg );
}

.entry-content a[href*="//"]:not([href*="localhost"]):not([href*="wpglossary.net"]):hover:after {
	background-image: url( http://wayback.fauppsala.se:80/wayback/20200215043516/https://www.wpglossary.net/wp-content/themes/wpglossary/assets/images/icons/arrow-external-blue-dark.svg );
}

.logged-in .entry-content a[data-broken-word-link]:after {
	background-image: url( http://wayback.fauppsala.se:80/wayback/20200215043516/https://www.wpglossary.net/wp-content/themes/wpglossary/assets/images/icons/warning-red.svg );
}

.entry-content strong {
	font-weight: 600;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	font-feature-settings: "lnum";
	font-variant-numeric: lining-nums;
	font-weight: 600;
	letter-spacing: -0.005em;
	line-height: 1.25;
	margin: 3rem 0 1.5rem;
}

.entry-content h1 { font-size: 2.8rem; }
.entry-content h2 { font-size: 2.4rem; }
.entry-content h3 { font-size: 2.2rem; }
.entry-content h4 { font-size: 2rem; }
.entry-content h5 { font-size: 1.8rem; }
.entry-content h6 { 
	font-size: 1.6rem; 
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.entry-content p,
.entry-content li {
	line-height: 1.5;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin-bottom: 1rem;
}

.entry-content li {
	margin: .5rem 0;
}

.entry-content pre {
	border-radius: .4rem;
	line-height: 1.5;
	margin: 2rem 0;
	padding: 1.5rem;
}

.entry-content blockquote {
	border-left: .1rem solid #3C48D5;
	font-size: 0.95em;
	padding-left: 2rem;
}

.entry-content blockquote p {
	font-style: italic;
}


/* Entry Content Media ------------------------- */


.entry-content .alignnone,
.entry-content .aligncenter {
	margin: 2.5rem 0;
	max-width: 100%;
	width: 100%;
}

.entry-content img {
	border-radius: .4rem;
	box-shadow: 0 0 1rem rgba( 46, 56, 66, 0.075 );
	cursor: zoom-in;
	display: block;
}

.entry-content .wp-caption-text {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	margin: .8rem 0 0;
	text-align: left;
}


/* Word Previews ------------------------- */


.entry-content .word-preview-wrapper {
	display: inline-flex;
	position: relative;
}

.entry-content .word-preview {
	background: #fff;
	border: .2rem solid #E1E1E6;
	border-radius: .4rem;
	box-shadow: 0 .1rem 2rem 0 rgba( 45, 55, 65, .15 );
	display: none;
	opacity: 0;
	padding: 2rem;
	position: absolute;
		left: -9999rem;
		top: calc( 100% + 1.2rem );
	text-decoration: none;
	transform: translateY( 1rem );
	transition: opacity .15s linear, transform .15s linear, left 0s .15s;
	width: 26rem;
	z-index: 1;
}

.entry-content .word-preview:before {
	content: "";
	display: block;
	height: 1.5rem;
	position: absolute;
		bottom: 100%;
		left: 0;
		right: 0;
}

.entry-content .word-preview-wrapper:before,
.entry-content .word-preview-wrapper:after {
	border: 1.2rem solid transparent;
	border-top-width: 0;
	border-bottom-color: #E1E1E6;
	content: "";
	display: none;
	opacity: 0;
	position: absolute;
		bottom: -1.2rem;
		left: -99999rem;
	transform: translateY( 1rem );
	transition: opacity .15s linear, transform .15s linear, left 0s .15s;
	z-index: 2;
}

.entry-content .word-preview-wrapper:after {
	border-bottom-color: #fff;
	bottom: -1.45rem;
}

.entry-content .word-preview-wrapper:hover > .word-preview,
.entry-content .word-preview-wrapper:hover:before,
.entry-content .word-preview-wrapper:hover:after {
	opacity: 1;
	transform: translateY( 0 );
	transition: opacity .15s linear, transform .15s linear;
}

.entry-content .word-preview-wrapper:hover:before,
.entry-content .word-preview-wrapper:hover:after {
	left: calc( 50% - 1rem );
}

.entry-content .word-preview-wrapper:hover > .word-preview {
	left: -2rem;
}

.entry-content .word-preview header {
	padding-right: 3rem;
}

.entry-content .word-preview header svg {
	position: absolute;
		right: 0;
		top: calc( 50% - .1rem );
	transform: translateY( -50% );
	width: 1.8rem;
}

.entry-content .word-preview-title {
	color: #3C48D5;
	font-weight: 600;
	font-size: 1.8rem;
	margin: 0;
}

.entry-content .word-preview-text {
	color: #2D3741;
	font-size: 1.5rem;
	line-height: 1.45;
	margin: 1rem 0 0;
}

/* PREVIEW LOADING */

.word-preview-wrapper.preview-loading .word-preview {
	min-height: 8rem;
}

.entry-content .word-preview .loader {
	position: absolute;
		left: calc( 50% - 1.5rem );
		top: calc( 50% - 1.5rem );
}

.entry-content .word-preview-wrapper.preview-loaded .loader { 
	display: none; 
}


/* --------------------------------------------------------------------------------------------- */
/*	X. 404 Page
/* --------------------------------------------------------------------------------------------- */


.error404 #site-content .arrow-list-circled {
	margin-top: 1.8rem;
}

.error404 #site-content .section-inner {
	max-width: 43rem;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Site Footer
/* --------------------------------------------------------------------------------------------- */


#site-footer {
	border-top: .1rem solid #E1E1E6;
	padding: 4rem;
	text-align: center;
}

.footer-title {
	display: block;
	margin: auto;
	max-width: 100%;
	width: 21.75rem;
}

.footer-title svg {
	height: auto;
	width: 100%;
}

.footer-title:hover {
	color: #3C48D5;
}

.footer-title-text {
	display: none;
	line-height: 1.25;
}

ul.footer-menu,
.second-footer-block {
	margin-top: 3rem;
}

.footer-menu li + li {
	margin-top: 1rem;
}

.footer-menu a {
	color: inherit;
	display: block;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
}

.footer-menu a:hover {
	color: #3C48D5;
}

.cc-logo {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	margin-top: 2.5rem;
}

.cc-logo span {
	margin-left: .8rem;
}

.cc-logo svg {
	width: 2.2rem;
}

.cc-logo path { fill: #7D8791; }

.cc-logo:hover { color: #3C48D5; }
.cc-logo:hover path { fill: #3C48D5; }

.hello-dolly:hover { color: #3C48D5; }
.hello-dolly:hover path { fill: #3C48D5; }

.hello-dolly .icon-wrapper {
	margin: 0 auto 1.5rem auto;
	position: relative;
	width: 14rem;
}

.hello-dolly .icon-wrapper:before,
.hello-dolly .icon-wrapper:after {
	background: #E1E1E6;
	content: "";
	display: block;
	height: .1rem;
	position: absolute;
		top: calc( 50% - .05rem );
	width: 4.9rem;
}

.hello-dolly .icon-wrapper:before { left: 0; }
.hello-dolly .icon-wrapper:after { right: 0; }

.hello-dolly .icon-wrapper svg {
	display: block;
	margin: 0 auto;
}


/* --------------------------------------------------------------------------------------------- */
/*	X. Media Queries
/* --------------------------------------------------------------------------------------------- */


@media ( min-width: 370px ) {

	/* Helper Classes ------------------------- */

	/* BORDERED GRID */

	.bordered-grid-item-title {
		font-size: 4.8rem;
	}
		
	/* Sidebar ------------------------- */

	.sidebar {
		padding: 4rem;
	}

	.sidebar-description {
		font-size: 1.9rem;
	}

	.sidebar-credits {
		font-size: 1.4rem;
	}

	/* Word Single ------------------------- */

	.page-subtitle {
		font-size: 1.9rem;
	}

}


@media ( min-width: 480px ) {

	/* Element Base ------------------------- */

	/* LISTS */

	.arrow-list a {
		font-size: 2rem;
		padding: 2.2rem 4rem 2.1rem 0;
	}

}


@media ( min-width: 600px ) {


	/* Document Setup ------------------------- */

	body {
		font-size: 1.8rem;
		padding-top: 10rem;
	}

	/* Helper Classes ------------------------- */

	/* LAYOUT */

	.text-hide-tablet { display: none; }

	/* TEXT SIZES */

	.tfs-14 { font-size: 1.4rem; }
	.tfs-15 { font-size: 1.5rem; }
	.tfs-16 { font-size: 1.6rem; }
	.tfs-17 { font-size: 1.7rem; }
	.tfs-18 { font-size: 1.8rem; }
	.tfs-19 { font-size: 1.9rem; }
	.tfs-20 { font-size: 2.0rem; }
	.tfs-21 { font-size: 2.1rem; }
	.tfs-22 { font-size: 2.2rem; }
	.tfs-23 { font-size: 2.3rem; }
	.tfs-24 { font-size: 2.4rem; }
	.tfs-28 { font-size: 2.8rem; }
	.tfs-40 { font-size: 4.0rem; }
	.tfs-48 { font-size: 4.8rem; }
	.tfs-56 { font-size: 5.6rem; }
	.tfs-64 { font-size: 6.4rem; }

	/* COVER MODALS */

	.cover-modal-window {
		padding: 4rem;
	}

	/* IMAGE LIGHTBOX */

	#image-lightbox .modal-inner {
		bottom: 2rem;
		left: 2rem;
		right: 2rem;
		top: 2rem;
	}

	/* GRID HELPER */

	.grid {
		margin: 0 0 -2.5rem -2rem;
	}
	
	.grid .item {
		margin: 0 0 2.5rem 2rem;
	}

	.grid .tablet-two-cols .item {
		width: calc( 50% - 2rem );
	}

	/* BORDERED GRID */

	.bordered-grid .item {
		min-height: 20rem;
		padding: 3rem;
	}

	.bordered-grid .item p {
		line-height: 1.4;
		margin-top: 1.2rem;
	}

	/* SHARE LINKS */

	.share-link .icon-wrapper {
		height: 4rem;
		min-width: 4rem;
	}

	.share-facebook svg { width: 1.05rem; }
	.share-twitter svg { width: 1.8rem; }
	.copy-link svg { width: 1.6rem; }

	.share-link + .share-link {
		margin-left: 2.5rem;
	}

	.share-links .share-link-text {
		display: block;
		margin-left: 1.2rem;
	}

	/* SEPARATOR */

	.separator {
		margin: 5rem auto;
	}

	/* BARBA */

	.barba-cover-inner {
		padding-top: 10rem;
	}

	.scrolling-down .barba-cover-inner {
		padding-top: 0;
	}


	/* Structure ------------------------- */

	#site-content {
		min-height: calc( 100vh - 47.3rem );
		padding: 3rem 6rem 4rem 6rem;
	}

	/* Site Header ------------------------- */

	#site-header {
		height: 10rem;
	}
	
	#site-header .header-title svg {
		height: 6rem;
	}

	/* Site Search ------------------------- */

	#site-search .search-field {
		font-size: 2rem;
		padding-left: 3rem;
		height: 9.9rem;
	}

	#site-search .search-untoggle {
		width: 8.8rem;
	}

	#site-search .search-results {
		max-height: calc( 100vh - 10rem );
		padding: 2rem 6rem;
	}


	/* Sidebar ------------------------- */


	.sidebar {
		max-width: 40rem;
		padding: 6rem;
	}

	.sidebar-title {
		margin-bottom: 5rem;
	}

	.sidebar-title svg {
		width: 29rem;
	}

	.sidebar-description,
	ul.main-menu {
		margin-bottom: 4rem;
	}


	/* Word Single ------------------------- */


	.page-header .home-link {
		margin-bottom: 3rem;
	}

	.page-subtitle {
		margin-top: 1.6rem;
	}

	.page-header .share-links {
		margin-top: 2.5rem;
	}

	.word-inner-wrapper {
		margin-top: 5rem;
	}

	.word-video + .article-tools {
		margin-top: 4rem;
	}

	.article-tool + .article-tool {
		margin-left: 3rem;
	}

	.word-content-wrapper,
	.word-video-links,
	.related-words {
		margin-top: 6rem;
	}

	.word-bottom-meta {
		margin-top: 2.8rem;
	}

	.word-links ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.word-links li {
		width: calc( 50% - 1rem );
	}

	.related-words-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		margin: 0 0 -2rem -2rem;
	}

	.related-word {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin: 0 0 2rem 2rem;
		min-height: 20rem;
		width: calc( 50% - 2rem );
	}

	.related-word svg {
		top: 2rem;
		transform: none;
	}

	.related-word-subtitle {
		display: block;
		margin-top: 1.2rem;
	}

	.correction-page-one .comment-form {
		margin-top: 4rem;
	}


	/* Sub Page ------------------------- */
	
	.page #site-content {
		background: url( http://wayback.fauppsala.se:80/wayback/20200215043516/https://www.wpglossary.net/wp-content/themes/wpglossary/assets/images/icon-pattern.svg ) no-repeat center -5rem;
		background-size: contain;
		padding-bottom: 6rem;
		padding-top: 12rem;
	}
	
	ul.post-content-links {
		margin-top: 3rem;
	}
	
	ul.post-content-links.arrow-list-circled li + li {
		margin-left: 3rem;
	}


	/* Changelog ------------------------- */

	.changelog-list a {
		display: flex;
		font-size: 2rem;
		justify-content: space-between;
		padding: 2.4rem 0;
	}

	.changelog-list a > div + div {
		margin: 0 0 0 .5rem;
	}


	/* Pagination ------------------------- */

	.pagination {
		margin-top: 6rem;
	}


	/* Entry Content ------------------------- */

	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6 {
		margin: 5.5rem 0 2.5rem;
	}

	.entry-content h1 { font-size: 3.6rem; }
	.entry-content h2 { font-size: 3.4rem; }
	.entry-content h3 { font-size: 3.2rem; }
	.entry-content h4 { font-size: 2.8rem; }
	.entry-content h5 { font-size: 2.4rem; }

	.entry-content li {
		margin: .8rem 0;
	}

	.entry-content > ul,
	.entry-content > ol {
		margin-bottom: 2.5rem;
		margin-top: 2.5rem;
	}

	.entry-content ul,
	.entry-content ol {
		margin-left: 3.5rem;
	}

	.entry-content pre {
		margin: 2rem -2rem;
		padding: 2rem;
	}

	.entry-content blockquote {
		border-left-width: .15rem;
		padding-left: 3rem;
	}

	.entry-content .alignnone,
	.entry-content .aligncenter {
		margin: 4rem 0;
	}

	.entry-content .alignnone {
		max-width: calc( 100vw - 8rem ) !important;
		position: relative;
			left: calc( 50% - 50vw + 4rem );
	}
	
	.entry-content .wp-caption-text {
		margin: 1.5rem 0 0;
	}

}


@media ( min-width: 750px ) {

	
	/* Structure ------------------------- */
	
	#site-content {
		min-height: calc( 100vh - 18.7rem );
	}
	
	/* Helper Classes ------------------------- */

	/* BORDERED GRID */

	.bordered-grid {
		left: calc( 50% - 50vw + 6rem );
		margin: 6rem 0;
		width: calc( 100vw - 12rem );
	}

	.bordered-grid .item {
		width: 33.33%;
	}

	.bordered-grid .item:nth-child(2n) { border-right-width: .1rem; }
	.bordered-grid .item:nth-child(3n) { border-right-width: 0; }


	/* Entry Content ------------------------- */

	.entry-content p {
		margin-bottom: 2.5rem;
	}


	/* Error 404 ------------------------- */

	.error404 #site-content .page-subtitle {
		margin: 2.2rem 0 2.5rem;
	}

	/* Site Footer ------------------------- */

	#site-footer {
		padding: 3rem;
	}

	#site-footer,
	.first-footer-block,
	.footer-title-menu-block,
	ul.footer-menu {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}

	.footer-title {
		margin: 0;
		max-width: none;
		width: auto;
	}

	.footer-title svg { display: none; }
	.footer-title-text { display: block; }

	ul.footer-menu,
	.cc-logo {
		margin: 0 0 0 2rem;
	}

	ul.footer-menu {
		color: #7D8791;
	}

	ul.footer-menu li + li {
		margin: 0 0 0 2rem;
		position: relative
	}

	ul.footer-menu li + li:before {
		content: "•";
		position: absolute;
			right: 100%;
		text-align: center;
		width: 2rem;
	}

	.second-footer-block {
		margin: 0;
	}

	.hello-dolly {
		align-items: center;
		display: flex;
		flex-direction: row-reverse;
	}

	.hello-dolly .icon-wrapper {
		margin: 0 0 0 1rem;
		width: 2.2rem;
	}

	.hello-dolly .icon-wrapper:before,
	.hello-dolly .icon-wrapper:after {
		content: none;
	}

	.hello-dolly p {
		max-width: 18rem;
		text-align: right;
	}


}



@media ( min-width: 1000px ) {


	/* Document Setup ------------------------------- */

	body {
		padding: 10rem 0 0 32.5rem;
	}


	/* Helper Classes ------------------------- */

	/* BORDERED GRID */

	.bordered-grid {
		left: calc( 50% - 50vw + 22.25rem );
		width: calc( 100vw - 44.5rem );
	}

	.bordered-grid .item {
		width: 50%;
	}

	.bordered-grid .item:nth-child(2n) { border-right-width: 0; }
	.bordered-grid .item:nth-child(3n) { border-right-width: .1rem; }

	/* IMAGE LIGHTBOX */

	#image-lightbox .modal-inner {
		bottom: 4rem;
		left: 4rem;
		right: 4rem;
		top: 4rem;
	}
	
	/* BARBA */

	.barba-cover-inner {
		padding-left: 32.5rem;
	}

	.scrolling-down .barba-cover-inner {
		padding-top: 10rem;
	}

	/* Structure ------------------------- */

	#site-content {
		min-height: calc( 100vh - 20rem );
		padding: 3rem 4rem 4rem 4rem;
	}


	/* Site Header ------------------------------- */

	#site-header {
		display: none;
	}


	/* Site Search ------------------------------- */

	#site-search {
		box-shadow: none;
		position: absolute;
			left: 32.5rem;
			right: 0;
		transform: none;
	}

	.home #site-search {
		position: fixed;
	}

	#site-search .search-form {
		border-bottom: .1rem solid #E1E1E6;
	}

	#site-search .search-untoggle {
		display: none;
	}

	#site-search .search-empty,
	#search-results-cover {
		display: block;
	}

	#site-search .search-empty {
		background: #F1F3F7;
		border-radius: 50%;
		display: flex;
		height: 3.2rem;
		opacity: 0;
		position: absolute;
			right: 4rem;
			top: calc( 50% - 1.6rem );
		transform: scale( .5 );
		transition: all .2s ease-out;
		width: 3.2rem;
	}

	#site-search .search-form.has-text .search-empty {
		cursor: pointer;
		opacity: 1;
		transform: scale( 1 );
	}

	#site-search .search-form.has-text .search-empty:hover {
		transform: scale( 1.25 );
	}

	#site-search .search-empty svg {
		display: block;
		height: auto;
		margin: auto;
		width: 1rem;
	}

	#site-search .search-results {
		border-top: none;
		box-shadow: 0 .1rem 2rem 0 rgba( 45, 55, 65, .15 );
		padding: 3rem 4rem;
	}


	/* Sidebar ------------------------------- */

	.sidebar {
		border-right: .1rem solid #E1E1E6;
		left: 0;
		max-width: 32.5rem;
		padding: 4rem;
		transform: none;
		transition: none;
	}

	.sidebar-title,
	.sidebar-description,
	ul.main-menu {
		margin-bottom: 3rem;
	}

	.sidebar-description {
		font-size: 1.9rem;
	}


	/* Word Single ------------------------------- */

	.word-video + .article-tools {
		margin-top: 3rem;
	}

	.word-content-wrapper .entry-content,
	.word-content-wrapper .word-bottom-meta {
		margin-left: 0;
		margin-right: 0;
	}


	/* Entry Content ------------------------------- */

	.entry-content .alignnone {
		position: static;
		width: calc( 100vw - 32.5rem - 8rem ) !important;
	}



	/* Site Footer ------------------------------- */

	#site-footer {
		padding: 3rem 4rem;
	}

	.footer-title-menu-block {
		align-items: flex-start;
		flex-direction: column;
	}

	ul.footer-menu {
		margin: .5rem 0 0;
	}

	.cc-logo {
		margin: 0 0 0 3rem;
	}


}



@media ( min-width: 1100px ) {


	/* Entry Content ------------------------------- */

	.entry-content .word-preview,
	.entry-content .word-preview-wrapper:before,
	.entry-content .word-preview-wrapper:after {
		display: block;
	}


}



@media ( min-width: 1200px ) {


	/* Document Setup ------------------------------- */

	body {
		padding-left: 40rem;
	}


	/* Helper Classes ------------------------------- */

	/* TEXT SIZES */

	.dfs-14 { font-size: 1.4rem; }
	.dfs-15 { font-size: 1.5rem; }
	.dfs-16 { font-size: 1.6rem; }
	.dfs-17 { font-size: 1.7rem; }
	.dfs-18 { font-size: 1.8rem; }
	.dfs-19 { font-size: 1.9rem; }
	.dfs-24 { font-size: 2.4rem; }
	.dfs-28 { font-size: 2.8rem; }
	.dfs-40 { font-size: 4.0rem; }
	.dfs-48 { font-size: 4.8rem; }
	.dfs-64 { font-size: 6.4rem; }

	/* BORDERED GRID */

	.bordered-grid {
		left: calc( 50% - 50vw + 28rem );
		width: calc( 100vw - 56rem );
	}

	.bordered-grid .item {
		width: 33.33%;
	}

	.bordered-grid .item:nth-child(2n) { border-right-width: .1rem; }
	.bordered-grid .item:nth-child(3n) { border-right-width: 0; }

	/* BARBA */

	.barba-cover-inner {
		padding-left: 40rem;
	}


	/* Structure ------------------------------- */

	#site-content {
		min-height: calc( 100vh - 18.7rem );
	}


	/* Site Search ------------------------------- */

	#site-search {
		left: 40rem;
	}

	#site-search .search-field {
		background: #fff url( http://wayback.fauppsala.se:80/wayback/20200215043516/https://www.wpglossary.net/wp-content/themes/wpglossary/assets/images/icons/spyglass-gray.svg ) no-repeat;
		background-size: 2.4rem;
		background-position: top 50% left 4rem;
		padding-left: 8.9rem;
	}


	/* Sidebar ------------------------------- */


	.sidebar {
		max-width: 40rem;
		padding: 6rem;
	}

	.sidebar-title {
		margin-bottom: 5rem;
	}

	.sidebar-description,
	ul.main-menu {
		margin-bottom: 4rem;
		max-width: 26rem;
	}

	.sidebar-bottom {
		margin-top: 6rem;
	}

	.advert img {
		width: 11.7rem;
	}

	.advert p {
		margin-top: 1.8rem;
	}

	.advert-origin {
		left: 13.5rem;
		top: 3.6rem;
	}


	/* Word Single ------------------------------- */

	.word-inner-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 4rem;
		max-width: 91.9rem;
		position: relative;
	}

	.word-video + .article-tools {
		margin-top: 0;
	}

	.word-inner {
		margin-right: 4rem;
		width: calc( 100% - 30rem );
	}

	.word-video-links {
		margin: 0;
		max-width: 26rem;
		width: 100%;
	}

	.word-video {
		margin: 0 0 3rem;
	}

	.word-video-links {
		display: block;
	}

	.word-video-links li {
		width: 100%;
	}

	.word-video.mobile { display: none; }
	.word-video.desktop { display: block; }

	.word-content-wrapper {
		margin-top: 5rem;
	}


	/* Entry Content ------------------------------- */

	.entry-content .alignnone {
		max-width: 91.9rem !important;
		width: calc( 100vw - 40rem - 8rem ) !important;
	}


	/* Site Footer ------------------------------- */


	.footer-title-menu-block {
		align-items: center;
		flex-direction: row;
	}

	ul.footer-menu,
	.cc-logo {
		margin: 0 0 0 2.5rem;
	}


}


@media ( min-width: 1340px ) {


	/* Word Single ------------------------------- */

	.word-inner {
		margin-right: 6rem;
		width: calc( 100% - 36rem );
	}

	.word-video-links {
		max-width: 30rem;
	}

	.related-words-list {
		margin: 0 0 0 -1rem;
	}

	.related-word {
		margin: 0 0 0 1rem;
		width: calc( 25% - 1rem );
	}

	.related-word-subtitle {
		line-height: 1.4;
	}


	/* Site Footer ------------------------------- */

	.hello-dolly p {
		max-width: 30rem;
	}


}


@media ( min-width: 1400px ) {


	/* Helper Classes ------------------------------- */

	/* BORDERED GRID */

	.bordered-grid {
		left: -17.95rem;
		width: 87.9rem;
	}


	/* Site Footer ------------------------------- */

	.hello-dolly p {
		max-width: 34rem;
	}


}


@media ( min-width: 1440px ) {

	
	.single .wpglossary_word,
	.search-results .arrow-list,
	.home #site-content .arrow-list {
		margin: 0 auto;
		width: 96rem;
	}


}


/* Print Styles ------------------------------- */


@media print {

	body {
		color: #000;
	}

	body,
	#site-content { 
		padding: 0; 
	}

	body,
	.word-inner {
		margin: 0;
	}

	#site-header,
	.barba-cover,
	.sidebar,
	#site-search,
	.home-link,
	.home-link,
	.article-tools,
	.share-links,
	.word-video,
	.word-video-links,
	.related-words,
	.edit-post-link-wrapper,
	#site-footer {
		display: none !important;
	}

	.section-inner,
	.word-inner-wrapper,
	.word-inner,
	.word-content-wrapper {
		max-width: 100% !important;
	}

	.single .wpglossary_word,
	.word-inner {
		width: 100%;
	}

	.word-content-wrapper {
		margin-top: 0;
	}

	.entry-content a[href*="//"]:not([href*="localhost"]):not([href*="wpglossary.net"]):after {
		content: none;
	}

}





/*
     FILE ARCHIVED ON 4:35:16 Feb 15, 2020 AND RETRIEVED FROM THE
     AN OPENWAYBACK INSTANCE ON 19:28:03 Dec 20, 2025.
     JAVASCRIPT APPENDED BY OPENWAYBACK, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
