/*!
Theme Name: asso-jam-in-lyon
Theme URI: https://gwen-m.fr
Author: GwenM
Author URI: https://gwen-m.fr
Description: This theme is based on Underscores theme (https://underscores.me)
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: asso-jam-in-lyon
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

asso-jam-in-lyon is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/

The theme is developped by GwenM, all rights reserved.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- CSS variables
	- Normalize
	- Box sizing
# Base
	- Elements
	- Links
	- Forms
## Layouts
# Components
  - Header
	- Navigation
  - Table of contents
	- Posts and pages
  - Home
  - Stages
  - Présentation
  - Search
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
  - Calendar
  - Sitemap
  - Footer
# Plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments
# Media Queries
  - For tablet
  - For smartphone
    - CSS variables
    - Menu
    - Posts and pages
    - Calendar
    - Footer

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* CSS variables
--------------------------------------------- */
:root {
  --base-url: "https://asso-jil.gwen-m.fr/";

  --main-site-color: white;
  --first-site-color: #41534aff;
  --second-site-color: #e9f4df;
  --third-site-color: #e6f0ec;
  --fourth-site-color: #32373c;
  --default-font-color: #0a070f;
  --contrast-font-color: white;

  --small-padding-margin: 2%;
  --default-padding-margin: 5%;
  --default-page-margin: 0 15%;
  --tablet-page-margin: 0 5%;
  --mobile-page-margin: 0 2%;
  --text-margin: 0 15%;

  --small-font-size: 0.95rem;
  --default-font-size: 1.1rem;
  --small-medium-font-size: 1.2rem;
  --medium-font-size: 1.2rem;
  --medium-contrast-font-size: 1.4rem;
  --big-font-size: 2rem;

  --icon-size: 10px;
  --menu-icon-size: 40px;
}

/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: var(--big-font-size);
  margin: var(--small-font-size) 0;
}
/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: var(--small-medium-font-size);
}
/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: var(--small-medium-font-size);
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup,
.footnote {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup,
.footnote {
  top: -0.5em;
}
/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--default-font-color);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
    Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.5;
  margin-bottom: 0;
}

h1 {
  padding-top: calc(var(--small-padding-margin) * 2);
  margin-top: 0;
  line-height: 2;
  text-align: center;
  background-color: var(--first-site-color);
  text-transform: uppercase;
  color: var(--contrast-font-color);
  background-clip: content-box;
}

h2 {
  margin-top: calc(var(--default-padding-margin) * 1.5);
  font-size: var(--big-font-size);
}

h1 + h2 {
  margin-top: var(--default-padding-margin);
}

.entry-content h2:first-of-type {
  margin-top: var(--default-padding-margin);
}

.entry-content h2:first-child {
  margin-top: 0;
}

.wp-block-column h2 {
  font-size: var(--medium-contrast-font-size);
}

.wp-block-column h2,
.wp-block-column h3 {
  margin-top: 0;
}

h3,
h4,
h5 {
  font-size: var(--medium-contrast-font-size);
}

h3 {
  background: var(--second-site-color);
  padding: var(--small-padding-margin);
}

h2 + h3 {
  margin-top: var(--small-padding-margin);
}

h4 {
  text-transform: uppercase;
  position: relative;
  width: fit-content;
}
h4:has(+ h5) {
  margin-bottom: var(--small-padding-margin);
}

h4:after {
  background: url("https://asso-jil.gwen-m.fr/wp-content/uploads/elements/title-color-element.svg");
  content: "";
  width: 1000%;
  height: calc(var(--icon-size) * 2);
  position: absolute;
  top: calc(50% - var(--icon-size));
  left: calc(100% + var(--icon-size) / 2);
}

h5 {
  text-decoration: underline;
  margin-bottom: var(--small-padding-margin);
  color: var(--first-site-color);
}

h4 + h5 {
  margin-top: 0;
}

p {
  margin-bottom: var(--medium-contrast-font-size);
}
dfn,
cite,
em,
i,
.quote {
  font-style: italic;
}
blockquote {
  margin: var(--default-padding-margin) auto;
  font-style: italic;
  background-color: var(--third-site-color);
  font-size: var(--default-font-size);
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: var(--default-padding-margin);
}

blockquote .wp-block-paragraph {
  width: fit-content;
  margin: 0;
}

address {
  margin: 0 0 var(--medium-contrast-font-size);
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: var(--big-font-size);
}

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Elements
--------------------------------------------- */
body {
  background: #fff;
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin: var(--medium-contrast-font-size) 0;
}

ul {
  list-style: none;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: var(--small-padding-margin);
}
dt {
  font-weight: 700;
}
dd {
  margin: 0 var(--medium-contrast-font-size) var(--medium-contrast-font-size);
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
img {
  height: auto;
  max-width: 100%;
  display: block;
}
figure {
  margin: var(--small-medium-font-size) 0;
}

.wp-block-column figure {
  margin-top: 0;
}
table {
  margin: 0 0 var(--medium-contrast-font-size);
  width: 100%;
}
/* Links
--------------------------------------------- */
a {
  color: #4169e1;
}
a:visited {
  color: #800080;
}
a:hover,
a:focus,
a:active {
  color: #191970;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #32373c;
  border-width: 0;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding-top: calc(0.667em + 2px);
  padding-right: calc(1.333em + 2px);
  padding-bottom: calc(0.667em + 2px);
  padding-left: calc(1.333em + 2px);
  text-decoration: none;
  text-transform: inherit;
  cursor: pointer;
  border-radius: 9999px;
  box-shadow: none;
  font-size: var(--small-font-size);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background-color: var(--first-site-color);
}

h2 button:hover,
h2 input[type="button"]:hover,
h2 input[type="reset"]:hover,
h2 input[type="submit"]:hover,
h3 button:hover,
h3 input[type="button"]:hover,
h3 input[type="reset"]:hover,
h3 input[type="submit"]:hover,
h2 button:active,
h2 input[type="button"]:active,
h2 input[type="reset"]:active,
h2 input[type="submit"]:active,
h3 button:active,
h3 input[type="button"]:active,
h3 input[type="reset"]:active,
h3 input[type="submit"]:active,
h2 button:focus,
h2 input[type="button"]:focus,
h2 input[type="reset"]:focus,
h2 input[type="submit"]:focus,
h3 button:focus,
h3 input[type="button"]:focus,
h3 input[type="reset"]:focus,
h3 input[type="submit"]:focus {
  background: none;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  background-color: var(--first-site-color);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
  margin-right: var(--small-padding-margin);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}

.inf-form > div {
  background: var(--third-site-color);
}

.inf-form > div h4,
.inf-form > div p,
.inf-form > div label {
  color: var(--default-font-color);
}

.inf-form h4:after {
  content: none;
}

.inf-form .inf-submit [type="submit"]:hover,
.inf-form .inf-submit [type="submit"]:active,
.inf-form .inf-submit [type="submit"]:focus {
  background: var(--first-site-color);
}

.inf-form div .inf-input input {
  color: var(--first-site-color);
}

.toggle-input {
  display: none;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Header
--------------------------------------------- */
#masthead {
  position: relative;
  padding-bottom: var(--small-padding-margin);
  z-index: 1;
  background-color: var(--main-site-color);
  background-clip: border-box;
}

.entry-header {
  z-index: 1;
  position: relative;
  background-color: var(--main-site-color);
}
.site-title,
.site-description {
  display: none;
}

#banner-for-responsive-view {
  display: none;
}

#breadcrumb ol {
  display: flex;
  margin-left: 0;
  padding-left: 0;
}

#breadcrumb li {
  list-style-type: none;
  font-size: var(--small-font-size);
  margin-right: calc(var(--small-padding-margin) / 4);
  color: var(--fourth-site-color);
  text-decoration: none;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
  display: flex;
  width: 100%;
  padding: 0 var(--small-padding-margin);
  background-color: var(--default-site-color);
  position: relative;
  justify-content: space-between;
}

.main-navigation .menu-principal-container {
  flex: 1;
}

.main-navigation a {
  padding: calc(var(--small-padding-margin) / 2) 0;
}

.menu-mobile-container {
  display: none;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  border-radius: 10px 0 0 10px;
}

#primary-menu {
  height: 100%;
}

.main-navigation ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--main-site-color);
}

.main-navigation > ul {
  height: 100%;
}
.main-navigation .menu-principal-container ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  flex-direction: column;
  display: flex;
  width: 100%;
}
.main-navigation .menu-principal-container ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li,
.main-navigation .menu-mobile-container ul > li {
  border-bottom: solid 2px var(--third-site-color);
}

.main-navigation .menu-mobile-container ul ul li {
  background-color: var(--default-site-color);
}

.main-navigation ul ul li:last-child {
  border-bottom: none;
}

.main-navigation ul ul a {
  width: 100%;
  text-transform: capitalize;
  padding: var(--default-padding-margin);
}

.main-navigation li {
  position: relative;
  padding: calc(var(--small-padding-margin) / 2) var(--small-padding-margin);
  display: flex;
  align-items: center;
}

.menu-mobile-container li {
  padding: 0;
}

.main-navigation ul li:hover,
.main-navigation ul li:focus,
.main-navigation ul li:active {
  background-color: var(--third-site-color);
}

/* The first li tag of the responsive menu contains only the closing icon whose html is inserted into the WP Menu editor*/
.main-navigation .menu-mobile-container > ul > li:first-child {
  border: none;
}

.menu-mobile-container > ul > li:first-child a {
  padding: calc(var(--icon-size) / 2);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-mobile-container > ul > li:first-child:hover,
.menu-mobile-container > ul > li:first-child:focus,
.menu-mobile-container > ul > li:first-child:active {
  background: none;
}
.menu-principal-container a,
.menu-mobile-container a {
  display: flex;
  text-decoration: none;
  text-transform: uppercase;
  color: #404040;
  font-size: var(--default-font-size);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.menu-principal-container a {
  z-index: 1;
}

.menu-mobile-container a {
  font-size: var(--medium-font-size);
  text-align: left;
  width: 100%;
  height: 100%;
  padding: var(--default-padding-margin);
  padding-right: calc(var(--icon-size) * 4.5);
  display: block;
}

.menu-mobile-container ul ul li a {
  padding-left: calc(var(--default-padding-margin) * 3);
}

.main-navigation .menu-mobile-container ul ul li:hover,
.main-navigation .menu-mobile-container ul ul li:focus,
.main-navigation .menu-mobile-container ul ul li:active {
  font-weight: bold;
}

.main-navigation .menu-principal-container ul li:hover > ul,
.main-navigation .menu-principal-container ul li:focus > ul,
.main-navigation .menu-principal-container ul li:active > ul {
  left: 0;
}

.main-navigation .menu-principal-container ul ul li:hover > ul,
.main-navigation .menu-principal-container ul ul li:focus > ul,
.main-navigation .menu-principal-container ul ul li:active > ul {
  left: 100%;
}

.main-navigation .custom-logo-link {
  width: 20%;
  display: flex;
  align-items: center;
  padding: 0;
}

.main-navigation .custom-logo {
  height: calc(var(--icon-size) * 4);
  width: auto;
  max-width: 100%;
}

.menu-principal-container .menu-item-has-children .toggle-label img {
  display: none;
}

.toggle-label {
  width: var(--menu-icon-size);
  height: var(--menu-icon-size);
  cursor: pointer;
  order: 3;
  position: relative;
}

#menu-icon-container {
  display: none;
}

.menu-item-has-children .toggle-label {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.toggle-label img {
  display: block;
  position: absolute;
  top: var(--icon-size);
  right: var(--icon-size);
  width: calc(var(--icon-size) * 2.5);
  height: auto;
}

#menu-icon-container img,
#menu-icon-container-in-menu img {
  top: 0;
  right: 0;
  width: 100%;
}

#menu-icon-container-in-menu img {
  opacity: 1;
}

.menu-item-has-children .toggle-input:checked ~ a {
  background-color: var(--third-site-color);
}
.main-navigation > .toggle-input:checked ~ .toggle-label .opening-icon,
.menu-item-has-children .toggle-input:checked ~ .toggle-label .opening-icon {
  opacity: 0;
}

.main-navigation > .toggle-input:checked ~ .toggle-label .closing-icon,
.menu-item-has-children .toggle-input:checked ~ .toggle-label .closing-icon {
  opacity: 1;
}

.toggle-input:checked ~ #dark-background-for-menu {
  display: block;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 var(--medium-contrast-font-size);
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

#dark-background-for-menu {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

/* Table of contents
--------------------------------------------- */
#table-of-contents {
  position: sticky;
  box-shadow:
    0 100px 80px rgba(182, 195, 193, 0.13),
    0 22.3363px 17.869px rgba(182, 195, 193, 0.0596107),
    0 6.6501px 5.32008px rgba(182, 195, 193, 0.16);
  top: 0;
  left: 0;
  font-size: var(--small-font-size);
  max-width: 25%;
  height: 100%;
  margin-right: var(--default-padding-margin);
  background-color: var(--main-site-color);
  padding: var(--small-padding-margin) 0;
}

#table-of-contents > * {
  padding: 0 var(--default-padding-margin);
}

#table-of-contents #toc-title {
  clear: both;
  font-size: 1.2rem;
  margin: 0 0 5% 0;
  line-height: 1.5;
  color: #0a070f;
  text-align: left;
  color: #0a070f;
  line-height: 1.5;
  font-weight: normal;
  padding-bottom: 0;
  text-align: center;
}

#table-of-contents ul {
  list-style: disc inside;
}

#table-of-contents li {
  margin-bottom: var(--default-padding-margin);
  font-weight: bold;
}

#table-of-contents li a:hover,
#table-of-contents li a:focus,
#table-of-contents li a:active {
  text-decoration: underline;
}

#table-of-contents a {
  color: var(--default-font-color);
  text-decoration: none;
}

#table-of-contents .sub-menu {
  padding-left: calc(var(--default-padding-margin) * 3);
  list-style: circle;
}

#table-of-contents .sub-menu li {
  font-weight: normal;
}

/* Posts and pages
--------------------------------------------- */
#page{
  position: relative;
}

#primary {
  margin: 0 calc(var(--default-padding-margin) * 3);
}
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

/* Is overflow property useful for Calendar view ?*/
.page-content,
.entry-content,
.entry-summary {
  margin: var(--small-padding-margin) auto;
  overflow: hidden;
}

.page-links {
  clear: both;
  margin: 0 0 var(--medium-contrast-font-size);
}

.block-columns {
  display: flex;
}

.block-columns .block-column {
  flex: 1;
  display: flex;
}

.block-columns .block-column .wp-block-button {
  margin: auto;
}

.wp-block-columns,
.block-columns {
  margin-bottom: 0;
  margin-top: var(--small-padding-margin);
  align-items: center;
}

.entry-content > .wp-block-columns:first-child {
  margin-top: var(--small-padding-margin);
}

.wp-block-list {
  list-style-type: disc;
}

.wp-block-list + p {
  margin-top: var(--default-padding-margin);
}

.wp-block-list .wp-block-list {
  list-style-type: circle;
}

.wp-block-buttons {
  display: flex;
  justify-content: center;
  margin: var(--default-padding-margin);
}

.wp-block-buttons > .wp-block-button {
  margin-right: var(--default-padding-margin);
}

.wp-block-button:last-child {
  margin-right: 0;
}

.wp-block-button a:hover,
.wp-block-button a:focus,
.wp-block-button a:active {
  color: var(--contrast-font-color);
  background-color: var(--first-site-color);
}

.wp-block-button a:visited {
  color: #ffd6ff;
}

.wp-block-columns .wp-block-column:nth-child(2) figure:first {
  width: fit-content;
  margin-left: auto;
}

.wp-block-column ~ .wp-block-column .wp-block-image {
  margin-top: var(--default-padding-margin);
}

.wp-block-paragraph,
.wp-block-accordion {
  margin-bottom: 0;
  margin-top: var(--small-padding-margin);
}

.wp-block-accordion-panel {
  padding: var(--small-padding-margin);
}

.wp-block-column .wp-block-image:first-child,
.wp-block-column .wp-block-paragraph:first-child {
  margin-top: 0;
}

p + .wp-block-list {
  margin-top: var(--small-padding-margin);
}

.wp-element-caption {
  color: var(--fourth-site-color);
  font-size: var(--small-font-size);
}

h2 + .wp-block-columns,
h2 #calendar-section {
  margin-top: var(--small-padding-margin);
}

#primary .wp-block-accordion-heading {
  margin-top: 0;
}

.wp-block-accordion-item {
  margin-bottom: var(--small-padding-margin);
  position: relative;
}

.wp-block-separator {
  border-top: 1px solid var(--third-site-color);
}

.footnote-list {
  font-size: var(--small-font-size);
  padding-left: 0;
  margin-top: var(--default-padding-margin);
}

.list-with-dot {
  list-style-type: disc;
}

.list-with-dot li {
  margin-top: var(--default-padding-margin);
  margin-bottom: var(--default-padding-margin);
}

.list-with-dot li p {
  margin-bottom: 0;
}

.list-with-dot .bold {
  margin-bottom: 0;
}

.toggle-cross {
  display: none;
}
.toggle-cross:checked {
  ~ .cross-icon {
    display: none;
  }
}

.cross-icon-container {
  position: relative;
  margin-bottom: 20px;
}
.toggle-cross-label {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.toggle-cross-label::before {
  background: center / contain no-repeat
    url("https://asso-jil.gwen-m.fr/wp-content/uploads/icons/cross1.svg");
  content: "";
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  background-position: center center;
  background-size: contain;
}

#goes-up {
  display: none;
  bottom: calc(var(--default-padding-margin) * 2);
  right: 0;
  padding: var(--icon-size);
  background: var(--first-site-color);
  border-radius: var(--icon-size);
  z-index: 0;
}

#post-presentation #goes-up,
#post-stages #goes-up {
  display: flex;
}

/*Those pages have a table of content with a sticky position and it doesn't work if the ancestor has overflow hidden set*/
#post-presentation .entry-content,
#post-infos-pratiques .entry-content {
  display: flex;
  overflow: unset;
}

.entry-content #table-of-contents + .wp-block-group,
.entry-content #table-of-contents + .wp-block-group {
  width: 75%;
}

#goes-up a {
  font-size: var(--small-font-size);
  color: var(--main-site-color);
  padding-right: calc(var(--icon-size) * 2);
  position: relative;
  text-decoration: none;
  font-weight: bold;
  width: 100%;
}
#goes-up:hover a,
#goes-up:focus a,
#goes-up:active a {
  text-decoration: underline;
}

#goes-up a::after {
  background: center / contain no-repeat
    url("https://asso-jil.gwen-m.fr/wp-content/uploads/icons/arrow-goes-up.svg");
  content: "";
  width: calc(var(--icon-size) * 1.5);
  height: calc(var(--icon-size) * 1.5);
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - var(--icon-size) * 1.5 / 2);
  right: 0;
}

#goes-up p {
  margin: 0;
}

.alternative-contact {
  margin-top: var(--default-padding-margin);
}

/* Home
--------------------------------------------- */
#post-home h1 {
  display: none;
}

.home #masthead .site-description {
  display: block;
  background: var(--first-site-color) padding-box;
  font-size: var(--medium-font-size);
  color: var(--contrast-font-color);
  padding: var(--small-padding-margin) calc(var(--default-padding-margin) * 3);
  margin: var(--default-padding-margin) 0 0 0;
}
/* Stages
--------------------------------------------- */
.workshop-data {
  font-weight: bold;
  margin-top: 0;
  padding: var(--small-padding-margin) 0 0 0;
  font-style: italic;
}

#post-stages .wp-block-accordion-panel {
  margin-bottom: calc(var(--default-padding-margin) * 3);
}

/* Programmation
--------------------------------------------- */
#workshop {
  margin-top: var(--default-padding-margin);
}

#workshop-list ul {
  padding-left: 0;
}

.block-accordion-heading {
  cursor: pointer;
  /* This height is the same defined size as the .accordion label, which is the user click area*/
  height: calc(var(--medium-contrast-font-size) + 3rem);
  display: flex;
  align-items: center;
  background: var(--second-site-color);
}

.block-accordion-heading h3 {
  margin: 0;
  width: 80%;
  max-height: 100%;
}

.wp-block-accordion-heading__toggle {
  border-radius: 0;
}

.accordion-label {
  width: 100%;
  /* This height is the same defined size as the accordion h3, which is the user click area*/
  height: calc(var(--medium-contrast-font-size) + 3rem);
  position: absolute;
  top: 0;
  left: 0;
}

.workshop-date {
  font-size: var(--default-font-size);
}

.block-accordion-heading__toggle-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  position: absolute;
  top: calc(50% - var(--menu-icon-size) / 2);
  right: 2%;
  width: var(--menu-icon-size);
  height: var(--menu-icon-size);
  font-size: var(--default-font-size);
}

.block-accordion-panel {
  display: none;
  padding: 0 var(--small-padding-margin);
}

.wp-block-accordion-item
  > .toggle-input:not(checked)
  ~ .toggle-label
  .block-accordion-heading__toggle-icon {
  transform: rotate(0);
  transition: transform 0.2s ease-in-out;
}

.wp-block-accordion-item
  > .toggle-input:checked
  ~ .toggle-label
  .block-accordion-heading__toggle-icon {
  transform: rotate(45deg);
  transition: transform 0.2s ease-in-out;
}

.wp-block-accordion-item > .toggle-input:not(checked) ~ .block-accordion-panel {
  display: none;
}

.wp-block-accordion-item > .toggle-input:checked ~ .block-accordion-panel {
  display: block;
}

/* Présentation
--------------------------------------------- */
#post-presentation .wp-block-list + p {
  margin-top: 0;
}

/* Search
--------------------------------------------- */
.search .page-header {
  border-bottom: solid 2px var(--third-site-color);
  margin-bottom: var(--default-padding-margin);
}

.search-terms,
.new-search {
  text-align: center;
  font-size: var(--medium-contrast-font-size);
  font-weight: bold;
}

.result-title {
  font-size: var(--medium-font-size);
  text-decoration: underline;
  color: var(--first-site-color);
}

.new-search-container {
  border-top: solid 2px var(--third-site-color);
  margin: var(--default-padding-margin) auto;
  padding: var(--default-padding-margin) 0;
}

.new-search {
  text-align: left;
}

.search-result {
  margin: var(--small-padding-margin) 0;
}

.result-excerpt p {
  margin-bottom: 0;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 var(--medium-contrast-font-size);
}
.widget select {
  max-width: 100%;
}
/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: var(--medium-contrast-font-size);
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: var(--medium-contrast-font-size);
  display: grid;
  grid-gap: var(--medium-contrast-font-size);
}
.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
  display: block;
}

/* Calendar
--------------------------------------------- */

.agenda-title + p {
  display: none;
}

.page #calendar-section {
  margin-top: var(--small-padding-margin);
}

#calendar .fc-classic-AVD {
  text-transform: capitalize;
}

#calendar .fc-classic-uqo{
  cursor: pointer;
}

#calendar-caption,
#calendar-subscription-link {
  text-align: right;
  margin-bottom: 0;
  display: block;
}

#calendar-subscription-link-container {
  margin-top: 0;
}

#calendar-section .fc-event {
  overflow: hidden;
  padding: var(--small-padding-margin);
}

#calendar-section .fc-h-event {
  border: none;
}

#calendar-section .fc-popover {
  max-width: 100%;
}
#calendar-section a.fc-daygrid-dot-event {
  cursor: pointer;
  border-color: var(--second-site-color);
}

#calendar-section .fc-classic-lNM{
  display: none;
}

#calendar-section .fc-event-title {
  text-decoration: underline;
}

#calendar-section .dotted-event::before {
  content: "\A";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--second-site-color);
  display: inline-block;
}

#calendar-section .event-more-info-container {
  background: var(--third-site-color);
  border-radius: var(--small-padding-margin);
  padding: calc(var(--small-padding-margin)/2);
  text-align: right;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  max-width: 100%;
  display: none;
}

#calendar-section #event-more-info-link {
  overflow-wrap: break-word;
  margin-top: var(--small-padding-margin);
}

#calendar-section #event-more-info-date{
  margin: 0;
}

#calendar-section #event-more-info-schedule {
  margin-bottom: 0;
  margin-top: var(--small-padding-margin);
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Sitemap
--------------------------------------------- */
#toggle-view {
  list-style: none;
  font-family: arial;
  margin: 0;
  padding: 0;
}
#toggle-view h2 {
  border-bottom: 0px;
  margin-top: 15px;
  margin-top: 30px;
}
#toggle-view h2:hover {
  color: #ff0000;
}
#toggle-view li {
  margin: 0px;
  border-bottom: 1px solid #ccc;
  position: relative;
  cursor: pointer;
  list-style-type: none;
  padding-left: 15px;
}
#toggle-view span {
  position: absolute;
  left: 0px;
  top: 0;
  color: #bdbdbd;
  font-size: 28px;
  font-weight: bold;
}
#toggle-view span:hover {
  color: #ff0000;
}
#toggle-view .panel {
  margin: 5px 0;
  display: none;
}

/* Footer
--------------------------------------------- */
footer ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  margin: 0 var(--default-padding-margin);
  padding: var(--small-padding-margin) 0;
}
footer li {
  cursor: pointer;
  position: relative;
  margin-left: calc(var(--icon-size) * 4);
}

footer a {
  color: var(--default-font-color);
  text-decoration: none;
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

footer p {
  margin: 0;
  height: auto;
}

footer li:hover a,
footer li:focus a,
footer li:active a {
  text-decoration: underline;
}

footer #legal-notices a {
  font-size: var(--small-font-size);
  color: var(--fourth-site-color);
}

footer #footer-newsletter a::before {
  background: center / contain no-repeat
    url("https://asso-jil.gwen-m.fr/wp-content/uploads/icons/enveloppe-email.svg");
}

footer #footer-agenda a::before {
  background: center / contain no-repeat
    url("https://asso-jil.gwen-m.fr/wp-content/uploads/icons/calendar.svg");
}

footer #footer-contact a::before {
  background: center / contain no-repeat
    url("https://asso-jil.gwen-m.fr/wp-content/uploads/icons/user-contact.svg");
}

footer #footer-contact a,
footer #footer-newsletter a,
footer #footer-agenda a {
  padding-left: var(--icon-size);
}

footer #footer-contact a::before,
footer #footer-newsletter a::before,
footer #footer-agenda a::before {
  content: "";
  width: calc(var(--icon-size) * 2);
  height: calc(var(--icon-size) * 2);
  display: block;
  position: absolute;
  top: calc(50% - var(--icon-size));
  left: calc(0px - var(--icon-size) * 2);
}

footer #site-info {
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  font-style: italic;
  color: var(--first-site-color);
  margin-left: var(--small-padding-margin);
}

#footer-search {
  padding-right: 0;
  display: flex;
  align-items: center;
}

#footer-search .search-form {
  display: flex;
  align-items: center;
}

#footer-search .search-form {
  display: flex;
  align-items: center;
}

#footer-search .search-submit {
  background: var(--main-site-color);
  padding: 8px;
  border-radius: 50%;
}

#footer-search .search-submit::before {
  background: center / contain no-repeat
    url("https://asso-jil.gwen-m.fr/wp-content/uploads/icons/search.svg");
  content: "";
  width: calc(var(--icon-size) * 2);
  height: calc(var(--icon-size) * 2);
  display: block;
  background-position: center center;
  background-size: contain;
}

#footer-search .search-submit:hover {
  background: #e6f0ec;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}
/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}
/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: var(--medium-contrast-font-size);
  margin-bottom: var(--medium-contrast-font-size);
}
.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: var(--medium-contrast-font-size);
  margin-bottom: var(--medium-contrast-font-size);
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--medium-contrast-font-size);
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
/**
 * For tablet
 */
@media all and (max-width: 992px) {
  #primary {
    margin: 0 calc(var(--default-padding-margin));
  }
  .main-navigation {
    padding-right: 0;
  }
  .main-navigation .menu-principal-container {
    padding-left: var(--default-padding-margin);
  }
  .menu-principal-container a {
    text-align: center;
  }
  .main-navigation .custom-logo-link {
    margin: 1% auto;
  }

  #table-of-contents {
    font-size: var(--small-medium-font-size);
    border-top: 1px solid #e9f4df;
  }

  #toc-title {
    margin-top: var(--default-padding-margin);
  }
}

/**
 * For smartphones
 */

/* CSS variables */
@media all and (max-width: 767px) {
  :root {
    --small-font-size: 0.55rem;
    --default-font-size: 0.75rem;
    --small-medium-font-size: 0.95rem;
    --medium-font-size: 1rem;
    --medium-contrast-font-size: 1.2rem;
    --big-font-size: 1.6rem;
  }

  body {
    position: relative;
  }
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    font-size: var(--small-medium-font-size);
  }
  #masthead {
    position: inherit;
  }

  #primary {
    margin: 0;
  }

  .home #masthead .site-description {
    font-size: var(--medium-font-size);
  }
  #banner-img {
    display: none;
  }
  #banner-for-responsive-view {
    display: block;
  }
  /* Menu */
  .menu-principal-container {
    display: none;
  }
  #menu-icon-container {
    display: block;
  }

  .main-navigation > .toggle-input:checked ~ .menu-mobile-container,
  .menu-item-has-children .toggle-input:checked ~ .sub-menu {
    display: flex;
  }

  .main-navigation {
    justify-content: end;
    z-index: 100;
    border: none;
    padding: calc(var(--icon-size) / 2);
    align-items: center;
    justify-content: space-between;
    position: inherit;
  }

  .main-navigation .menu-mobile-container ul ul {
    display: none;
    flex-direction: column;
    width: 100%;
    z-index: 1000;
  }

  #mobile-menu {
    flex-direction: column;
    width: 100%;
  }

  .menu-mobile-container li {
    position: relative;
    border-bottom: solid 2px var(--third-site-color);
  }

  .menu-mobile-container .menu-item-has-children {
    position: relative;
    flex-direction: column;
  }

  .main-navigation li:last-child,
  .main-navigation .menu-mobile-container ul > li:last-child {
    border-bottom: none;
  }

  .main-navigation .custom-logo-link {
    width: 80%;
    margin: 0;
    margin-right: calc(var(--menu-icon-size)+var(--small-padding-margin));
  }

  #submenu-icon {
    display: block;
    width: 100%;
    flex: 1;
    margin: auto;
  }

  .toggle-label {
    display: block;
  }

  .closed-menu-icon,
  .opening-icon {
    opacity: 1;
  }

  .opened-menu-icon,
  .closing-icon {
    opacity: 0;
  }

  #breadcrumb {
    margin: 0 var(--default-padding-margin);
  }

  /* Posts and pages
--------------------------------------------- */
  .page-content,
  .entry-content,
  .entry-summary {
    margin: var(--small-padding-margin) calc(var(--default-padding-margin));
    flex-direction: column;
  }

  h2 + .wp-block-columns,
  h2 #calendar-section {
    margin-top: var(--default-padding-margin);
  }

  h3 {
    margin-top: calc(var(--default-padding-margin) * 3);
  }

  #table-of-contents {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0;
    margin-bottom: calc(var(--default-padding-margin) * 2);
    padding: var(--default-padding-margin 0);
  }

  .entry-content #table-of-contents + .wp-block-group {
    width: 100%;
  }

  .block-columns .block-column {
    flex: none;
    width: 100%;
  }

  .wp-block-paragraph + .wp-block-heading {
    margin-top: var(--default-padding-margin);
  }

  .entry-content .wp-block-paragraph + h2 {
    margin-top: calc(var(--default-padding-margin) * 4);
  }

  .wp-block-image {
    margin-bottom: var(--default-padding-margin);
  }
  .wp-block-columns .txt-column {
    order: 2;
  }
  .wp-block-columns .img-column {
    order: 1;
  }

  :where(.wp-block-columns.is-layout-flex) {
    gap: 0;
  }

  .wp-block-columns .wp-block-column:nth-child(2) figure {
    margin-left: 0;
  }

  .wp-block-column .wp-block-paragraph:first-child {
    margin-top: 0;
  }

  .wp-block-paragraph {
    margin-top: var(--default-padding-margin);
  }

  #primary .wp-block-accordion-heading {
    padding: var(--small-padding-margin);
    margin-bottom: var(--default-padding-margin);
  }

  .wp-block-accordion-item {
    margin-bottom: var(--default-padding-margin);
  }

  blockquote {
    font-size: var(--medium-font-size);
  }

  #goes-up {
    padding: calc(var(--icon-size) * 1.2);
  }

  #goes-up a {
    font-size: var(--default-font-size);
  }

  /* Calendar
--------------------------------------------- */
  #calendar-section .event-more-info-container {
  }

  /* Footer
--------------------------------------------- */
  footer {
    margin-top: calc(var(--default-padding-margin) * 2);
  }
  footer ul {
    flex-direction: column;
    margin: var(--small-padding-margin) var(--default-padding-margin);
  }

  footer li {
    padding-bottom: var(--small-padding-margin);
  }

  footer a {
    font-size: var(--default-font-size);
  }

  footer #footer-contact {
    order: 1;
  }
  footer #footer-agenda {
    order: 2;
  }
  footer #footer-newsletter {
    order: 3;
  }
  footer #footer-search {
    order: 4;
  }
  footer #legal-notices {
    order: 5;
    padding-top: var(--default-padding-margin);
  }
  footer #site-info {
    order: 6;
    margin-left: calc(var(--icon-size) * 4);
  }
  footer #footer-contact a,
  footer #footer-newsletter a,
  footer #footer-agenda a {
    padding-left: calc(var(--icon-size) * 2.5);
    font-size: var(--small-medium-font-size);
  }
  footer #footer-contact a::before,
  footer #footer-newsletter a::before,
  footer #footer-agenda a::before {
    left: 0;
    top: calc(50%- (var(--icon-size) * 1.5) / 2);
  }
}
