:root {
    --brandcolor-blue-dark: #081d2c; /* shadow */
    --brandcolor-blue: #00273b;
    --brandcolor-blue-light: #0075a9;

    --brandcolor-blue-2: #004d71;


    --blue-light: #97b7d0;
    --blue-extralight: #b8d5ea;

    --bluegrey: #EDF2F7;

    --yellow: #ffbc00;
    --red: #ff647d;
    --green: #009877;
    --green-darken: #057f62;
    --green-light: #b2e0d4;
    --black: #222222;

    --grey-800: #414141;
    --grey-700: #606060;
    --grey-600: #747474;
    --grey-400: #9e9e9e;
    --grey-300: #b8b8b8;
    --grey-250: #c9c9c9;
    --grey-200: #d2d2d2;
    --grey-220: #dedede;
    --grey-230: #e6e6e6;
    --grey-240: #f0f0f0;

    --card-shadow: 0 1rem 4rem rgba(8, 29, 44, 0.08),
    0 .5rem 1rem rgba(8, 29, 44, 0.04),
    0 .25rem .5rem rgba(8, 29, 44, 0.02),
    0 .125rem .125rem rgba(8, 29, 44, 0.01);
    

    --full-width: 1920px;
    --max-width: 1600px;
    --standard-width: 1440px;

    --gap025: 4px;
    --gap05: 8px;
    --gap075: 12px;
    --gap1: 16px;
    --gap105: 24px;
    --gap2: 32px;
    --gap205: 40px;
    --gap3: 48px;
    --gap305: 56px;
    --gap4: 64px;
    --gap5: 80px;
    --gap6: 96px;
    --gap8: 128px;
    --gap9: 144px;
    --gap10: 160px;

    --rem14: 0.875rem;
    --rem15: 0.9375rem;
    --rem16: 1rem;
    --rem17: 1.0625rem;
    --rem18: 1.125rem;
    --rem20: 1.25rem;
    --rem22: 1.375rem;
    --rem24: 1.5rem;
    --rem25: 1.5625rem;
    --rem27: 1.6875rem;
    --rem29: 1.8125rem;
    --rem32: 2rem;
    --rem36: 2.25rem;
    --rem40: 2.5rem;
    --rem45: 2.8125rem;
    --rem48: 3rem;
    --rem54: 3.375rem;
    --rem64: 4rem;
}


@media screen and (max-width: 767px) {
    :root {
        --gap1: 16px;
        --gap105: 12px;
        --gap2: 16px;
        --gap3: 24px;
        --gap4: 32px;
    }
}


@media screen and (max-width: 1023px) {
    :root {
        --gap5: 40px;
        --gap6: 48px;
        --gap8: 64px;
    }
}


/**
 * Contao Open Source CMS
 *
 * Copyright (c) 2005-2014 Leo Feyer
 *
 * @package Core
 * @link    https://contao.org
 * @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
 */


/**
 * Standardize some basic elements
 */


body,form,figure {
    margin:0;
    padding:0;
}


img {
    border:0;
}


header,footer,nav,section,aside,article,figure,figcaption {
    display:block;
}


/**
 * Fix some font issues
 */


body {
    font-size:100.01%;
}


select,input,textarea {
    font-size:99%;
}


/**
 * Fix some positioning issues
 */


#container,.inside {
    position:relative;
}


/**
 * Hide invisible elements
 */


.invisible {
    border:0;
    clip:rect(0 0 0 0);
    height:1px;
    margin:-1px;
    overflow:hidden;
    padding:0;
    position:absolute;
    width:1px;
}


/**
 * Custom layout sections
 */


.custom {
    display:block;
}


#container:after,.custom:after {
    content:"";
    display:table;
    clear:both;
}


/**
 * Float classes (see #6851)
 */


.float_left,
.media--left > figure {
    float:left;
}


.float_right,
.media--right > figure {
    float:right;
}


/**
* Clear floats
*/


.block {
    overflow:hidden;
}


.media {
    display:flow-root;
}


.clear,#clear {
    height:0.1px;
    font-size:0.1px;
    line-height:0.1px;
    clear:both;
}


* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}


html, body {
    height: 100%;
    width: 100%;
    position: relative;
}


body {
    background: #f1f1f1;
}


#wrapper {
    position: relative;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 320px;
}


#container {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}


/* main section */


#main > .inside {
        padding: var(--gap2) var(--gap4);
    }


/* footer */


#footer {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}


#footer > .inside {
        margin: var(--gap1) var(--gap4);
    }


/* flex row */


.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
}


.w50 {
    -ms-flex-preferred-size: calc(50% - 16px);
        flex-basis: calc(50% - 16px);
}


/* margin */


.mb-2 {
    margin-bottom: var(--gap2);
}


.mt-2 {
    margin-top: var(--gap2);
}


/* card */


.card {
    background: white;
    -webkit-box-shadow: var(--card-shadow);
            box-shadow: var(--card-shadow);
    overflow: hidden;
}


.card > .inside {
        margin: var(--gap1);
    }


.tabs {
    margin: var(--gap2) 0;
}


.tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    padding: 0 var(--gap2);
    margin: 0;
    border-bottom: 2px solid var(--grey-200);
}


.tab-list li {
    margin: 0;
    padding: var(--gap05) var(--gap105);
    cursor: pointer;
    color: var(--grey-600)
}


.tab-list li.active {
    position: relative;
    color: var(--black);
}


.tab-list li.active:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: var(--brandcolor-blue-light);
        bottom: -2px;
        left: 0;
    }


.tab-content {
    padding: var(--gap1) 0;
}


.table-container {
    max-width: 100%;
    overflow-x: auto;
    background: white;
}


table {
    position: relative;
    font-size: var(--rem16);
    margin: 0;
    border-collapse: collapse;
    width: 100%;
}


thead th {
        background-color: inherit;
        font-weight: 600;
        font-size: 15px;
        text-transform: uppercase;
        border-bottom: 1px solid var(--grey-220);
    }


tbody tr {
        border-bottom: 1px solid var(--grey-220);
        background: white;
    }


tbody tr:last-child {
        border-bottom: none;
    }


th, td {
    padding: var(--gap075) 8px;
    text-align: left;
    white-space: nowrap;
}


th {
    font-weight: 700;
}


.vertical-top {
    vertical-align: top;
}


.vertical-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}


.horizontal-center {
    text-align: center;
}


form {
    background: white;
    padding: var(--gap2);
    margin: var(--gap2) 0;
}


.formbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}


.formbody > div {
        -ms-flex-preferred-size: calc(50% - 16px);
            flex-basis: calc(50% - 16px);
    }


.formbody .widget-submit {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-top: var(--gap2);
    }


radio-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--grey-600);
}


button {
    display: block;
    background-color: var(--brandcolor-blue-light);
    border: 1px solid var(--brandcolor-blue-light);
    border-radius: 100px;
    padding: var(--gap05) var(--gap105);
    color: white;
}


button:hover {
        -webkit-filter: brightness(0.8);
                filter: brightness(0.8);
    }


button.button-submit {
    border-color: var(--green);
    background-color: var(--green);
}


button.button-submit:hover {
        -webkit-filter: brightness(0.8);
                filter: brightness(0.8);
    }


button:disabled {
    background-color: var(--grey-300);
    border: 1px solid var(--grey-300);
}


button:disabled:hover {
        -webkit-filter: brightness(1);
                filter: brightness(1);
    }


label span:first-child {
    display: block;
}


input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea {
    font-family: 'Releway', sans-serif;
    display: block;
    width: 100%;
    margin: 4px 0 8px 0;
    padding: 0 10px;
    border: 1px solid var(--bluegrey);
    border-radius: 3px;
    background-color: var(--bluegrey);
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: var(--rem16) !important;
    line-height: var(--rem36);
    height: 2.375rem;
    color: black;

    -webkit-appearance: none;
}


div.button,
a.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--brandcolor-blue-2);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}


div.button:hover, a.button:hover {
        -webkit-filter: brightness(1.4);
                filter: brightness(1.4);
    }


div.button.small, a.button.small {
        padding: 2px 10px;
    }


div.button-circle {
    background-color: var(--grey-200);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: 14px;
    text-align: center;
    line-height: normal;
}


.label {
    display: inline-block;
    background-color: var(--grey-200);
    border-radius: 100px;
    font-size: var(--rem14);
    padding: 2px var(--gap05);
    color: white;
}


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


.label-red {
    background-color: var(--red);
}


.label-green {
    background-color: var(--green);
}


.mod_article {
    overflow: visible;
}


html {
    font-family: "ingra", sans-serif;
    /*font-family: "acumin-pro", sans-serif;*/
    font-weight: 400;
    font-style: normal;
    font-size: 100%;
}


h1 {
    font-weight: 300;
    font-size: var(--rem36);
    line-height: var(--rem40);
    margin-bottom: var(--gap2);
}


h2 {
    font-weight: 300;
    font-size: var(--rem24);
    line-height: var(--rem40);
    margin-bottom: var(--gap2);
}


.lined ul,
ul.lined {
    margin: 0;
    padding: 0;
}


.lined ul li, ul.lined li {
        margin: 0;
        padding: var(--gap025) 0;
        list-style-type: none;
        border-bottom: 1px solid var(--grey-200);
    }


a {
    color: var(--brandcolor-blue);
}


a:hover {
        text-decoration: none;
    }


#header {
    background: white;
    -webkit-box-shadow: 0 0.5rem 2rem #081d2c14, 0 .5rem 1rem #081d2c0a, 0 .25rem .5rem #081d2c05, 0 .125rem .125rem #081d2c03;
            box-shadow: 0 0.5rem 2rem #081d2c14, 0 .5rem 1rem #081d2c0a, 0 .25rem .5rem #081d2c05, 0 .125rem .125rem #081d2c03;

}


#header .inside {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        margin: 0 var(--gap4);
    }


#logo {
    width: 130px;
    padding: var(--gap075) 0;
}


#logo a {
        display: block;
    }


#logo img {
        display: block;
        margin: 0;
    }


/* navigation */


#nav-main ul.level_1 {
        height: 100%;
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }


#nav-main li {
        display: block;
        margin: 0;
        padding: 0;
    }


#nav-main li.active {
            background-color: var(--brandcolor-blue);
        }


#nav-main a,
    #nav-main strong {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        height: 100%;
        font-weight: 600;
        font-size: 16px;
        color: var(--brandcolor-blue-2);
        text-decoration: none;
        padding: 10px;
    }


#nav-main a.active, #nav-main strong.active {
            color: white;
        }


#nav-main a:hover, #nav-main strong:hover {
            text-decoration: none;
        }


#nav-main li:hover {
        background-color: var(--grey-240);
    }


#nav-main li:hover a {
            color: var(--brandcolor-blue-light) !important;
        }
/*# sourceMappingURL=praxisch.css.map */
