﻿html {
    -webkit-text-size-adjust: 100%;
    height:100%;
}

* {
    box-sizing: border-box;
}


body {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    display: grid;
    height: 100%;
}

main {
    padding: 0.2em;
    flex: 1;
}

    main:has(.limitedPage) {
        background-color: var(--color-page-background);
    }

footer {
    width: 100%;
    font-size: 14px;
    color: #fff;
    background-color: #333;
}


.navBar-item {
    display: flex;
    justify-content: center;
}

.navBar-itemname {
    display: none;
}

.navBar-icon {
    font-size: 24px;
}


nav {
    background-color: #333;
}

    nav div {
        margin: 0;
        float: left;
    }

    nav a {
        text-decoration: none;
        color: white;
        padding: 1em 0.5em 1em 0.5em;
        display: block;
    }

        nav a.active {
            color: #333;
            background-color: white;
        }

        nav a:hover {
            text-decoration: none;
            color: white;
            background-color: rgba(255,255,255,0.5);
        }

.TerminPlan {
}
    .TerminPlan div {
        opacity: 0;
        animation: FadeIn 200ms;
        animation-fill-mode: forwards;
    }

.simpleBox {
    font-size: 1em;
    text-align: center;
    margin: 2vw;
    width: 40vw;
    min-width: 12em;
    max-width: 20em;
    min-height: 20vh;
    cursor: pointer;
    padding: .5em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-image: linear-gradient( 180deg, rgb(154, 157, 161) 0%, #e9e9e9 70%);
}
.simpleBoxTitle{
    font-weight: 600;
    margin-bottom: 0.5em ;
}



@keyframes FadeIn {
    from { opacity: 0.1; }
    to { opacity: 1; }
}




.btn {
    margin: 2px;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: .8;
    }
}

/* GRID */
.row {
    clear: both;
}

.limited {
    max-width: 1140px;
    margin: auto;
}

.large-only {
    display: none;
}

.column {
    float: left;
    padding: 0 2vw;
    margin: 0 0 .75rem 0;
}

.small-12 {
    width: 100%;
}

.small-11 {
    width: 91.66%;
}

.small-10 {
    width: 83.33%;
}

.small-9 {
    width: 75%;
}

.small-8 {
    width: 66.66%;
}

.small-7 {
    width: 58.33%;
}

.small-6 {
    width: 50%;
}

.small-5 {
    width: 41.66%;
}

.small-4 {
    width: 33.33%;
}

.small-3 {
    width: 25%;
}

.small-2 {
    width: 16.66%;
}

.small-1 {
    width: 8.33%;
}

.small-0 {
    display: none;
}
    

/*----- Clearfix: Force an Element not to collapse -----*/
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
