/*!
Theme Name: Pavlis Foundation
Theme URI: http://underscores.me/
Author: wtfs.works
Author URI: https://wtfs.works
Description: A custom theme based on Underscores
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: pavlisfoundation
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.

Pavlis Foundation 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/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
@font-face {
    font-family: 'GFS Didot Bold';
    src: url('fonts/subset-GFSDidot-Bold.eot');
    src: local('GFSDidot-Bold'),
        url('fonts/subset-GFSDidot-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/subset-GFSDidot-Bold.woff2') format('woff2'),
        url('fonts/subset-GFSDidot-Bold.woff') format('woff'),
        url('fonts/subset-GFSDidot-Bold.ttf') format('truetype'),
        url('fonts/subset-GFSDidot-Bold.svg#GFSDidot-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GFS Didot';
    src: url('fonts/subset-GFSDidot-Regular.eot');
    src: local('GFSDidot-Regular'),
        url('fonts/subset-GFSDidot-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/subset-GFSDidot-Regular.woff2') format('woff2'),
        url('fonts/subset-GFSDidot-Regular.woff') format('woff'),
        url('fonts/subset-GFSDidot-Regular.ttf') format('truetype'),
        url('fonts/subset-GFSDidot-Regular.svg#GFSDidot-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GFS Didot Italic';
    src: url('fonts/subset-GFSDidot-Italic.eot');
    src: local('GFSDidot-Italic'),
        url('fonts/subset-GFSDidot-Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/subset-GFSDidot-Italic.woff2') format('woff2'),
        url('fonts/subset-GFSDidot-Italic.woff') format('woff'),
        url('fonts/subset-GFSDidot-Italic.ttf') format('truetype'),
        url('fonts/subset-GFSDidot-Italic.svg#GFSDidot-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

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

/* Defults
--------------------------------------------- */
:root {
    --Black: #000;
    --White: #FFF;
    --pavlisGold: #84714a;
    --pavlisDarkGold: #584b38;
    --pavlisDark: #26231e;
    --pavlisRed: #bf4b43;
    --pavlisGray: #bbb19a;
    --pavlisLight: #f8edd5;
    --plyr-color-main: #26231e;
    --plyr-video-background: transparent;
    --swiper-theme-color: #84714a;
}

::-moz-selection {
    /* Code for Firefox */
    color: var(--pavlisLight);
    background: var(--pavlisDark);
}

::selection {
    color: var(--pavlisLight);
    background: var(--pavlisDark);
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Site
--------------------------------------------- */
.site {
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-height: 100vh;
}

.site-header {
    margin-bottom: 3rem;
}

.site-icon {
    display: none;
    width: 70px;
}

.site-icon a {
    padding: 2px !important;
}

.site-header.headroom--not-top .site-icon {
    display: flex;
}

.site-main {
    flex-grow: 1;
    padding-bottom: 5rem
}

.site-branding img {
    max-width: 240px;
    width: 50%;
    filter: contrast(1.5);
}

.site-title {
    font-weight: normal;
    font-size: 1.25rem;
    color: var(--pavlisGold) !important;
    margin-bottom: 0;
    line-height: 1;
}

.site-title a:hover {
    text-decoration: none;
    color: var(--pavlisGold);
}

.site-description {
    color: var(--pavlisGold);
    line-height: 1;
    font-size: .75rem;
}

.site-footer {
    color: var(--pavlisGray);
    background-color: var(--pavlisDark);
    font-size: .85rem;
    font-family: 'Noto Sans Display', sans-serif;
}

.site-footer a,
.site-footer a:visited {
    color: var(--pavlisGray);
}

.site-footer a:hover {
    color: var(--pavlisLight);
    text-decoration: none;
    ;
}

@media screen and (min-width:768px) {
    .site-title {
        font-size: 1.688rem;
        line-height: 1.25;
    }

    .site-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .site-icon {
        width: 50px;
        position: absolute;
    }
}

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--pavlisDarkGold);
    font-family: 'GFS Didot', serif;
    font-size: 1.15rem;
    line-height: 1.25;
}

strong,
b {
    font-family: 'GFS Didot Bold', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-size: 1.6888rem;
}

p {
    margin-bottom: 1em;
}

dfn,
cite,
em,
i {
    font-family: 'GFS Didot Italic';
    font-style: normal;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

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: 125%;
}

/* Elements
--------------------------------------------- */
body {
    background: var(--pavlisLight);
    margin-bottom: 0 !important;
    width: 100vw;
    overflow-x: hidden;
}

body.menu-is-visible {
    height: 100vh;
    overflow-y: hidden;
    padding-right: 15px;
    /* Avoid width reflow */
    position: fixed;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 0em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

img {
    height: auto;
    max-width: 100%;
    -webkit-backface-visibility: hidden;
    -ms-transform: translateZ(0);
    /* IE 9 */
    -webkit-transform: translateZ(0);
    /* Chrome, Safari, Opera */
    transform: translateZ(0);
}

.home .hentry .post-thumbnail .image-wrapper {
    text-align: center;
}

.home .hentry .post-thumbnail img {
    height: 60vh;
    width: auto;
    max-width: 100%;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/* Links
--------------------------------------------- */
a,
a:visited {
    color: var(--pavlisGold);
    text-decoration: none;
    transition: 250ms ease-in-out;
}

a:hover,
a:focus,
a:active {
    color: var(--pavlisRed);
    outline: 0;
    text-decoration: underline;
}

/* Forms
--------------------------------------------- */
div.wpforms-container-full .wpforms-form input,
div.wpforms-container-full .wpforms-form textarea {
    background-color: var(--pavlisLight) !important;
    border-color: var(--pavlisGray) !important;
    font-family: 'Noto Sans Display', sans-serif;
    transition: background-color 250ms ease-in-out;
}

div.wpforms-container-full .wpforms-form input:focus,
div.wpforms-container-full .wpforms-form textarea:focus {
    background-color: var(--White) !important;
    ;
}

div.wpforms-container-full .wpforms-form .wpforms-submit {
    line-height: 2;
    font-family: 'Noto Sans Display', sans-serif;
    color: var(--pavlisDark) !important;
    transition: all 250ms ease-in-out;
    background-color: rgba(0, 0, 0, .1) !important;
    background-color: rgba(0, 0, 0, .1) !important;
    border-radius: 3px;
    font-family: 'Noto Sans Display', sans-serif;
    font-weight: 600;
    padding: 0.375rem 0.75rem !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit:hover {
    background-color: var(--pavlisRed) !important;
    border-color: var(--pavlisRed) !important;
    color: var(--pavlisLight) !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label {
    font-family: 'Noto Sans Display', sans-serif;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Buttons
--------------------------------------------- */
.btn-act {
    line-height: 2;
    color: var(--pavlisLight);
    background-color: rgba(0, 0, 0, .1);
    font-family: 'Noto Sans Display', sans-serif;
    border-radius: 3px;
    font-weight: 600;
}

.btn-act:hover {
    text-decoration: none;
    color: var(--pavlisLight);
    background-color: var(--pavlisDark);
}

.site-legal .cn-button.bootstrap {
    background-color: transparent;
    color: var(--pavlisGray);
    font-family: 'Noto Sans Display', sans-serif;
    font-size: .85rem;
    line-height: 1.5;
    padding: 0;
}

.site-legal .cn-button.bootstrap:hover {
    color: var(--pavlisLight);
}

/* Navigation
--------------------------------------------- */
.main-navigation {
    display: block;
    width: 100%;
    font-family: 'Noto Sans Display', sans-serif;
    transition: 250ms ease-in-out
}

.site-header.headroom--not-top .main-navigation {
    position: fixed;
    top: -2px;
    left: 0;
    background-color: #5f594d;
    z-index: 99
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    flex-direction: column;
    background-color: #5f594d;
    border-bottom-left-radius: 8px;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    display: block;
    left: auto;
    opacity: 1;
}

.site-header.headroom--not-top .main-navigation a {
    color: var(--pavlisGray);
}

.main-navigation ul ul a {
    width: 200px;
    color: var(--pavlisGray);
}

.site-header.headroom--not-top .main-navigation a:hover,
.main-navigation ul ul a:hover {
    color: var(--pavlisLight);
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
    opacity: 1;
}

.main-navigation li {
    position: relative;
    text-transform: uppercase;
    line-height: 1;
    font-size: .85rem;
}

.main-navigation li li {
    text-transform: none;
    font-family: 'GFS Didot', serif;
    font-size: 1rem;
    border-bottom: 1px dotted var(--pavlisGray);
}

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

.main-navigation a {
    display: block;
    text-decoration: none;
    padding: .85rem .75rem .75rem;
}

.main-navigation ul li.current-menu-item,
.main-navigation ul li.current_page_ancestor,
.main-navigation ul li.current-menu-parent {
    font-weight: bold;
}

.main-navigation ul li > a::after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
}

/* Small menu. */
.menu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    float: right;
}

.menu-toggle {
    display: flex;
}

.main-navigation.toggled ul {
    display: flex;
    flex-direction: column;
    height: 92vh;
}

@media screen and (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
        justify-content: center;
        border-top: 1px solid var(--pavlisGold);
        border-bottom: 1px solid var(--pavlisGold);
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
}

.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%;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--pavlisDark);
}

.site-header.headroom--not-top .hamburger.is-active .hamburger-inner,
.site-header.headroom--not-top .hamburger.is-active .hamburger-inner::before,
.site-header.headroom--not-top .hamburger.is-active .hamburger-inner::after {
    background-color: var(--pavlisLight);
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.site-header.headroom--not-top .hamburger-inner,
.site-header.headroom--not-top .hamburger-inner::before,
.site-header.headroom--not-top .hamburger-inner::after {
    background-color: var(--pavlisGold);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 2px;
    background-color: var(--pavlisDark);
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* * Collapse */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}

.post,
.page {
    margin: 0 0 1.5em;
}

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

.page-content,
.entry-content,
.entry-summary {
    margin: .5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

.entry-title {
    font-size: 1.35rem
}

.entry-title a,
.entry-title a:visited {
    color: var(--pavlisDark);
}

.entry-title a:hover {
    color: var(--pavlisRed);
    text-decoration: none;
}

.section-title,
.page-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

article[id*="page-child-"] {
    position: relative;
    margin-bottom: 5rem;
}

article[id*="page-child-"]::after,
.section-title::after,
.page-title::after {
    content: '';
    position: absolute;
    background-image: url(img/line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 40px;
    width: 180px;
    left: 50%;
    transform: translateX(-50%);
    top: 125%;
    opacity: .5;
}

article[id*="page-child-"]::after {
    top: calc(100% + 20px);
}

article[id*="page-child-"]:last-child::after {
    display: none;
}

.single-post .entry-meta {
    text-align: center;
}

.posted-on {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 75%;
    font-weight: 600;
    opacity: .5;
    color: var(--pavlisGold);
    letter-spacing: 1px
}

.archive .hentry,
.blog .hentry {
    border-bottom: 1px solid var(--pavlisGold);
    padding-bottom: 1.5rem
}

.archive .hentry:last-of-type,
.blog .hentry:last-of-type {
    border-bottom: 0;
}

#recent-posts {
    border-top: 1px solid var(--pavlisGold);
}

@media screen and (min-width:992px) {
    #recent-posts .col-lg-4 {
        border-right: 1px solid var(--pavlisGold);
    }

    #recent-posts .col-lg-4:last-child {
        border-right: 0;
    }
}

/* Archives
--------------------------------------------- */
.archive-title {
    margin-bottom: 1.5rem;
}

.archive-title::after {
    display: none;
}

.archive-description {
    position: relative;
    margin-bottom: 5rem;
}

.archive-description::after {
    content: '';
    position: absolute;
    background-image: url(img/line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 40px;
    width: 180px;
    left: 50%;
    transform: translateX(-50%);
    top: 125%;
    opacity: .5;
}

/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 1.5em;
}

.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;
}

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

/* Page Images
--------------------------------------------- */
.home .hentry .post-thumbnail img {
    filter: grayscale(.15) sepia(15%);
    transition: filter 250ms ease-in-out;
}

.home .hentry:hover .post-thumbnail img {
    filter: unset;
}

.hentry img {
    border: 8px solid #FFF;
}

@media screen and (min-width:992px) {

    .hentry img.alignleft,
    .hentry figure.alignleft {
        margin-left: -5rem;
    }

    .hentry img.alignright,
    .hentry figure.alignright {
        margin-right: -5rem;
    }
}

/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    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;
    font-size: 85%;
    color: var(--pavlisGold);
}

.wp-caption-text {
    text-align: left;
}

.swiper-caption {
    font-style: italic;
    font-size: .85rem
}

/* Galleries
--------------------------------------------- */
#photo-gallery {
    height: 60vh;
    overflow: hidden;
}

.swiper {
    height: 100%;
    overflow: visible;
}

.swiper-slide .image-wrapper {
    text-align: center
}

.swiper-slide figure {
    height: 100%;
}

.swiper-slide img {
    object-fit: contain;
    height: 100%;
    filter: grayscale(1) sepia(25%) blur(3px);
    transition: all 250ms ease-in-out;
    opacity: .25;
}

.swiper-slide-active.swiper-slide img {
    filter: unset;
    opacity: 1;
}

.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.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;
}

/*--------------------------------------------------------------
# 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: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    /*rtl:ignore*/
    float: right;
    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}