/*
Theme Name: Basique
Theme URI: https://github.com/gcqdme/basique/
Author: Guillaume COQUARD
Author URI: https://www.guizilla.net/
Description: Basique provides a clear, minimalist and highly legible theme.
Version: 1.001
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: basique
Tags: one-column, flexible-header, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, sticky-post, threaded-comments

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
:root {
	--basique-black: rgb(0, 0, 0);
	--basique-dark: rgb(30, 30, 30);
	--basique-dim: rgb(80, 80, 80);
	--basique-light: rgb(150, 150, 150);
	--basique-bright: rgb(230, 230, 230);
	--basique-white: rgb(255, 255, 255);
	--basique-clear: rgba(0, 0, 0, 0);
	--basique-dim-o: rgba(0, 0, 0, .6);
	--basique-whi-o: rgba(255, 255, 255, .95);
	--basique-text: var(--basique-black);
	--basique-font-n: 'Inter UI', -apple-system, BlinkMacSystemFont, Helvetica,
	'Helvetica Neue', 'Segoe UI', 'Fira Code', Arial, sans-serif;
	--basique-font-m: 'Fira Code', Courier, 'Courier New', monospace;
	--basique-font-s: 16px;
	--basique-border-r: 2px;
	--basique-size-w: 80vw;
	--basique-content-size: 800px;
	--basique-marge-w: calc( ( 100vw - var(--basique-size-w) ) / 2);
	--basique-trans: .3s all ease;
	font-family: var(--basique-font-n);
	font-feature-settings: "ss01";
	font-size: var(--basique-font-s);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
	text-rendering: geometricPrecision;
}
/*
*
* TWEAKS
*
*/
.flex {
	display: flex !important;
}

.inline-flex {
	display: inline-flex !important;
}

.block {
	display: block !important;
}

.relative {
	position: relative !important;
}

.absolute {
	position: absolute !important;
}

.no-overflow {
	overflow: hidden !important;
}

.no-border {
	border-width: 0px !important;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.alignright {
	float: right;
	margin: 1em 0 1em 1em !important;
}

.alignleft {
	float: left;
	margin: 1em 1em 1em 0 !important;
}

.aligncenter,
.alignnone {
	display: block;
	margin: 1em auto !important;
	text-align: center;
}
/*
*
* BASICS
*
*/
html {
	box-sizing: border-box;
	line-height: 1.2;
}


body {
	margin: 0;
	padding: 0;
	background-color: var(--basique-white);
	color: var(--basique-text);
}

body,
body * {
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 900;
	margin: .67em 0;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2.5em;
}

h3 {
	font-size: 2em;
}

h4 {
	font-size: 1.5em;
}

h5 {
	font-size: 1em;
}

h6 {
	font-size: .75em;
}

hr {
	box-sizing: content-box;
	height: 0;
	border: 1px solid var(--basique-bright);
	overflow: visible;
}
a,
a:link,
a:visited,
a:active {
	font-weight: bolder;
	text-decoration: none;
	color: var(--basique-text);
	transition: var(--basique-trans);
}

a:hover {
	color: var(--basique-light);
	transition: var(--basique-trans);
}

ul {
	list-style-type: square;
}

abbr,
abbr[title],
acronym {
	border-bottom: 2px dotted var(--basique-bright);
	text-decoration: none;
}

b,
strong {
	font-weight: bolder;
}

tt,
var,
kbd,
samp {
	font-family: var(--basique-font-m);
	font-size: 1em;
}
code,
pre {
	font-family: var(--basique-font-m);
}
pre {
	margin: 1em 0;
	padding: 1em;
	border: 1px solid var(--basique-bright);
	border-radius: var(--basique-border-r);
	overflow-x: scroll;
	overflow-y: hidden;
	overflow-wrap: unset;
	font-size: .8em;
	line-height: 1.1;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	text-align: left;
	background-color: var(--basique-white);
	color: var(--basique-text);
}

:not(pre) > code {
	display: inline;
	margin: 0;
	padding: .1em .1em .05em;
	border: 1px solid var(--basique-bright);
	border-radius: var(--basique-border-r);
	font-size: .9em;
	line-height: 0;
}

small {
	font-size: 80%;
}

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

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

img,
img[class^='wp-image'] {
	display: block;
	height: auto;
	max-width: var(--basique-content-size);
	max-height: calc(100vh - 172px);
	width: auto;
	border: none;
}

blockquote {
	position: relative;
	margin: 3em;
	padding: 10px;
	font-style: italic;
}

blockquote p {
	padding: 0 !important;
}

blockquote::before,
blockquote::after {
	position: absolute;
	font-size: 6em;
	font-style: normal;
	color: var(--basique-light);
	z-index: 0;
}

blockquote::before {
	content: "\201C";
	top: .3em;
	left: -.25em;
	line-height: 0;
}

blockquote::after {
	content: "\201D";
	right: -.25em;
	bottom: -.02em;
	line-height: 0;
}

blockquote cite {
	position: absolute;
	right: 2.5em;
	bottom: 1em;
	font-size: 16px;
	font-weight: 900 !important;
	line-height: .8;
	text-align: right;
}

blockquote cite::before {
	content: "—";
}

dfn {
	border-bottom: 2px solid var(--basique-bright);
}

dt {
	padding-left: .5em;
	font-weight: bold;
}

dd {
	margin-bottom: 1em;
	line-height: 1;
}

details {
	display: block;
}

summary {
	position: relative;
	display: list-item;
	margin-bottom: 1em;
	padding: .5em;
	border: 1px solid var(--basique-bright);
	border-radius: var(--basique-border-r);
	list-style: none;
	outline: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary::before {
	display: inline-block;
	content: "\2B";
	margin-right: .5em;
	font-size: 1.5em;
	font-weight: 500;
	line-height: 1.15;
	vertical-align: top;
	color: var(--basique-dark);
	transition: var(--basique-trans);
	cursor: pointer;
}

details[open] summary::before {
	content: "\2212";
	transition: var(--basique-trans);
}

table {
	margin: 30px auto;
	border-collapse: collapse;
	font-feature-settings: "tnum";
	background-color: var(--basique-white);
}

table caption {
	padding: 2px;
	border: none;
	font-weight: 900;
	color: var(--basique-dark);
}

th,
td {
	padding: .25em .5em;
}

table,
th,
tr,
td,
thead,
tbody,
tfoot {
	border: 1px solid var(--basique-bright);
}

thead {
	color: var(--basique-dark);
}

tfoot {
	color: var(--basique-light);
}

template {
	display: none;
}

[hidden] {
	display: none;
}

.screen-reader-text,
#wp-footer {
	display: none;
}

.bypostauthor {
	visibility: visible;
}
/*
*
* TOGGLE
*
*/
.toggle,
.widget-title {
	font-feature-settings: 'case';
}
.toggle + * ,
.toggle:not(.toggled) + * {
	transition: var(--basique-trans);
}
/*
*
* WORDPRESS MENU
*
*/
.menu {
	display: flex;
	flex-flow: column nowrap;
	margin: 0;
	font-size: 2em;
	font-weight: bold;
}
.menu,
.menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu li {
	position: relative;
}
.menu > li {
	margin-bottom: .5em;
}
.menu .menu-item-has-children ul {
	margin-left: 1em;
	font-size: .9em;
	font-weight: lighter;
}
.menu .toggle {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1.5em;
	font-weight: 100;
	line-height: .8;
	transition: var(--basique-trans);
}
.menu .toggle.toggled {
	transform: rotate(45deg);
	transition: var(--basique-trans);
}
.menu .toggle:hover {
	color: var(--basique-light);
	transition: var(--basique-trans);
	cursor: pointer;
}
.menu .toggle:not(.toggled) + ul {
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--basique-trans);
}
/*
*
* HEADER
*
*/
header {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	padding: 20px;
	width: 100vw;
	background-color: var(--basique-white);
	z-index: 10;
}

header .spacer {
	min-height: 46px;
	min-width: 46px;
}

#header-menu > .toggle,
#header-widget > .toggle {
	margin: 0;
	padding: 0;
	height: 46px;
	width: 46px;
	border: none;
	text-align: center;
	vertical-align: middle;
	color: var(--basique-black);
	transition: var(--basique-trans);
	cursor: pointer;
}

#header-menu > .toggle {
	font-size: 2.875em;
	line-height: .95;
}

#header-widget > .toggle {
	font-size: 2.25em;
	font-weight: 500;
	line-height: 1.2;
}

#header-menu > .toggle:hover,
#header-widget > .toggle:hover {
	color: var(--basique-light);
	transition: var(--basique-trans);
}

#header-menu > .toggle.toggled,
#header-widget > .toggle.toggled {
	color: var(--basique-dark);
	transition: var(--basique-trans);
}

#header-menu > .toggle.toggled {
	transform: rotate(45deg);
}

#header-widget > .toggle.toggled {
	transform: rotate(90deg);
}


#header-menu > .toggle + * {
	position: fixed;
	top: 86px;
	left: 0;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 10vh var(--basique-marge-w);
	height: calc(100vh - 86px);
	width: 100vw;
	background-color: var(--basique-white);
	overflow: auto;
}

#header-menu > .toggle:not(.toggled) + * {
	top: 100%;
	visibility: hidden;
}

#header-menu .menu {
	width: 400px;
	max-width: var(--basique-size-w);
}
/*
*
* BRANDING
*
*/
#branding {
	max-height: 46px;
}

#branding .site-title {
	margin: 0;
	padding: 0 0.8em;
	font-size: 1.75em;
	line-height: 46px;
}

#branding #logo,
#branding #logo img {
	position: relative;
	margin: 0;
	padding: 0;
	height: 46px;
	width: auto;
}
/*
*
* HEADER - WIDGET
*
*/
#header-widget > .toggle + * {
	position: fixed;
	top: 86px;
	left: 0;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 10vh var(--basique-marge-w);
	height: calc(100vh - 86px);
	width: 100vw;
	background-color: var(--basique-white);
	overflow: auto;
}

#header-widget > .toggle:not(.toggled) + * {
	top: 100%;
	visibility: hidden;
}
/*
*
* MAIN SECTION - ARTICLE
*
*/
main {
	margin: 86px 0 0;
	width: 100vw;
}

.fullheight main {
	margin: 0;
}

#content {
	margin: 0 auto;
	max-width: var(--basique-size-w);
}

article[id^='post-'] {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	padding: 0 0 6em;
	width: auto;
}

#post-0 {
	padding-top: 4em;
	padding-bottom: 6em;
}

.blog article[id^='post-'] {
	justify-content: center;
	min-height: calc(100vh - 86px);
}

/*
*
* POST HEADER
*
*/
.post-header {
	justify-content: space-between;
	display: flex;
	margin: 0;
	padding: 0;
	width: 100%;
}

.split article:nth-child(odd) .post-header {
	flex-flow: row-reverse;
}

.split article:nth-child(even) .post-header {
	flex-flow: row;
}

body:not(.split) .post-header,
.post-header.no-split {
	flex-flow: column !important;
}
/*
*
* POST ATTACHMENT
*
*/
.post-attachment {
	flex: 0 0 0;
	align-self: center;
	width: auto;
}

.gallery-item a,
.post-attachment a {
	position: relative;
	display: block;
	line-height: 0;
}

.post-attachment img {
	display: block;
	height: auto;
	max-width: var(--basique-size-w);
	max-height: calc(100vh - 172px);
	width: auto;
}

.split .post-attachment img {
	height: auto;
	max-width: calc(1 / 2 * var(--basique-size-w));
	max-height: 50vh;
	width: auto;
	line-height: 0;
}

.gallery-item a::before,
.post-attachment a::before {
	content: "\2B";
	box-sizing: border-box;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transform-origin: center center;
	transform: scale(.7) rotate(5deg);
	font-size: 5em;
	font-weight: normal;
	vertical-align: middle;
	background-color: var(--basique-whi-o);
	color: var(--basique-black);
	-webkit-backdrop-filter: blur(0);
	-moz-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
	opacity: 0;
	transition: var(--basique-trans);
}

.gallery-item a:hover::before,
.post-attachment a:hover::before {
	transform: scale(1) rotate(0);
	-webkit-backdrop-filter: blur(10px);
	-moz-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 1;
	transition: var(--basique-trans);
}

a.no-thumbnail img {
	min-width: calc(1 / 2 * var(--basique-size-w));
	border: 1px solid var(--basique-bright);
}

/*
*
* POST INFO
*
*/
.post-info {
	display: flex;
	flex: 1 1 auto;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	padding: 2em;
	text-align: center;
}

.page .post-info,
.single .post-info {
	margin: 2em 0;
}

/*
*
* POST TITLE
*
*/
.post-title {
	font-weight: 900;
	text-align: center;
}

.post-title:first-child {
	margin-top: 0;
}

.post-title .archive-details {
	font-size: .4em;
	color: var(--basique-light);
}

/*
*
* POST STICKY
*
*/
.post-sticky,
.sticky .post-sticky {
	padding: .15em 0 .075em .25em;
	border-radius: var(--basique-border-r);
	font-weight: 900;
	letter-spacing: .25em;
	text-transform: uppercase;
	background-color: var(--basique-black);
	color: var(--basique-white);
}

/*
*
* POST META
*
*/
.post-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	line-height: 2.2em;
}

.post-meta > span:not(:last-child) {
	margin-right: 15px;
}

.post-meta * ,
.post-meta a {
	font-weight: 600;
	color: var(--basique-light);
}

.post-meta a:hover {
	color: var(--basique-dark);
}

.post-tags > a::before {
	content: "\23";
}

/*
*
* POST CONTENT & CONTENT-LIKE SECTION
*
*/
.archive-meta,
.post-summary,
.post-content {
	width: 800px;
	max-width: var(--basique-size-w);
	font-size: 1.1em;
	line-height: 1.75;
	word-spacing: 0.9pt;
	word-wrap: break-word;
}

p:not(:first-child) {
	margin: 2em 0;
}

.archive-meta > :first-child {
	margin: 0;
}

.post-content > :first-child {
	margin-top: 0;
}
.post-content.centered {
	text-align: center;
}
/*
*
* WORDPRESS CAPTION
*
*/
.wp-caption {
	position: relative;
	margin: 0;
	padding: 0;
	max-width: var(--basique-content-size);
	width: auto;
}
.wp-caption img {
	display: block;
	height: auto;
	max-width: var(--basique-content-size);
	max-height: calc(100vh - 172px);
	width: auto;
}

.wp-caption-text {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 10%;
	width: 100%;
	font-weight: bold;
	vertical-align: middle;
	background-color: var(--basique-dim-o);
	color: var(--basique-white);
	-webkit-backdrop-filter: blur(0px);
	-moz-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	opacity: 0;
	transition: var(--basique-trans);
}

.wp-caption:hover .wp-caption-text {
	height: 100%;
	-webkit-backdrop-filter: blur(10px);
	-moz-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 1;
	transition: var(--basique-trans);
}
/*
*
* WORDPRESS GALLERY
*
*/
.gallery {
	display: grid;
	grid-auto-flow: dense;
	grid-gap: 20px;
	align-items: center;
	justify-content: center;
	margin: 2em 0;
	width: auto;
}

.gallery.gallery-columns-1 {
	grid-template-columns: 1fr;
}

.gallery.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 15px;
}

.gallery.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 15px;
}

.gallery.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
	grid-gap: 10px;
}

.gallery.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
	grid-gap: 10px;
}

.gallery.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
	grid-gap: 5px;
}

.gallery-item,
.gallery-icon {
	margin: 0;
	padding: 0;
	line-height: 0;
}

.gallery .gallery-item {
	position: relative;
	justify-self: center;
	list-style: none;
}

.gallery a {
	box-sizing: border-box;
	position: relative;
	display: block;
}

.gallery-item img {
	max-width: 100%;
	height: auto;
}

.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 1em .5em;
	width: 100%;
	font-size: 0;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	background-color: var(--basique-dim-o);
	color: var(--basique-white);
	opacity: 0;
	transition: var(--basique-trans);
}

.gallery-item:hover .gallery-caption {
	font-size: .8em;
	opacity: 1;
	transition: var(--basique-trans);
}

.gallery-display {
	position: fixed;
	top: 100%;
	left: 0;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 86px 0;
	height: 100vh;
	width: 100%;
	border: none;
	overflow-x: scroll;
	overflow-y: hidden;
	background-color: var(--basique-whi-o);
	color: var(--basique-text);
	-webkit-backdrop-filter: blur(10px);
	-moz-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: var(--basique-trans);
}

.info-display::before {
	content: "\2190\20swipe\20horizontally\20\2192";
}

.info-display {
	position: fixed;
	top: 100%;
	left: 2em;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 86px;
	width: auto;
	font-size: 1em;
	font-weight: 900;
	line-height: 86px;
	vertical-align: middle;
	transition: var(--basique-trans);
}

.close-display::before {
	content: "\D7";
}

.close-display {
	position: fixed;
	top: 100%;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 86px;
	width: 86px;
	font-size: 3em;
	transition: var(--basique-trans);
	cursor: pointer;
}

.close-display:hover {
	color: var(--basique-light);
	transition: var(--basique-trans);
}

.gallery-display.toggled,
.gallery-display.toggled .info-display,
.gallery-display.toggled .close-display {
	top: 0;
	transition: var(--basique-trans);
	z-index: 1000;
}

.item-display {
	flex: 1 0 auto;
	align-self: center;
	padding: 0 10vw;
	width: 100vw;
	border: none;
	text-align: center;
}

.item-display img {
	display: block;
	margin: 0 auto;
	--basique-content-size: 80vw;
	height: auto;
	max-width: var(--basique-content-size);
	max-height: calc(100vh - 172px);
	width: auto;
	line-height: 0;
}
/*
*
* COMMENTS
*
*/
#comments,
#respond {
	margin: 6em 0 0;
}

#comments > :first-child,
.comments > ul > :first-child,
#respond > :first-child {
	margin-top: 0;
}

#comments {
	width: 500px;
	max-width: var(--basique-size-w);
}

#cancel-comment-reply-link {
	display: block;
	font-size: .625em;
	text-align: center;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.form-submit {
	display: flex;
	flex-flow: column nowrap;
	margin: 2em 0;
	padding: 0;
}

.comments ul {
	display: flex;
	flex-flow: column nowrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.comments li {
	display: block;
}

.comments li:not(:last-child) {
	margin: 0 0 2em;
}

.comment-body {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	padding: 1em;
	border: 1px solid var(--basique-bright);
	border-radius: var(--basique-border-r);
}

.comment-meta,
.comment-author,
.comment-metadata,
.comment-content,
.comment-body .reply {
	display: flex;
	align-content: center;
	align-items: center;
}

.comment-meta > * {
	flex: 1 0 0;
}

.comment-author > * {
	margin-right: .5em;
}

.comment-metadata {
	flex: 0 0 33%;
	justify-content: flex-end;
	font-size: .75em;
	font-weight: normal;
	text-align: right;
}

.comment-metadata > :first-child:not(:only-child) {
	margin-right: .5em;
}

.says {
	display: none;
}

.comment-content {
	padding: 1em 0;
}

.comment .children {
	margin: 2em 0 0 2em;
}

.comment-awaiting-moderation {
	position: absolute;
	top: -2em;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	background-color: var(--basique-whi-o);
	-webkit-backdrop-filter: blur(5px);
	-moz-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
/*
*
* SEARCH
*
*/
.search-form {
	display: flex;
	justify-content: center;
}

input[type='search'] {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	-ms-appearance: none !important;
	-o-appearance: none !important;
	margin-top: .5em;
	margin-bottom: .5em;
}

#search {
	min-width: 100px;
}

#searchsubmit {
	margin: .5em 0 .5em .5em;
}
/*
*
* WORDPRESS WIDGETS
*
*/
.widget-container {
	width: 400px;
	max-width: var(--basique-size-w);
}

#header-widget .widget-container:not(:first-child) {
	margin-top: 6em;
}

.widget-container > * {
	margin-left: auto;
	margin-right: auto;
}
.widget-title {
	position: relative;
	margin: 0 0 .5em;
	font-size: 2em;
	text-align: left;
}
.widget-title::before {
	content: "\2013\20";
	font-feature-settings: 'case';
	font-weight: 100;
	color: var(--basique-dim);
	transition: var(--basique-trans);
}
.widget-title:hover::before {
	color: var(--basique-text);
	cursor: pointer;
	transition: var(--basique-trans);
}

.widget-title.toggled::before {
	content: "\2B\20";
	margin-left: -.075em;
	margin-right: -.075em;
	transition: var(--basique-trans);
}

.widget-title.toggled + * {
	display: block;
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--basique-trans);
}
.widget-title + * {
	transition: var(--basique-trans);
}

.widget-container ul {
	padding: 0;
	list-style: none;
}

.widget-container:not(.widget_nav_menu) > ul  {
	font-size: 1.3em;
}
.widget-container:not(.widget_nav_menu) > ul ul  {
	padding-left: 1em;
}

/* RECENT ENTRIES WP WIDGET */
.widget_recent_entries .post-date {
	color: var(--basique-light);
}

/* CALENDAR WP WIDGET */
.widget_calendar .calendar_wrap * {
	border: none;
	text-align: center;
}


/* RSS WP WIDGET */
.widget_rss .widget-title .rsswidget:first-child {
	display: none;
}
.widget_rss .rsswidget:last-child {
	position: relative;
}
.widget_rss .rsswidget:last-child::before {
	display: inline-block;
	content: "RSS";
	margin: .35em .5em 0 0;
	padding: .15em .3em;
	border-radius: var(--basique-border-r);
	font-size: .525em;
	font-weight: bold;
	vertical-align: top;
	background-color: orange;
	color: var(--basique-white);
}
.widget_rss li {
	margin-bottom: .5em;
}
.widget_rss li .rss-date {
	color: var(--basique-light);
}
.widget_rss .rssSummary,
.widget_rss cite {
	font-size: .8em;
	color: var(--basique-dim);
}

/* AUDIO WP WIDGET */
.widget_media_audio * {
	font-family: var(--basique-font-n) !important;
}
.mejs-inner * {
	border-radius: 0px !important;
}
.mejs-controls button:hover {
	background-color: var(--basique-dim);
}
.mejs-controls .mejs-time-rail .mejs-time-current {
	background-color: grey !important;
}
/*
*
* PAGINATION
*
*/
.pagination {
	display: flex;
	justify-content: center;
	margin: 6em 0 0;
	max-width: var(--basique-size-w);
	font-size: 16px;
	line-height: 1;
}

.pagination > :last-child:not(:only-child) {
	text-align: right;
}

.pagination > *:not(:only-child):not(:last-child) {
	margin-right: .5em;
}

.pagination > * ,
.pagination > * a {
	display: inline-flex;
	flex: 0 1 auto;
	align-items: center;
}

.pagination > .nav-next,
.pagination > .nav-next a {
	text-align: right;
}

.nav-previous .meta-nav {
	padding-right: 5px;
}

.nav-next .meta-nav {
	padding-left: 5px;
}
/*
*
* FOOTER
*
*/
#site-footer {
	display: flex;
	flex-flow: column nowrap;
	margin: 6em auto 3em;
	padding: 0 var(--basique-marge-w);
	width: 100vw;
}

#site-footer > :not(:last-child) {
	margin-bottom: 3em;
}

#footer-widgets .widget-container {
	max-width: 200px;
}

#footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, 200px);
	grid-gap: 3em;
	justify-content: center;
}

#footer-menu ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1em;
	font-weight: initial;
	line-height: 3em;
}
#footer-menu li:not(:last-child) {
	margin-right: 1em;
}

#site-description {
	margin-bottom: 2em !important;
	text-align: center;
}

#copyright {
	text-align: center;
	color: var(--basique-dim);
}

/*
*
* FORMS
*
*/
button,
input,
optgroup,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	margin: 0;
	padding: .5em;
	outline: none;
	font-family: inherit;
	font-size: 100%;
	letter-spacing: normal;
	line-height: 1;

}

form {
	margin: auto;
}

label {
	margin-top: .5em;
	color: var(--basique-dim);
}

input,
input[type],
button,
select,
.button a,
:not(span)[class$='-link']:not(.custom-logo-link),
[id$='-link']:not(.custom-logo-link) {
	padding: .5em;
	max-width: 500px;
	border-radius: var(--basique-border-r);
	transition: var(--basique-trans);
}

input,
input[type],
select,
textarea {
	border: 1px solid var(--basique-bright);
	background-color: var(--basique-white);
	color: var(--basique-black);
}

input:focus,
input[type]:focus,
select:focus,
textarea:focus {
	border-color: var(--basique-dark);
	transition: var(--basique-trans);
}

::-webkit-input-placeholder {
  line-height: 1.2;
}

button,
input[type=button],
input[type=submit],
input[type=reset],
.button a,
a[class$='-link']:not(.custom-logo-link),
a[id$='-link']:not(.custom-logo-link) {
	border: 1px solid var(--basique-black);
	font-weight: 900;
	background-color: var(--basique-black);
	color: var(--basique-white);
	cursor: default;
}

[type='button']:hover,
[type='submit']:hover,
[type='reset']:hover,
:not(span)[class$='-link']:not(.custom-logo-link):hover,
a[id$='-link']:not(.custom-logo-link):hover,
button:hover,
.button a:hover {
	border-color: var(--basique-black);
	background-color: var(--basique-white);
	color: var(--basique-black);
	transition: var(--basique-trans);
}

[type='button']:focus,
[type='button']:active,
[type='submit']:focus,
[type='submit']:active,
[type='reset']:focus,
[type='reset']:active,
:not(span)[class$='-link']:not(.custom-logo-link):focus,
:not(span)[class$='-link']:not(.custom-logo-link):active,
[id$='-link']:not(.custom-logo-link):focus,
[id$='-link']:not(.custom-logo-link):active,
button:focus,
button:active,
.button a:focus,
.button a:active {
	border-color: var(--basique-light);
	background-color: var(--basique-white);
	color: var(--basique-light);
	transition: var(--basique-trans);
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

select {
	position: relative;
	padding: .5em 1em .5em .5em ;
	width: auto;
	background-image: url( 'assets/m/dropdown-icon.svg' );
	background-position: right center;
	background-size: auto 50%;
	background-repeat: no-repeat;
}

select option {
	position: relative;
	padding: .1em 1em;
}

textarea {
	width: auto;
	max-width: var(--basique-size-w);
	border-radius: var(--basique-border-r);
	resize: vertical;
	overflow: auto;
}

[type='checkbox']::-ms-check {
	border-color: var(--basique-clear);
	color: var(--basique-dark);
}

[type='checkbox'],
[type='radio'] {
	position: relative;
	display: inline-block;
	margin-right: 4px;
	padding: 0 !important;
	height: 18px !important;
	width: 18px !important;
	border: 1px solid var(--basique-bright);
	background-color: var(--basique-white);
	color: var(--basique-dark);
	vertical-align: -2px;
}

[type='radio'] {
	border-radius: 1em !important;
}

[type='checkbox']::before {
	position: absolute;
	content: "✓";
	top: 50%;
	right: 50%;
	transform: translate( 50%, -50% );
	font-size: .9em;
	font-weight: 900;
	line-height: 0;
	visibility: hidden;
}

[type='radio']::before {
	position: absolute;
	content: "";
	height: 50%;
	width: 50%;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	border-radius: 1em;
	background-color: var(--basique-dark);
	visibility: hidden;
}

[type='checkbox']:checked::before,
[type='radio']:checked::before {
	visibility: visible;
}

[type='checkbox']:disabled {
	border-color: var(--basique-bright);
	background-color: var(--basique-bright);
	color: var(--basique-dark);
}

[type='range'] {
	padding: .2em inherit;
	border-radius: 1em !important;
}

[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	border-radius: 1em;
	background: var(--basique-bright);
}

[type=range]:focus::-webkit-slider-runnable-track {
	background: var(--basique-dark);
}

[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	-o-appearance: none;
	height: 13px;
	width: 13px;
	margin-top: -4px;
	border: 1px solid var(--basique-dark);
	border-radius: 1em;
	background: var(--basique-white);
}

[type=range]::-moz-focus-outer {
	border: none;
}

[type=range]::-moz-range-track {
	height: 5px;
	border-radius: 1em;
	background: var(--basique-bright);
}

[type=range]:focus::-moz-range-track {
	background: var(--basique-dark);
}

[type=range]::-moz-range-thumb {
	-moz-appearance: none;
	height: 13px;
	width: 13px;
	margin-top: -4px;
	border: 1px solid var(--basique-dark);
	border-radius: 1em;
	background: var(--basique-white);
}

[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	border-radius: 3px;
}

[type=range]::-ms-fill-lower {
	border: 2.5px solid rgb(120, 120, 120);
	border-radius: 3px;
	background-color: rgb(120, 120, 120);
}

[type=range]::-ms-fill-upper {
	border: 2.5px solid rgb(120, 120, 120);
	border-radius: 3px;
	background-color: rgb(120, 120, 120);
}

[type=range]::-ms-thumb {
	height: 13px;
	width: 13px;
	margin-top: .75px;
	border: 1px solid rgb(120, 120, 120);
	border-radius: 1em;
	background: #rgb(255, 255, 255);
}

[type=range]::-ms-fill-lower:focus {
	background-color: rgb(120, 120, 120);
}

[type=range]::-ms-fill-upper:focus {
	background-color: rgb(120, 120, 120);
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

fieldset {
	padding: .35em .75em .625em;
	border: 1px solid var(--basique-bright);
	border-radius: var(--basique-border-r);
}

legend {
	display: table;
	margin: 0 2px;
	padding: 5px 20px;
	max-width: 100%;
	border: 1px solid var(--basique-bright);
	border-radius: var(--basique-border-r);
	text-align: center;
	white-space: normal;
	color: inherit;
}

progress {
	vertical-align: baseline;
}
/*
*
* MEDIA QUERIES
*
*/
@media (max-width: 1000px) {
	img,
	img[class^='wp-image'],
	.wp-caption {
		--basique-content-size: 80vw;
	}
}

@media (max-width: 900px) {
	.post-header {
		flex-flow: column nowrap !important;
	}

	.split .post-attachment img,
	.post-attachment img {
		max-width: var(--basique-size-w);
		max-height: calc(100vh - 192px);
	}
	a.no-thumbnail img {
		min-width: var(--basique-size-w);
	}

	.gallery {
		grid-template-columns: 1fr 1fr !important;
	}
}

@media (max-width: 667px) {
	.gallery {
		grid-template-columns: 1fr !important;
	}
}
