﻿/*Lokal CSS ================================================== */
/*
/*mit dieser CSS werden Elemente auf lokaler Projektebene  
/*usw. attributiert.
/*
/*Author: Andreas Wasner
/*Stand : 05.01.2020                                      
/*
/* ============================================================ */

body {
    overflow-y: scroll;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

header {
    width:100%;
    border-bottom: 1px solid rgb(220,220,220);
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10;
    background-color:rgb(252,252,252)
}

footer {
    background-color: #fff;
}

section, wrapper, main, loader-holder {
    background-color: #fff;

}


.section {
    height:100vh;
}

/*------ loader-------------------------------------------------*/
@-o-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

.id_lense10:before {
    opacity: 0.1;
}

.id_lense20:before {
    opacity: 0.2;
}

.id_lense30:before {
    opacity: 0.3;
}

.id_lense40:before {
    opacity: 0.4;
}

.id_lense50:before {
    opacity: 0.5;
}

.id_lense60:before {
    opacity: 0.6;
}

.id_lense70:before {
    opacity: 0.7;
}

.id_lense80:before {
    opacity: 0.8;
}

.id_lense90:before {
    opacity: 0.9;
}

.id_announcement-left-k a {
    background-color: none !important;
    border: 1px solid #d3d3d3 !important;
    color: #d3d3d3 !important;
}

    .id_announcement-left-k a:hover {
        background-color: #d3d3d3 !important;
        color: #464646 !important;
    } 

.panel-a a {
    color: #436EEE;
}

    .panel-a a:hover {
        color: #B0171F;
        text-decoration: underline;
    }

.id_row:after {
    content: "";
    display: table;
    clear: both;
}

.id_column {
    margin-left:auto; margin-right:auto;
}

/* Sections */
#tools {
    background-color: rgb(140,140,140);
}

#karriere {
    float:none;
    padding: 5% 0 5% 0;
}

    #karriere p {
        margin-left: 25px;
        margin-right: 25px;
        position: relative;
        text-align: center;
        border: solid;
        border-width: 6px;
        border-color: rgb(140,140,140);
        border-radius: 0;
        padding: 10px 10px 10px 10px;
    }

/* Tabulatoren aus w3school */
/* Style the tab */
.tab {
    width:60%;
    margin-left:auto;
    margin-right:auto;
    margin-top:50px;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;

}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.4s;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #ccc;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    width:60%;
    margin-left:auto; margin-right:auto;
}

    .tabcontent li {
        font-size:0.9em;
        padding-bottom: 2px;
}

    .tabcontent a {
        text-decoration: none;
    }

        .tabcontent a:hover {
            text-decoration:underline;
        }

table {
    padding: 10px 50px 35px 0;
    width: 100%;
}

.tablehead {
    background-color: slategray;
}

.tablehead-txt {
    font-size: 0.9em;
    font-weight: bold;
    color: white;
    padding: 0.4em 0.4em 0.4em 0.4em;
    text-align: left;
}

.tablerow {
    background-color: whitesmoke;
}

.tablerow-txt {
    font-size: 0.9em;
    font-weight: normal;
    color: black;
    padding: 0.4em;
    text-align: left;
}

.hinweis {
    background-color: #fffbea;
    margin: 5px 50px 0 0;
    padding: 0.8em 0.8em 0.8em 20px;
    border-left: solid 4px #f1c40f;
}

.syntax {
    font-size: 0.9em;
    font-weight: 600;
    padding: 0.5em 0 0.2em 25px;
}


.id_button {
    padding: 5px;
}

.id_button:hover {
    cursor:pointer;
    background-color:white
}





/*Third Parties =============================================== */
/* Font Awesome Social Icons*/
/* Style all font awesome icons */
.fa {
    padding: 4px;
    font-size: 14px;
    width: 14px;
    text-align: center;
    text-decoration: none;
    background-color: rgb(255,255,255);
    color: rgb(50,50,50);
}

    /* Add a hover effect if you want */
    .fa:hover {
        background-color: #e2e6e9;
        color: black;
    }


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-size: 1.2rem;
}

.loader {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}
