/* KMI Template Base: Version 7.0 */


/*************************************************

* Font Import

*************************************************/

/* @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,300italic,400italic); */


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Lato:wght@300;400;700&display=swap');


@media all {
    :root {
        --c80-padding: 12vw;
        --c80-padding-x: 0 var(--c80-padding);

        --theme-white: #ffffff;
        --theme-primary: #006CB7;
        --theme-secondary: #d2d2d2;

        --bodytext-color: #000000;
        --visited: #666666;
        --hover: var(--theme-primary);

        --yellow: #f8f5ba;
        --greenyellow: #9B9606;
        --bright-yellow: #f2ef95;

        --pink: #ECD1E0;
        --violet: #7A6070;
        --bright-pink: #e2bad0;

        --orange: #F6E6CF;
        --brownorange: #B26E2A;
        --bright-orange: #efd4ad;

        --blue: #E4EEFA;
        --darkblue: #185F99;
        --bright-blue: #c2d9f3;


        --parking-lot-cols: 8;
        --parking-state-width: ((100vw - (var(--c80-padding) * 2))) / var(--parking-lot-cols);

        --bs-gutter-x: 1.5rem;

        --headerpadding-y: 20px;
        --headerheight: calc(72px + (var(--headerpadding-y) * 2));

        --margin-default: 65px;

        --header-font: 'Lato', 'Open Sans', Helvetica, sans-serif;
        --body-font: 'Open Sans', Arial, Helvetica, sans-serif;


    }


    /*************************************************

	* Specific Colors and Sizes

	*************************************************/
    html {
        font-size: 100%;
    }

    body {
        color: var(--bodytext-color);
        font-family: var(--body-font);
        font-weight: 300;
        display: flex;
        font-size: 16px;
        flex-direction: column;
        min-height: 100vh;
    }

    /* Titles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--header-font);
    }

    h1 {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.25em;
        margin: 0 0 1rem 0;
        color: var(--theme-primary);
    }

    h2 {
        font-weight: 400;
        font-size: 1.25rem;
        line-height: 1.25em;
        margin: 0;

    }

    h3 {
        font-weight: 400;
        font-size: 1.1rem;
        line-height: 1.25em;
        margin: 0 0 0.4rem 0;
    }

    /* Links */
    a {
        color: var(--bodytext-color);
        text-decoration: underline;
        font-weight: 400;
    }

    a:visited {
        color: var(--visited);
    }

    a:visited:hover {
        color: var(--hover);
    }

    a:hover,
    a:focus,
    a.activ {
        color: var(--hover);
        text-decoration: underline;
    }

    /* Lines */
    hr {
        border: none;
        border-bottom: 1px dotted var(--bodytext-color);
        margin: 0 0 1em 0;
    }

    div.rulerAfter,
    div.rulerBefore {
        border-color: #666;
    }

    /* Color Classes for RTE */
    span.rot {
        color: #ff0000;
    }

    span.gruen {
        color: #00ff00;
    }

    span.blau {
        color: #0000ff;
    }

    td {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .theme-primary {
        color: var(--theme-primary);
    }

    .greenyellow {
        color: var(--greenyellow);
    }

    .violet {
        color: var(--violet);
    }

    .brownorange {
        color: var(--brownorange);
    }

    .darkblue {
        color: var(--darkblue);
    }

    .bg-yellow {
        background-color: var(--yellow);
    }

    .bg-pink {
        background-color: var(--pink);
    }

    .bg-orange {
        background-color: var(--orange);
    }

    .bg-blue {
        background-color: var(--blue);
    }

    .bright-yellow {
        color: var(--bright-yellow);
    }

    .bright-pink {
        color: var(--bright-pink);
    }

    .bright-orange {
        color: var(--bright-orange);
    }

    .bright-blue {
        color: var(--bright-blue);
    }

    /*************************************************

	* Page and Container

	*************************************************/

    main {
        position: relative;
        width: 100%;
        left: 0;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    #page {
        width: 100%;
        margin: 0 auto;
        flex: 1;
    }

    .container-80 {
        padding: var(--c80-padding-x);
        margin: 0 auto;
        max-width: 2560px;
    }

    .c80-padding-r {
        padding-right: var(--c80-padding);
    }

    .c80-padding-l {
        padding-left: var(--c80-padding);
    }

    /*************************************************

	* Header

	*************************************************/

    /* Logo */
    #logo {
        padding-right: 30px;
        max-width: 25vw;
        min-width: 300px;
        height: auto;
    }

    .topnav {
        font-size: 1.1em;
        line-height: 2em;
        flex: 1;
        align-items: center;
    }

    .topnav ul {
        width: 100%;
        justify-content: flex-end;
    }

    .topnav li {
        text-indent: 0;
        margin-left: 2em;
        position: relative;

    }

    .topnav li::before,
    .topnav li.current::before {
        content: '';
        display: block;
        width: 1em;
        height: 1em;
        position: absolute;
        left: -1em;
    }

    .topnav li::before {
        background-color: transparent;
    }

    .topnav li.current::before {
        background-color: var(--theme-primary);
    }

    .topnav a {
        display: block;
        text-align: right;
        text-decoration: none;
        color: #000000;
        line-height: 1em;
        font-weight: normal;
        padding-left: 10px;
        transition: all ease-in-out 0.3s;
    }

    .topnav a:hover,
    .topnav a:focus,
    .topnav a:active {
        color: var(--hover);
    }

    /*************************************************

	* Header Image

	*************************************************/
    #header-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    #header-image img {
        width: 100%;
        height: auto;
    }

    #title {
        position: absolute;
        bottom: 18px;
    }

    #title h1 {
        margin: 0;
    }

    #header-wrapper {
        padding-top: var(--headerpadding-y);
        padding-bottom: var(--headerpadding-y);
        max-width: 2560px;
    }

    /*************************************************

	* Main

	*************************************************/

    /* Sub Navigation */
    #subnav-wrapper {
        float: left;
        width: 215px;
        padding-top: 20px;
    }

    #subnav {
        width: 100%;
    }

    #subnav ul {
        margin: 0;
        border-top: 1px dotted var(--bodytext-color);
    }

    #subnav ul li {
        text-indent: 0;
        position: relative;
    }

    #subnav li:before {
        content: none;
    }

    #subnav ul ul li {
        margin: 0;
    }

    #subnav a {
        display: block;
        background: #ddd;
        color: #000;
        text-decoration: none;
        font-weight: bold;
        padding: 0.5em 1em;
        border-bottom: 1px dotted var(--bodytext-color);
        -webkit-transition-duration: 0.4s;
        -moz-transition-duration: 0.4s;
        -o-transition-duration: 0.4s;
        -ms-transition-duration: 0.4s;
        transition-duration: 0.4s;
    }

    #subnav a.current,
    #subnav a:hover {
        background: #bbb;
        -webkit-transition-duration: 0.4s;
        -moz-transition-duration: 0.4s;
        -o-transition-duration: 0.4s;
        -ms-transition-duration: 0.4s;
        transition-duration: 0.4s;
    }

    /* Sidebar */
    #sidebar-wrapper {
        float: right;
        width: 240px;
    }

    #sidebar {
        width: 240px;
        padding: 20px 0 0 0;
    }

    /* Center */

    #center {
        min-height: 350px;
    }

    thead th,
    thead td {
        text-align: left;
    }

    .frame-space-before-extra-large {
        margin-top: 70px;
    }

    .frame-space-after-extra-large {
        margin-bottom: 70px;
    }

    /*************************************************

	* Footer

	*************************************************/
    #footer {
        position: relative;
        background-color: var(--theme-primary);
        padding-top: 30px;
        padding-bottom: 30px;
        color: #ffffff;
    }

    /* Footer Address */
    #footer-address {
        float: left;
        width: auto;
    }

    #footer-address p {
        margin: 0;
    }

    .footer-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .footer-wrapper ul li {
        margin-left: 15px;
        line-height: 1.6em;
    }

    #footer a {
        color: var(--theme-white);
        text-decoration: none;
    }

    #footer a:hover {
        opacity: 0.8;
    }

    /* Meta Navigation */
    #metanav {
        float: right;
        margin-right: 40px;
    }

    #metanav ul {
        margin: 0;
    }

    #metanav li {
        text-indent: 0;
        list-style-position: outside;
        float: left;
        padding: 0 10px 0 0;
        margin: 0 10px 0 0;
    }

    #metanav li:before {
        content: none;
    }

    #metanav li.last {
        border: none;
        padding: 0;
        margin: 0;
    }

    #metanav a {
        font-weight: normal;
        text-decoration: none;
    }

    #metanav a:hover {
        text-decoration: underline;
    }

    /* KMI Logo */
    #kmi-logo {
        position: absolute;
        right: -20px;
        bottom: 40px;
    }

    /*************************************************

	* Home

	*************************************************/


    #center-wrapper {
        width: 100%;
        float: none;
        margin: 0;
    }

    #footer {
        margin: 50px 0 0 0;
    }

    /* Mobile Navigation */
    .mobile-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 9999;
        overflow-y: auto;
        left: -80%;
        width: 80%;
        padding-top: var(--headerpadding-y);

        background: var(--darkblue);
        transition: 0.4s;
    }


    .mobile-nav a {
        text-decoration: none;
        margin-bottom: 15px;
        padding-left: 30px;
    }

    .mobile-nav a,
    .mobile-nav a:visited,
    .mobile-nav a:focus {
        color: var(--theme-white);
    }

    .mobile-nav a:hover {
        color: var(--bright-yellow);
    }

    .mobile-nav a:focus {
        color: var(--theme-white);
    }

    .mobile-nav-active .mobile-nav {
        left: 0;
    }

    .mobile-nav ul {
        flex-direction: column;
    }

    .mobile-nav-toggle {
        position: absolute;
        right: 30px;
        top: calc(10px + var(--headerpadding-y));
        z-index: 9998;
        border: 0;
        background: none;
        font-size: 24px;
        transition: all 0.4s;
        outline: none !important;
        line-height: 1;
        cursor: pointer;
        text-align: right;
        padding-right: 0;
    }
    .mobile-nav-active .mobile-nav-toggle{
        position: fixed;
    }

    .mobile-nav-overly {
        width: 100%;
        height: 100%;
        z-index: 9997;
        top: 0;
        left: 0;
        position: fixed;
        background: rgba(255, 255, 255, 0.8);
        overflow: hidden;
        display: none;
    }

    /* ANIMATED MINUS */
    .mobile-nav-toggle .icon-bar {
        width: 30px;
        display: block;
        height: 3px;
        border-radius: 1px;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        margin-bottom: 4px;
        background-color: var(--bodytext-color);
    }

    .mobile-nav-toggle .icon-bar.minus .icon-bar:nth-of-type(1) {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    .mobile-nav-toggle .icon-bar.minus .icon-bar:nth-of-type(2) {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    .mobile-nav-toggle .icon-bar.minus .icon-bar:nth-of-type(3) {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }


    .mobile-nav-active .mobile-nav-toggle .icon-bar:nth-of-type(1) {
        transform: translate3d(0, 6px, 0);
    }

    .mobile-nav-active .mobile-nav-toggle .icon-bar:nth-of-type(3) {
        transform: translate3d(0, -6px, 0);
    }

}

.extbase-debugger {
    overflow: visible !important;
}