/*
Theme Name: TELAMON - Espace protégé
Author: tsjm
Text Domain: custom-theme
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Layout
6.0 Styles
6.01 Commons
  6.01.1 SVG
  6.01.2 Utils
  6.01.3 Buttons
  6.01.4 Forms
  6.01.5 Sliders
  6.01.6 Editor
  6.01.7 Page common
6.02 Header
6.03 Footer
6.04 Login
6.05 App



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


:root {
    --scrollbar-width: 0px;
    --admin-bar-height: 0px;
    --viewport-height-diff: 0px;

    --site-header-height-init: 150px;
    --site-header-height: 72px;
    --site-mobile-header-height: 60px;

    --site-gutter: 50px;
}

@media screen and (max-width: 767px) {
    :root {
        --site-gutter: 20px;
    }
}


/*--------------------------------------------------------------
1.0 Normalize
Styles based on normalize.css v8.0.0 | 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;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
 * 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;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* 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;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * 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;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
 * 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 {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

/* 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;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    /* 1 */
    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;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/**
 * 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;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * 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;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/**
 * 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;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* 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;
}

/*--------------------------------------------------------------
2.0 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;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}
@media screen and (max-width: 767px) {
    /* Text meant only for screen readers. */
    .screen-reader-text--mobile {
        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;
        /* Many screen reader and browser combinations announce broken words as they would appear visually. */
    }

    .screen-reader-text--mobile: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: 14px;
        font-size: 0.875rem;
        font-weight: bold;
        height: auto;
        left: 5px;
        line-height: normal;
        padding: 15px 23px 14px;
        text-decoration: none;
        top: 5px;
        width: auto;
        z-index: 100000;
        /* Above WP toolbar. */
    }
}


/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
3.0 Alignments
--------------------------------------------------------------*/
/* legacy */

/*--------------------------------------------------------------
4.0 Clearings
--------------------------------------------------------------*/
/* legacy */

/*--------------------------------------------------------------
5.0 Layout
--------------------------------------------------------------*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}
.layout-width {
    padding: 0 var(--site-gutter);
    margin: 0 auto;
    max-width: 1600px;
}
.content-width {
    max-width: 1500px;
    margin: 0 auto;
}
.site {
    display: flex;
    flex-wrap: wrap;
}
.site__actions {
    flex: 1 1 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 30px;
    padding-bottom: 30px;
}
.site__actions a {
    color: #FFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
}


.site-content {
    position: relative;
    z-index: 10;
    background: transparent;
}
.admin-bar .site {
    padding-bottom: 32px;
}
html[lang] {
    margin-top: 0!important;
}
#wpadminbar {
    top: auto;
    bottom: 0;
}
.page-body__content {
    position: relative;
}
/* Fake element to get margin collapsing working */
.page-body__content:after {
    content: '';
    display: block;
    margin-top: 50px;
}
.page-body__content > :last-child {
    position: relative;
    z-index: 10;
}

.print-btn {
    background: none;
    border: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .site-content {
        position: relative;
        max-width: none;
        flex: 1 1 calc(100% - 344px);

        border-radius: 0 0 40px 40px;
        padding: 80px 72px;
        min-height: calc(100vh - 81px - 61px);
        overflow: hidden;
        --current-menu-item-offset: 0px;
    }

    .site-content::before {
        content: '';
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        width: 25px;
        -webkit-mask: url('assets/images/telamon-mask.svg') 0 calc(50% + var(--current-menu-item-offset)) / auto 4320px no-repeat;
        mask: url('assets/images/telamon-mask.svg') 0 calc(50% + var(--current-menu-item-offset)) / auto 4320px no-repeat;
        background: #2F3F3B;
    }

    .site-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 25px;
        right: 0;
        bottom: 0;
        z-index: -1;
        background: #2F3F3B;

    }

}
@media screen and (max-width: 991px) {
    #wpadminbar {
        display: none!important;
    }
    .site {
        display: block;
    }
    .site__actions {
        padding: 0;
    }
    .site__actions a:not(.screen-reader-text) {
        display: none;
    }

    .site-content {
        padding-top: 25px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .page-body__content > h1 {
        display: none;
    }
}


/*--------------------------------------------------------------
6.0 Styles
--------------------------------------------------------------*/


/*- 6.01 Commons */
body {
    font-family: "Sora", Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.4;
    font-size: 0.9375rem;
    color: #FFF;

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    background: #3C504B;
}

@media screen and (max-width: 991px) {
    body {
        background: #2F3F3B;
    }
}

/*- 6.01.1 SVG */
/**
 * Generated from https://icomoon.io/app/#/select/font
 * To add a new icon:
 * - add the new svg file to the folder assets/images/svgfont/
 * - upload all svg files from assets/images/svgfont/ on Icomoon app
 * - Download the the generated font package
 * - Replace the fonts files in the assets/fonts/ folder
 * - Update the CSS below
 */
@font-face {
    font-family: 'icomoon';
    src: url('assets/fonts/icomoon.ttf?bpw2pn4') format('truetype'),
    url('assets/fonts/icomoon.woff?bpw2pn4') format('woff'),
    url('assets/fonts/icomoon.svg?bpw2pn4#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-external:before {
    content: "\e900";
}
.icon-doc-filled:before {
    content: "\e901";
}
.icon-printer:before {
    content: "\e902";
}
.icon-logout:before {
    content: "\e903";
}
.icon-menu-caret:before {
    content: "\e904";
}
.icon-caret:before {
    content: "\e905";
}
.icon-download:before {
    content: "\e906";
}
.icon-checked:before {
    content: "\e907";
}
.icon-document:before {
    content: "\e908";
}
.icon-minus:before {
    content: "\e912";
}
.icon-plus:before {
    content: "\e913";
}
.icon-close:before {
    content: "\e914";
}
.icon-account:before {
    content: "\e915";
}
.icon-quote:before {
    content: "\e916";
}
.icon-burger:before {
    content: "\e917";
}




/*- 6.01.2 Utils */


.reset-nav {
    padding: 0;
    margin: 0;
}

.reset-nav li {
    display: block;
}

.reset-nav a {
    text-decoration: none;
}

.js-clickable-block {
    cursor: pointer;
}

.pop-up__overlay {
    position: fixed;
    z-index: 4000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 80, 75, 0.9);
    color: #FFF;
    padding: 55px 0 50px;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.pop-up__overlay.is-visible {
    opacity: 1;
}
.pop-up__close-btn {
    background: transparent;
    padding: 0;
    color: inherit;
    position: absolute;
    top: 50px;
    right: var(--site-gutter);
    border: 1px solid;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.pop-up__content {
    position: relative;
}

.photo-gallery__pop-up-slider .pop-up__content,
.photo-gallery__slider,
.photo-gallery__slider .slick-list,
.photo-gallery__slider .slick-track,
.photo-gallery__slider .slick-slide > div,
.photo-gallery__slider .slick-slide img {
    height: 100%;
}
.photo-gallery__slider {
    max-width: 1152px;
    margin: 0 auto;
}
.photo-gallery__slider-controls .slick-arrow {
    border-color: currentColor;
    right: var(--site-gutter);
}
.photo-gallery__slider .slick-slide > div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-gallery__slider .slick-slide img {
    object-fit: contain;
    border-radius: 40px;
    width: auto !important;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

/*- 6.01.3 Buttons */
/* See editor-styles.css: .wp-block-button__link */

/*- 6.01.4 Forms */

#page input[type="color"],
#page input[type="date"],
#page input[type="datetime-local"],
#page input[type="datetime"],
#page input[type="email"],
#page input[type="month"],
#page input[type="number"],
#page input[type="password"],
#page input[type="search"],
#page input[type="tel"],
#page input[type="text"],
#page input[type="time"],
#page input[type="url"],
#page input[type="week"],
#page select,
#page textarea,
#page .chosen-container a.chosen-single {
    border: 1px solid;
    height: 55px;
    color: #FFF;
    border-radius: 10px;
    background: transparent;
    padding: 18px 15px;
    font-size: 0.9375rem;
    font-weight: inherit;
    width: 100%;
}
#page input[type="color"]:focus,
#page input[type="date"]:focus,
#page input[type="datetime-local"]:focus,
#page input[type="datetime"]:focus,
#page input[type="email"]:focus,
#page input[type="month"]:focus,
#page input[type="number"]:focus,
#page input[type="password"]:focus,
#page input[type="search"]:focus,
#page input[type="tel"]:focus,
#page input[type="text"]:focus,
#page input[type="time"]:focus,
#page input[type="url"]:focus,
#page input[type="week"]:focus,
#page select:focus,
#page textarea:focus {
    border-color: inherit;
    outline: 0;
}

#page input::placeholder,
#page textarea::placeholder {
    opacity: 1;
    font-weight: inherit;
    color: inherit;
}

#page textarea {
    resize: none;
    height: 191px;
}
#page .chosen-container a.chosen-single {
    box-shadow: none;

}
#page .chosen-container a.chosen-single span {
    line-height: inherit;
}

#page .chosen-container-single .icon-btn-arrow:before {

}
#page .chosen-container .chosen-drop {
    box-shadow: none;
}
#page .chosen-results li {
}
#page .chosen-results li.result-selected,
#page .chosen-results li.highlighted {

}

#page .form input[type="checkbox"] {
    /* Like .screen-reader-text */
    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;
}
#page .form input[type="checkbox"] + label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
#page .form input[type="checkbox"] + label .icon-checked {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    margin-top: 2px;
    border-radius: 5px;
    border: 1px solid #3C504B;
    font-size: 11px;
    color: transparent;
    transition: 0.3s ease-out;
}
#page .form input[type="checkbox"]:checked + label .icon-checked {
    background-color: #3C504B;
    color: #FFF;
}



/*- 6.01.5 Sliders */
.slick-slide:focus {
    outline: none;
}

.slick-arrow {
    background: none;
    cursor: pointer;
    line-height: 1;
    z-index: 100;
    transition: 0.3s ease-in-out;

    position: absolute;
    bottom: 0;
    right: 0;
    border: 1px solid #3C504B;
    border-radius: 10px;
    font-size: 24px;
    padding: 0.625em;
    color: inherit;

    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-arrow.slick-disabled {
    color: rgba(60, 80, 75, 0.5);
    cursor: default;
}
.slick-arrow[class*="next"] {
    border-left-width: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-left: 28px;
}
.slick-arrow[class*="prev"] {
    border-right-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-right: 28px;
    margin-right: 57px;
}
.slick-arrow:hover {
    background: #3C504B;
    color: #FFF;
}


/*- 6.01.6 Editor */
/* @see also editor-style.css */
/* Styles below may affect Admin layout, it's why there are not in editor-style.css */


/*- 6.01.7 Page common */

/*- 6.02 Header */
.site-header {
    background: #F5BE82;
    color: #3C504B;
}
.site-header.transition-disabled * {
    transition: none!important;
}

.site-header__logo {
    margin: 0;
}
.site-header__logo a,
.site-header__logo img {
    display: block;
}
.site-header__logo img {
    height: 36px;
    width: auto;
    transition: height 0.5s ease-out;
    filter: invert(75%) sepia(17%) saturate(541%) hue-rotate(115deg) brightness(101%) contrast(84%);
}
.site-header__logo__title {
    margin-top: 45px;
    margin-bottom: 22px;
    color: inherit;
    max-width: 9em;
}

.main-navigation {
    display: block;
}
.main-navigation ul {
    padding: 0;
    margin: 0;
}
.main-navigation li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.main-navigation a {
    display: block;
    color: inherit;
    padding: 16px 0;
    line-height: 1.2;
}
.main-navigation a[aria-current],
.main-navigation a:hover {
    text-shadow: 0 0 1px currentColor;
}


@media screen and (min-width: 992px) {
    .site-header {
        position: relative;
        width: 367px;
        margin-right: -23px;
        border-radius: 40px 0 0 40px;
        align-self: flex-start;
    }
    .site-header > .layout-width {
        padding: 67px 56px 39px 37px;
    }

    .site-header__menu-toggle {
        display: none !important;
    }
    .main-navigation .icon-menu-caret {
        display: none;
    }
    .main-navigation .main-navigation__logout {
        display: none;
    }


}

@media screen and (max-width: 991px) {
    .site-header {
        margin-left: calc(-1 * var(--site-gutter));
        margin-right: calc(-1 * var(--site-gutter));
        width: calc(100% + var(--site-gutter) + var(--site-gutter));
        padding-top: 19px;
        border-radius: 0 0 30px 30px;
    }
    .site-header > .layout-width {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .site-header__logo {
        width: calc(100% - 115px);
    }
    .site-header__logo img {
        height: 21px;
        margin-top: 14px;
    }
    .site-header__logo__title {
        font-size: 0.9375rem;
        margin-top: 7px;
        margin-bottom: 0;
        max-width: none;
    }

    .site-header__menu-toggle {
        position: relative;
        z-index: 10;
        height: 55px;
        display: flex;
        align-items: center;
        gap: 13px;
        font-size: 0.9375rem;
        font-weight: 300;
        line-height: 1.4;
        text-transform: uppercase;
        cursor: pointer;

        background: transparent;
        /* color: #FFF;
        border: 1px solid rgba(255, 255, 255, 0.6); */
        color: #3C504B;
        border: 1px solid rgba(60, 80, 75, 0.6);
        border-radius: 10px;
        padding: 0 14px;
        overflow: hidden;

        transition: 0.5s ease-out;
    }

    .site-header__menu-toggle .icon-burger,
    .site-header__menu-toggle .icon-close {
        font-size: 1.60em;
        width: 1em;
        transition: 0.6s ease-out;
    }

    .site-header__menu-toggle .icon-close {
        /* .icon-burger width & gap size */
        margin-left: calc(-1em - 13px);
        opacity: 0;
        transform: translateY(-20px);
    }

    .site-header__menu-toggle[aria-expanded="true"] .icon-burger {
        opacity: 0;
        transform: translateY(20px);
    }

    .site-header__menu-toggle[aria-expanded="true"] .icon-close {
        opacity: 1;
        transform: translateY(0);
    }


    .main-navigation {
        margin-top: 65px;
        width: 100%;
        padding-bottom: 6px;
        transition: 0.3s ease-out;
    }
    .main-navigation__menu .menu-item {
        max-height: 54px;
        overflow: hidden;
        transition: 0.3s ease-out;
    }
    .main-navigation[aria-hidden="true"] {
        margin-top: 20px;
    }
    .main-navigation[aria-hidden="true"] .menu-item:not(.current_page_item):not(.current-menu-ancestor) {
        max-height: 0;
        border: 0;
    }
    .main-navigation[aria-hidden="true"] .menu-item.current_page_item {
        border: 0;
    }
    .main-navigation[aria-hidden="true"] .current_page_item a {
        flex-direction: row-reverse;
    }
    .main-navigation[aria-hidden="true"] .current_page_item .icon-menu-caret {
        transform: rotate(-90deg);

    }
    .main-navigation__menu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 54px;
        padding: 0;
        gap: 16px;
    }
    .main-navigation__menu .icon-menu-caret {
        font-size: 8px;
        transform: rotate(90deg);
        transform-origin: center 0;
        margin-top: 1.1em;
    }

    .main-navigation .main-navigation__logout {
        text-transform: uppercase;
        width: 150px;
        margin: 53px auto 0;
        display: flex;
        align-items: center;
        gap: 9px;
        text-decoration: none;
        transition: 0.3s ease-out;
        height: 1.4em;
        overflow: hidden;
    }
    .main-navigation[aria-hidden="true"] .main-navigation__logout {
        height: 0;
        margin: 0;
        padding: 0;
    }

}

/*- 6.03 Footer */

/*- 6.04 Login */
body.login .language-switcher,
body.login #login > h1,
body.login #backtoblog {
    display: none!important;
}

body.login {
    background: #3C504B;
}

.login-wrapper {
    height: 100%;
    display: flex;
    max-width: calc(1110px + var(--site-gutter) + var(--site-gutter));
    margin: 0 auto;
    padding: 135px var(--site-gutter);
    overflow: hidden;
    min-height: 600px;
}
.login-wrapper__image {
    flex: 1 1 100%;
    background: url('assets/images/login.jpg') center center / cover no-repeat;
    height: 100%;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 75px;
    margin-right: -25px;
}

.login-wrapper__image img {
    margin-top: -30px;
}

.login-wrapper__form {
    position: relative;
    flex: 1 1 100%;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;

    padding: 50px 70px 50px 116px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-wrapper__form::before {
    content: '';
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 25px;
    -webkit-mask: url('assets/images/telamon-mask.svg') 0 50% / auto 4320px no-repeat;
    mask: url('assets/images/telamon-mask.svg') 0 50% / auto 4320px no-repeat;
    background: #2F3F3B;
}
.login-wrapper__form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #2F3F3B;

}

.login-wrapper__form .block-h3 {
    color: #FFF;
    font-weight: 400;
}

body.login #login {
    padding: 0;
    margin: 0;
}
body.login #loginform {
    background: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    width: auto;
}
body.login #loginform label {
    color: #FFF;
}
body.login #loginform input[type="text"],
body.login #loginform input[type="password"] {
    font-size: inherit;
    border-radius: 10px;
    height: 55px;
    padding: 0 14px;
    font-family: inherit;
}
body.login .button.wp-hide-pw {
    height: 55px;
    color: inherit;
}

body.login #loginform .forgetmenot {
    float: none;
}
body.login #loginform #wp-submit {
    width: 100%;
    background: #F5BE82;
    border-color: #F5BE82;
    color: #3C504B;
    margin-top: 15px;
    height: 55px;
    border-radius: 10px;
}
body.login #loginform #wp-submit:hover {
    background: #DAA163;
}

body.login #nav {
    padding: 0;
}
body.login #nav a {
    color: #FFF;
}
body.login #nav a:hover {
    color: #FFF;
    text-decoration: underline;
}

.login #login_error,
.login .message,
.login .success {
    color: #3C504B;
    font-weight: 400;
}

@media screen and (max-width: 991px) {
    .login-wrapper {
        flex-direction: column;
        padding: 0;
        background-color: #2F3F3B;
    }

    .login-wrapper__image {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 33px 20px;
        max-height: calc(100vh - 350px);
        border-radius: 0 0 40px 40px;
        margin-right: 0;
    }

    .login-wrapper__image img {
        margin: 0;
    }

    .login-wrapper__form {
        border-radius: 0;
        padding: var(--site-gutter);
        height: auto;
        overflow: visible;
    }

}
@media screen and (max-width: 767px) {
    .login-wrapper__image img {
        width: 128px;
    }
}

/*- 6.05 App */

.wp-activate-container a {
    color: inherit;
}


