/*=============================================
=            App global styles            =
=============================================*/


/*----------  General styles  ----------*/

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    min-width: 320px;
    height: 100%;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    cursor: default;
    line-height: 1.5;
}
p:last-child {
    margin-bottom: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
    font-family: inherit;
}

/*----------  Fonts  ----------*/

@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'),
        url('../../fonts/subset-Roboto-Regular.woff2') format('woff2'),
        url('../../fonts/subset-Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*----------  Typography  ----------*/

.Text--Centered {
    text-align: center;
}
.Text--Large {
    font-size: 25px;
    letter-spacing: -1px;
}
.Text--XLarge {
    font-size: 34px;
    letter-spacing: 0;
    font-weight: 600;
}
.Text--Uppercase {
    text-transform: uppercase;
}



/*----------  Responsive classes  ----------*/

.Visible--SM-Up {
    display: none !important;
}
@media only screen and (min-width: 767px) {
    .Visible--SM-Up {
        display: inherit !important;
    }
}
.Visible--MD-Up {
    display: none !important;
}
@media only screen and (min-width: 992px) {
    .Visible--MD-Up {
        display: inherit !important;
    }
}
.Visible--LG-Up {
    display: none !important;
}
@media only screen and (min-width: 1300px) {
    .Visible--LG-Up {
        display: inherit !important;
    }
}

.Hidden--SM-Up {
    display: inherit;
}
@media only screen and (min-width: 767px) {
    .Hidden--SM-Up {
        display: none !important;
    }
}
.Hidden--MD-Up {
    display: inherit;
}
@media only screen and (min-width: 992px) {
    .Hidden--MD-Up {
        display: none !important;
    }
}
.Hidden--LG-Up {
    display: inherit;
}
@media only screen and (min-width: 1300px) {
    .Hidden--LG-Up {
        display: none !important;
    }
}



/*----------  Positioning  ----------*/

.position-children {
    position: relative;
}
.position-children .position-this {
        position: absolute;
}
.position-this.top-right-corner {
            right: 0;
            top: 0;
}


/*=====  End of App global styles  ======*/


/*=============================================
=            Components global styles            =
=============================================*/

[class^="Component-"] {
    display: block;
    margin: 0;
    padding: 0;
    cursor: default;
}

/* TODO: move class to parent and nest this */
.Component--CenterXY {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}


/*----------  AppContainer  ----------*/

.Component-AppContainer {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.page-template-its-map .Component-AppContainer {
    display: block;
    height: 100%;
    position: relative;
}
.Component-AppContainer {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}



/*----------  AppMain  ----------*/

.Component-AppMain {
    flex: 1;
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
}

body.page-template-its-map .Component-AppMain {
    height: calc(100% - 70px - 3px);
    position: relative;
}
@media only screen and (min-width: 992px) {
    body.page-template-its-map .Component-AppMain {
        height: calc(100% - 164px);
    }
}


/*----------  Section  ----------*/

.Component-Section {
    position: relative;
}
.Component-Section.Section--Transparent {
    background-color: transparent;
}


/*----------  Container  ----------*/

.Component-Container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    height: 100%;
}

.Component--InlineBlock {
    display: inline-block;
}



/*----------  Image  ----------*/

.Component-Image {
    display: inline-block;
    max-width: 100%;
}
.Component-Link * {
    cursor: pointer;
}


/*----------  Layout  ----------*/

.Layout--Row {
    display: flex;
    flex-direction: column;
}
@media only screen and (min-width: 767px) {
    .Layout--Row.Columns--30-70 {
        flex-direction: row;
        gap: 15px;
    }
}
@media only screen and (min-width: 992px) {
    .Layout--Row {
        flex-direction: row;
        gap: 28px;
    }
    .Layout--Row.Columns--30-70 > .Layout__Element {
        flex: 1 0 0%;
        width: 100%;
    }
    .Layout--Row.Columns--30-70 > .Layout__Element:first-child {
        width: 30%;
        flex: 0 0 auto;
    }
}

.Layout--Row .Layout__Element {
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
}
.Layout--Row.Columns--30-70 > .Layout__Element {
    margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
    .Layout--Row.Columns--30-70 > .Layout__Element {
        margin-bottom: 0;
    }
}
.Layout--Row .Layout__Element:last-child {
    margin-bottom: 0;
}

.Layout--Row .Element--Separated {
    border-top: 1px solid;
    margin-left: 0;
    padding-top: 20px;
}
.Layout--Row .Element--Separated::before {
    height: 100%;
}
@media screen and (min-width: 767px) {
    .Layout--Row .Element--Separated {
        border-top: 0;
        margin-left: 0;
        padding-top: 0;
    }
}
@media screen and (min-width: 992px) {
    .Layout--Row .Element--Separated {
        margin-left: 40px;
    }
    .Layout--Row .Element--Separated::before {
        left: -20px;
    }
}

.Layout--Spaced {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (min-width: 992px) {
    .Layout--Spaced {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
}
.Layout--Box {
    display: block;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    margin: 15px 0;
}
@media only screen and (min-width: 992px) {
    .Layout--Box {
        margin: 0 auto 20px;
    }
}
.Layout--Box .Layout--Box {
    margin: 0 0 15px;
}

.Layout--Clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.Layout--WithStripe {
    position: relative;
}
@media only screen and (min-width: 767px) {
    /* .Layout--WithStripe::before {
        content: "";
        display: block;
        position: absolute;
        left: -20px;
        top: 0;
        height: 100%;
        width: 7px;
    } */
}

.Layout__Element {
    flex-grow: 0;
}
.Layout__Element.Element--Grow {
    flex-grow: 1;
    margin: 20px 0;
}
@media only screen and (min-width: 992px) {
    .Layout__Element.Element--Grow {
        margin: 0;
    }
}
.Layout__Element.Element--CenterX {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}
.Layout__Element.Element--PushRight {
    margin-right: auto;
}

.Layout__Container {
    padding: 15px;
}
@media only screen and (min-width: 767px) {
    /* .Layout__Container {
        padding: 30px;
    } */
}
.Box--Compact > .Layout__Container {
    padding: 10px;
}
@media only screen and (min-width: 767px) {
    .Box--Compact .Layout__Container {
        padding: 20px 30px;
    }
    .Box--Compact > .Layout__Container {
        padding: 20px;
    }
}

.Layout--Height100 {
    height: 100%;
}

/*----------  Link  ----------*/

.Component-Link {
    display: inline-block;
    cursor: pointer;
    color: inherit;
}
.Link--Block {
    display: block;
}

/*----------  InlineList  ----------*/

.Component-InlineList {
    list-style: none;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}
.InlineList__Element {
    margin-left: 5px;
    margin-right: 5px;
}
.InlineList__Link {
    vertical-align: middle;
    line-height: 1;
    white-space: nowrap;
}
/* TODO: padding instead of margin */
.InlineList--Separated .InlineList__Element {
    margin-left: 0;
    margin-right: 12px;
}
@media only screen and (min-width: 767px) {
    .InlineList__Element {
        margin-left: 8px;
        margin-right: 8px;
    }
    .InlineList--Separated .InlineList__Element {
        margin-left: 0;
        margin-right: 12px;
    }
}
.InlineList__Element:first-child {
    margin-left: 0 !important;
}
.InlineList__Element:last-child {
    margin-right: 0 !important;
}

@media only screen and (min-width: 992px) {
    .Element--Separated {
        position: relative;
        margin-left: 12px;
    }
    .Element--Separated::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        border-left: 1px solid;
        height: 1em;
        width: 1px;
        cursor: default;
        transform: translateY(-50%);
    }
}
.InlineList__Element.Element--Separated::before {
    height: 0.85em;
}
.InlineList__Element:first-child .Element--Separated::before {
    display: none;
}
.Component-WCAGButtons .InlineList__Element:first-child .Element--Separated::before {
    display: block;
}

.List--Vertical {
    flex-direction: column;
}


/*----------  Iframe Map  ----------*/

.Component-IframeMap {
    min-height: 350px;
}
.Component-IframeMap.IframeMap--FillParent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.IframeMap__Element {
    border: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


/*----------  WCAG Buttons  ----------*/

body.wcag-textsize-normal {
    font-size: 16px;
}
body.wcag-textsize-large {
    font-size: 18px;
}
body.wcag-textsize-small {
    font-size: 14px;
}

.WCAGButtons__Button {
    width: 1.25em;
    height: 1.25em;
    font-size: inherit;
    position: relative;
}

#control-textsize-large {
    font-size: 1.1em;
}
#control-textsize-small {
    font-size: 0.9em;
    margin-right: -0.25em;
}


/*----------  Icon  ----------*/

.Component-Icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
}
.Component-Link .Component-Icon,
.Component-Button .Component-Icon,
.close-button .Component-Icon {
    cursor: pointer;
}
.Icon--TextLarge {
    width: 1.69921875em;
}

.Icon--TextNormal {
    width: 0.8798828125em;
}

.Icon--TextSmall {
    width: 1.3212890625em;
}


/*----------  Button  ----------*/

.Component-Button,
.Button--Primary,
.Button--Secondary,
#bbp_topic_submit,
#bbp_reply_submit,
#bbp_user_edit_submit {
    display: inline-block;
    cursor: pointer;
    color: inherit;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
}
.Button--Primary {
    border: 0;
    letter-spacing: 0.05em;
    font-size: 1em;
    padding: 0.9em 2em;
    min-width: 170px;
}
.Button--Transparent {
    border: 0;
    background-color: transparent;
}
.Button--Secondary,
#bbp_topic_submit,
#bbp_reply_submit,
#bbp_user_edit_submit {
    border: 1px solid;
    letter-spacing: 0.025em;
    font-size: 0.75em;
    padding: 0.5em 1em;
}


/*----------  Mobile Menu  ----------*/

.Component-MobileNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.MobileNav__Button {
    position: relative;
    font-size: 33px;
    width: 33px;
    height: 33px;
}
#mobile-search-button {
    font-size: 23px;
}



/*----------  Menu  ----------*/

.Component-Menu {
    color: inherit;
}
.Menu__Element {
    letter-spacing: 0.025em;
    color: inherit;
    vertical-align: middle;
    line-height: 1.45;
}
.Menu__Element.Element--Button {
    position: relative;
    font-size: 1em;
    width: 14px;
    height: 14px;
}


/*----------  Search Form Popup  ----------*/

.search-form-popup .popup-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-form-popup .form-control,
.search-form-popup .label-text,
.search-form-popup .form-input {
    font-size: 40px;
    text-align: center;
    width: 100%;
}
.search-form-popup .form-input {
    font-size: 18px;
    margin-top: 20px;
    background: transparent;
    border: none;
    outline: none;
    max-width: 90vw;
}
.search-form-popup .info-text {
    font-size: 14px;
    opacity: 0;
    letter-spacing: 1px;
}


/*----------  Mobile Menu Popup  ----------*/

.mobile-menu-popup {
    height: 100%;
}
.mobile-menu-popup .menu-wrap {
        padding: 5vh 0 0;
        padding-bottom: calc(17vh + 40px);
        width: 100%;
        height: 100%;
}
.mobile-menu-popup .Component-InlineList {
    justify-content: space-evenly;
}
.mobile-menu-popup .Component-MobileMenu,
.mobile-menu-popup .Component-InlineList {
    height: 100%;
}
.mobile-menu-popup .Menu__Element {
    font-size: 20px;
}
        /* .links-list {
            display: flex;
            flex-direction: column!important;
            font-size: 2em;
            margin-bottom: 0;
            height: 100%;
            justify-content: space-evenly;
            li {
                display: flex;
                //align-items: center;
                padding: 0;
                cursor: pointer;
            }
            li:first-child {
                margin-top: 2vh;
            }
            li:last-child {
                margin-bottom: 2vh;
            }
        }
    }
    .site-menu {
        height: 100%;
    }*/

    /**Menu s **/
    .mobile-menu-popup .languages-wrap {
        position: absolute;
        left: 0;
        bottom: calc(12vh + 20px);
        width: 100%;
    }
    .mobile-menu-popup .Component-LanguageSwitcher {
        padding: 5vh 0 0;
    }
    .mobile-menu-popup .LanguageSwitcher__Link {
        font-size: 18px;
        line-height: 20px;
    }
    .mobile-menu-popup .wcag-wrap {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
    }
    .mobile-menu-popup .Component-WCAGButtons {
        padding: 5vh 0 7vh;
    }
    .mobile-menu-popup .InlineList__Element:first-child .Element--Separated::before {
        display: none;
    }

    .mobile-menu-popup .Component-LanguageSwitcher .InlineList__Element,
    .mobile-menu-popup .Component-WCAGButtons .InlineList__Element {
        margin-left: 10px;
        margin-right: 10px;
    }


/*----------  Fullscreen Popup  ----------*/

.fullscreen-popup.hidden {
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden;
}
.fullscreen-popup {
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    transition: height 0.15s, opacity 0.2s;
    opacity: 1;
    visibility: visible;
    background-color: #014282;
    color: white;
}
/* Adjust height when WP admin bar is active */
body.admin-bar .fullscreen-popup {
        top: 32px;
        height: calc(100% - 32px);
}
/* Query compatible with WP styles... */
@media only screen and (max-width: 766px) {
    body.admin-bar .fullscreen-popup {
            top: 45px;
            height: calc(100% - 45px);
    }
}
.fullscreen-popup .close-button {
    display: block;
    color: inherit;
}
.fullscreen-popup .Icon--Close {
        color: inherit;
        font-size: 40px;
    }
.fullscreen-popup .position-this.top-right-corner {
        padding: 15px 12px;
    }
@media only screen and (min-width: 992px) {
    .fullscreen-popup .position-this.top-right-corner {
        padding: 35px 25px 15px;
    }
}
@media only screen and (min-width: 1300px) {
    .fullscreen-popup .position-this.top-right-corner {
        padding: 25px;
    }
    .fullscreen-popup .Icon--Close {
        font-size: 50px;
    }
}
html.locked-by-popup .Component-AppContainer {
    filter: blur(4px);
    transition: filter 0.25s;
}
.popup-container {
    padding: 25px;
    height: 100%;
    min-height: 320px;
    position: relative;
}
.fullscreen-popup .Component-InlineList {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}


/*----------  Language Switcher  ----------*/

@media only screen and (min-width: 1300px) {
    .Component-LanguageSwitcher {
        margin: 0px 13px 0 -26px;
    }
}
.LanguageSwitcher__Link {
    vertical-align: middle;
    line-height: 1;
    font-size: 0.95em;
}



/*----------  Page Header  ----------*/

@media only screen and (min-width: 992px) {
    .Component-PageHeader {
        margin-top: 20px;
    }
}
.Component-PageHeader .Layout--Box {
    /* min-height: 90px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.PageHeader__InnerText {
    margin: 0;
    font-size: 1.25em;
    font-weight: bold;
    letter-spacing: 0.025em;
}
@media only screen and (min-width: 767px) {
    .PageHeader__InnerText {
        font-size: 1.5em;
    }
}



/*----------  Article  ----------*/

.Article__Title {
    font-size: 1.25em;
    letter-spacing: 0.025em;
    margin: 0.25em 0 1em;
}
.Article__Content {
    font-size: 0.75em;
    letter-spacing: 0.025em;
}
.Article__Content a:not([class]) {
    text-decoration: underline;
}
.Article__Image {
    width: 100%;
}
@media only screen and (min-width: 767px) {
    .Article__Image {
        float: right;
        max-width: calc(50% - 1em);
        margin-left: 2em;
    }
}
.Article__Footer {
    margin-top: 1em;
}
.Article__Footer .Component-Icon {
    font-size: 1.5em;
}
.Article__ActionButton {
    border-radius: 10px;
}


/*----------  Accordeon  ----------*/

.Accordeon__Question {
    padding: 15px;
    cursor: pointer;
}
@media only screen and (min-width: 767px) {
    .Accordeon__Question {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.Accordeon__Question h2 {
    margin: 0;
    font-size: 1em;
}
.Accordeon__Answer {
    font-size: 0.75em;
    padding: 0 15px;
}
@media only screen and (min-width: 767px) {
    .Accordeon__Answer {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.Accordeon__Answer p:first-child {
    margin-top: 0;
}

@media only screen and (min-width: 767px) {
    .Component-Accordeon .Layout--WithStripe::before {
        top: 10px;
        left: 10px;
        height: calc(100% - 20px);
    }
}

.Accordeon__Element p {
    margin-bottom: 15px;
}

.Accordeon__Answer {
    display: none;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}
.Accordeon__Element.js-enabled .Accordeon__Answer {
    visibility: hidden;
    display: block;
}
.Accordeon__Element.Element--active .Accordeon__Answer {
    visibility: visible;
}

.Accordeon__Element:last-child {
    margin-bottom: 0;
}



/*----------  Grid  ----------*/

.Component-Grid {
    display: grid;
    row-gap: 15px;
    column-gap: 15px;
}
@media only screen and (min-width: 767px) {
    .Grid--2col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 992px) {
    .Component-Grid {
        row-gap: 20px;
        column-gap: 20px;
    }
}


/*----------  CardsGrid  ----------*/

.Component-CardsGrid .Layout--Box {
    margin: 0;
}
.Component-Card {
    position: relative;
}
.Card--WithImage .Card__Header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 290px;
}
.Card--WithImage .Card__Layer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.Card--WithoutImage .Card__Layer .Layout__Container {
    padding: 0;
}
.Card--WithImage .Card__Content {
    margin-top: 290px;
    font-size: 0.75em;
}
.Component-Card .Layout__Container {
    padding-top: 12px;
    padding-bottom: 17px;
}
.Card__Title {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.15;
    letter-spacing: 0.05em;
    margin: 7px 0 0;
}
.Card__Date {
    font-size: 0.75em;
    line-height: 1;
}
.Card__Image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.Card__Footer {
    margin-top: 1em;
}



/*----------  Pagination  ----------*/

.Component-Pagination {
    margin-top: 30px;
    font-size: 0.75em;
    letter-spacing: 0.025em;
}
.Component-Pagination a {
    color: inherit;
    display: inline-block;
}
.Component-Pagination .current {
    font-weight: bold;
}
.Component-Pagination .icon {
    font-size: 2.5em;
    vertical-align: middle;
    line-height: 0;
    position: relative;
    top: -0.075em;
}



/*----------  SubSection  ----------*/

.Component-SubSection {
    min-width: 200px;
}
.SubSection__Title {
    font-size: 0.9em;
    letter-spacing: 0.05em;
    margin: 0 0 1.5em;
}
.SubSection__Content {
    font-size: 0.75em;
    letter-spacing: 0.025em;
}



/*----------  Form  ----------*/

.Component-Form {

}

.Form__Field {
    margin-bottom: 1em;
}

.Form__Label {
    display: block;
    margin-bottom: 0.5em;
}

.Component-Form input,
.Component-Form select,
.Component-Form textarea {
    width: 100%;
    border-radius: 10px;
    border: 0;
    padding: 1em;
    box-shadow: 1px 5px 5px rgba(0,0,0,0.1);
}
.Component-Form input[type="checkbox"] {
    width: auto;
    box-shadow: none;
    margin-bottom: 0.5em;
    margin-right: 0.5em;
    float: left;
    margin-top: 0;
}

.wpcf7 form.Component-Form .wpcf7-response-output {
    margin: 2em 0 1em;
    padding: 0.5em 1em;
    border: 2px solid #00a0d2; /* Blue */
    border-radius: 5px;
}

.wpcf7 form.init .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900; /* Yellow */
}

.Component-Form .wpcf7-not-valid-tip {
    margin-top: 0.5em;
}

.Component-Form .wpcf7-submit {
    margin-top: 1em;
}

.Component-Form .wpcf7-list-item {
    margin: 0;
}


/*----------  ScreenReadersOnly  ----------*/

.Component-ScreenReadersOnly {
    display: inline-block;
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}


/*=============================================
=            App main sections            =
=============================================*/

/*----------  Header Area  ----------*/

#header-area {
    z-index: 5;
    height: 70px;
    min-height: 0;
    border-bottom: 1px solid;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #014282;
}
@media only screen and (min-width: 992px) {
    #header-area {
        /* height: 110px; */
        padding-left: 30px;
        padding-right: 30px;
    }
}
.header__wrapper {
    color: white;
}


/* TODO: component atts method - to pass additional classes to components */
#header-area .Layout--Spaced,
#header-area .Layout__Element,
#header-area .Layout__Element > [class^="Component-"],
#header-area .Component-InlineList {
    height: 100%;
}

#header-logo {
    position: relative;
    width: 190px;
    /* height: 100%; */
    margin-left: -15px;
}
@media only screen and (min-width: 767px) {
    #header-logo {
        /* width: 220px; */
    }
}
@media only screen and (min-width: 1600px) {
    #header-logo {
        width: 280px;
    }
}
#header-logo .Component-Image {
    width: auto;
    /* height: 46px; */
    /* max-width: calc(100% - 30px); */
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
@media only screen and (min-width: 767px) {
    #header-logo .Component-Image {
        /* height: 56px; */
    }
}

.header__side-left {
    height: 100%;
}

.header__side-right-top {
    display: flex;
}

.header__side-right-bottom {
    text-align: right;
    margin-top: 8px;
}

@media only screen and (max-width: 1299px) {
    .header__side-right-bottom {
        display: none;
    }
}

/*----------  Generic Content  ----------*/

#generic-content {

}



/*----------  Comments  ----------*/

/**
 * 12.3 Comments
 */

 .comments-area {

}

.comments-area > :last-child {
	margin-bottom: 0;
}

.comment-list + .comment-respond {
	border-top: 1px solid;
    margin-top: 2em;
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
	padding-top: 1em;
}

.comments-title,
.comment-reply-title {
	font-size: 1.25em;
	line-height: 1.25;
    margin-top: 0.15em;
}

.comments-title {
	margin-bottom: 1.3333em;
}

.comment-list {
	list-style: none;
	margin: 0;
    padding: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	padding: 1.6em 0;
}

.comment-list .children {
	list-style: none;
	margin: 0;
}

.comment-list .children > li {
	padding-left: 0.8em;
}

.comment-author {
	margin-bottom: 0.4em;
}

.comment-author a:hover {
	border-bottom: 1px solid;
}

.comment-author .avatar {
	float: left;
	height: 24px;
	margin-right: 0.8em;
	width: 24px;
}

.bypostauthor > article .fn:after {
	content: "\f304";
	position: relative;
	top: 5px;
	left: 3px;
}

.comment-metadata,
.pingback .edit-link {
	font-family: "Noto Sans", sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
}

.comment-metadata a:hover,
.pingback .edit-link a:hover {
	border-bottom: 1px solid;
}

.comment-metadata {
	margin-bottom: 1.6em;
}

.comment-metadata .edit-link {
	margin-left: 1em;
}

.pingback .edit-link {
	margin-left: 1em;
}

.pingback .edit-link:before {
	top: 5px;
}

.comment-content ul,
.comment-content ol {
	margin: 0 0 1.6em 1.3333em;
}

.comment-content li > ul,
.comment-content li > ol {
	margin-bottom: 0;
}

.comment-content > :last-child {
	margin-bottom: 0;
}

.comment-list .reply {
	font-size: 0.75em;
}

.comment-list .reply a {
	border: 1px solid;
    color: inherit;
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	margin-top: 2em;
	padding: 0.5em 1em;
	text-transform: uppercase;
    border-radius: 5px;
}

.comment-list .reply a:hover,
.comment-list .reply a:focus {
	outline: 0;
}

.comment-body {
    margin-bottom: 2em;
}

.comment-form {

}

.comment-form label {
	font-size: 1em;
	font-weight: 700;
	display: block;
	letter-spacing: 0.04em;
	line-height: 1.5;
	text-transform: uppercase;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form input[type="submit"],
.comment-form textarea {
    border-radius: 5px;
    background-color: transparent;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
	font-size: 1em;
	line-height: 1.5;
	margin-bottom: 2em;
}

.logged-in-as a:hover {
	border-bottom: 1px solid;
}

.no-comments {
    border-top: 1px solid;
	font-family: "Noto Sans", sans-serif;
	font-weight: 700;
	padding-top: 1.6em;
}

.comment-navigation + .no-comments {
	border-top: 0;
}

.form-allowed-tags code {
	font-family: Inconsolata, monospace;
}

.form-submit {
	margin-bottom: 0;
}

.required {
	color: #c0392b;
}

.comment-reply-title small {
    display: block;
}
.comment-reply-title small a {
	border: 0;
	overflow: hidden;
    display: inline-block;
    margin-top: 0.5em;
}

.comment-form #wp-comment-cookies-consent {
	margin: 0 10px 0 0;
}

.comment-form .comment-form-cookies-consent label {
	display: inline;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	letter-spacing: 0;
	text-transform: none;
}



/*----------  ITS Map  ----------*/

#its-map {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


/*----------  Footer area  ----------*/

.footer-area {
    border: 3px solid #014282;
    padding: 10px;
    background-color: #014282!important;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.footer-logo {
    max-width: 130px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-around;

}

.footer-btn-trigger {
    position: absolute;
    bottom: 100%;
    transform: translateX(-50%);
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid;
    padding: 4px 4px;
}
.footer-btn-trigger svg {
    width: 1rem;
    height: 1rem;
    transform: rotate(180deg);
}

@media only screen and (min-width: 992px) {
    .footer-area {
     
    }

    .footer-btn-trigger {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .Component-FooterContent  {
        padding: 16px 0;
    }
    .footer-area {
        position: fixed;
        width: 100%;
        z-index: 10;
        bottom: 0;
        transform: translateY(100%);
        transition: .5s;
    }
    .footer-area.--show-mobile {
        transform: translateY(0);
        padding-bottom: 50px;
    }
    .footer-area.--show-mobile .footer-btn-trigger svg {
        transform: rotate(0);
    }
    .footer-content {
        flex-direction: column;
    }
}

.Component-FooterContent  {
    color: white;
    font-size: .85rem;
    display: flex;
    flex-wrap: wrap;

}

.Component-FooterContent img {
    margin: 10px 15px;
}
@media only screen and (min-width: 992px) {
    .Component-FooterContent img {
        margin: 0 15px;
    }
}



/*----------  Forum  ----------*/

#bbpress-forums {
    font-size: 1em;
    line-height: 1.4;
}
div.bbp-breadcrumb, div.bbp-topic-tags {
    font-size: 1em;
}
#bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results {
    font-size: 1em;
}

#cmplz-manage-consent .cmplz-manage-consent {
  left: 10px!important;  
}