/*
    blue: #0A3B71 
    green: #018B01
    */

    .hidden {
        display: none !important;
    }
    
    html {
        font-size: 18px;
        background-color: rgb(233, 233, 233);
        overflow-x:hidden;
        max-width:100%;
        width:100%;
    }
    * {
        font-family: 'Lato', sans-serif;
    }
    
    @media (max-width: 768px) {
        html {
            font-size: 15px;
        }
    }
    
    body {
        color: #333;
        font-family: 'Lato', 'Bitter', 'Roboto Slab', sans-serif;
        font-size: inherit;
        line-height: 1.3rem;
        padding:0;
        margin:0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1rem;
        margin: 0;
    }
    
    main {
        margin: 0 auto;
        padding: 0;
        max-width: 55rem;
    }
    
    .articles {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
        .articles > article.card {
            flex: 1;
        }
    
    input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
        background-color: white !important;
        -webkit-box-shadow: 0 0 0 30px white inset !important;
        -webkit-text-fill-color: #333 !important;
        background-image: none !important;
        color: #333 !important;
    }
    
    .material-icons{
        font-size:1.25rem;
    }
    
    /*Buttons*/
    
    .btn-standard {
        color: #0A3B71;
        display: inline-block;
        padding: 5px;
        background-color: rgba(255,255,255,0.6);
        box-shadow: 1px 1px 3px rgba(0, 0, 0, .25);
        text-decoration: none;
        border: 0 solid transparent
    }
    
        .btn-standard:hover {
            box-shadow: 2px 2px 4px rgba(0, 0, 0, .4);
        }
    
        .btn-standard:active {
            background-color: #0A3B71;
            color: white;
        }
    
    .btn-ghost {
        display: inline-block;
        outline: none;
        text-align: center;
        text-decoration: none;
        font-family: inherit;
        font-weight: 500;
        letter-spacing: 1px;
        vertical-align: middle;
        transition: all 0.2s ease;
        border: 2px none transparent;
        box-sizing: border-box;
        text-shadow: 0 1px 0 rgba(0,0,0,0.01);
        padding: 0.5em 1.4em;
        background-color: transparent;
    }
    
    btn-light {
        color: #fff;
        border-color: #fff;
        border: 2px solid;
    }
    
    .btn-light:hover {
        color: transparent;
        background-color: #fff;
    }
    
    .btn-dark {
        color: #0A3B71;
        border-color: #0A3B71;
        border: 2px solid;
    }
    
    .btn-dark:hover {
        background: #0A3B71;
        color: #fff;
        border-color: #0A3B71;
    }
    
    /*Ende Button*/
    
    
    /*Start Textbox*/
    
    
    /* form starting stylings ------------------------------- */
    .textbox-wrapper {
        position: relative;
        margin-bottom: 45px;
    }
    
        .textbox-wrapper input {
            font-size: 18px;
            padding: 10px 10px 10px 5px;
            display: block;
            width: 90%;
            max-width: 90%;
            border: none;
            border-bottom: 1px solid #757575;
            box-sizing: border-box;
        }
    
    .textbox-wrapper input:focus {
        outline: none;
    }
    
    /* LABEL ======================================= */
        .textbox-wrapper label {
            color: #999;
            font-size: 18px;
            font-weight: normal;
            position: absolute;
            pointer-events: none;
            left: 5px;
            top: 10px;
            transition: 0.2s ease all;
        }
    
    /* active state */
        .textbox-wrapper input:focus ~ label, input:valid ~ label {
            top: -20px;
            font-size: 14px;
            color: #0A3B71;
        }
    
    /* BOTTOM BARS ================================= */
        .textbox-wrapper .bar {
            position: relative;
            display: block;
            width: 90%;
        }
    
            .textbox-wrapper .bar:before, .bar:after {
                content: '';
                height: 2px;
                width: 0;
                bottom: 1px;
                position: absolute;
                background: #0A3B71;
                transition: 0.2s ease all;
            }
    
            .textbox-wrapper .bar:before {
                left: 50%;
            }
    
            .textbox-wrapper .bar:after {
                right: 50%;
            }
    
    /* active state */
        .textbox-wrapper input:focus ~ .bar:before, input:focus ~ .bar:after {
            width: 50%;
        }
    
    /*Ende Textbox*/