@import url(genericons/genericons.css);

/* noto-sans-regular - latin */
@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v7-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Noto Sans'), local('NotoSans'), url('../fonts/noto-sans-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/noto-sans-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/noto-sans-v7-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/noto-sans-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/noto-sans-v7-latin-regular.svg#NotoSans') format('svg'); /* Legacy iOS */
}

/* orbitron-regular - latin */
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/orbitron-v9-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Orbitron Regular'), local('Orbitron-Regular'), url('../fonts/orbitron-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/orbitron-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/orbitron-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/orbitron-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/orbitron-v9-latin-regular.svg#Orbitron') format('svg'); /* Legacy iOS */
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 1s linear;   
}

html 
{
    scroll-behavior: smooth;
}

body, input, select, p, button, legend, textarea, label, table
{
    font-size:1.1rem;
    line-height:2rem;
}

body 
{
    display: grid;
    grid-template-rows: 70px 1fr 30px;
    height: 100vh;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    text-align: center;
    background-color: #eee;
}

header 
{    
    grid-row-start: 1;
    grid-row-end: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;    
    background: #fff;    
}

#container_cookies 
{    
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background-color: aliceblue;
    font-size: 0.9rem;    
}

    #container_cookies button 
    {
        width: 140px;
        color: white;
        background-color:cornflowerblue;
        padding: 8px;
        line-height: 1.2rem;
        margin-left: 5px;
        flex-grow:0;
        flex-shrink:0;
    }

    #cookies_info
    {
        display:inline-block;
    }

main 
{
    grid-row-start: 2;
    grid-row-end: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 100%;
    /*overflow: auto; funktioniert nicht bei Android-Firefox*/
}

footer 
{
    grid-row-start: 3;
    grid-row-end: 4;
    display:flex;
    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;
    background-color: gray;   
}

    footer button 
    {
        background: transparent;
        border-right: 1px solid #fff;
        padding-left: 5px;
        padding-right: 5px;
        color: #fff;
        font-size: 1rem;
        line-height: 1rem;
    }

        footer button:nth-child(1) /*Strich links*/ 
        {
            border-left: 1px solid #fff;
        }

button 
{
    border: 0;
    cursor: pointer;
    outline: none;
    background: transparent;
    transition: text-shadow 0.1s linear;
}

button:hover
{
    text-shadow: 0 0 0.6rem #00AAAA;
}

header button
{    
    margin-left:5px;    
}

a
{    
    color:#08d;
    text-decoration:none;
}
    
a:hover
{    
    text-shadow: 0 0 0.6rem rgba(255, 0, 0, 0.8);
}

iframe
{
    border: 0;
    margin:14px;
}

    iframe#rahmenbox
    {
         width: 360px;
         height: 244px;
    }

    iframe#isets {
        width: 100%;
        height: 400px;
        margin: 0;
    }

/*Überschrift "Ihr modernes Fotolabor"*/
h2
{
    color:#00AAAA;
    font-family: 'Orbitron', sans-serif;    
    font-size: 1.5rem;    
    font-weight: lighter;
    font-stretch: expanded;        
}

/*Bei großem Display sichtbar*/
#slideshow_text02 {
    display: inline-block;
}

h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 8px;
    justify-self: flex-start;
    text-align: left;
}

h4 
{
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 15px;
    max-width: 100%;
    margin-bottom: 12px;
}

h5 {
    color: #00AAAA;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: lighter;
    font-stretch: expanded;    
}

h6 {
    color: #00AAAA;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: lighter;
    font-stretch: expanded;
    margin-top:30px;
}

mark {
    background-color: transparent;
    animation-name: bg_color_animation;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes bg_color_animation
{
    /*0%   {background-color: transparent; transform: scale(1);}
    50%  {background-color: rgba(255, 0, 0, 0.2); transform: scale(1.2);}
    100%  {background-color: transparent; transform: scale(1);}*/
    0% {        
        transform: scale(1);    }

    50% {        
        transform: scale(1.2);    }

    100% {        
        transform: scale(1);    }
}

/*Animation der Überschrift*/
#slideshow 
{
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items: flex-end;
    margin-left: auto;
    margin-right: auto;
    padding-bottom:5px;
    opacity: 0;
    transition: opacity 3s linear;
    border-bottom-width:2px;
    border-bottom-color:#00aaaa;
    border-bottom-style:solid;
}

/*Bilder*/
img.zoom
{
    margin: 10px;    
    box-shadow: 5px 5px 7px #aaa;    
}

    img.zoom:hover 
    {
        transform: scale(1.1);
    }

img.zoom_stark 
{
    margin: 10px;
    box-shadow: 5px 5px 7px #aaa;
}

    img.zoom_stark:hover 
    {
        transform: scale(2);
    }

div 
{
    color: #333;
    font-weight: normal;
    text-align:left;    
}

.div_mwst 
{
    padding:5px;
    margin-top:5px;
    font-size:1rem;
    line-height:1.2rem;
}

/*Kacheln der Produktübersicht*/
.flex_home 
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;   
    width: 100%;
    margin-top:20px;
}    

    .flex_home button 
    {
        display: flex;
        flex-direction:column;
        justify-items: center;
        width: 20%;
        min-width: 260px;
        margin: 10px;
        background-color: white;
        border-top-right-radius: 30px;
        transition: transform 1s linear;
        transform: scale(0);
    }

        .flex_home button span 
        {
            height:40px;
            font-family: 'Orbitron', sans-serif;
            font-weight: bold;
            align-self: flex-start;
            margin-left: 10px;
            margin-top: 10px;
            letter-spacing: 2px;
            color: #777;
            font-size: 1.2rem;
        }

        .flex_home button img 
        {
            align-self:center;
            width: 50%;
        }

    

.figure_backprint
{
    width:360px;
    padding:5px;
    margin:5px;
    border:solid;
    border-width:1px;
    border-color:#999;    
    border-radius:10px;
    font-size:1rem;
}

.figure_backprint img
{    
    border-radius:10px;
}

.flex_h_center
{
    display:flex; 
    flex-direction:row;
    justify-content:center;    
    align-items:center;    
    flex-wrap:wrap;
    max-width:100%;
}

.flex_h_top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:flex-start;
    flex-wrap: wrap; 
}

.flex_h_kontakt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border: solid;
    border-width: 3px;
    border-color: #aaa;
    border-radius: 10px;    
    margin-top: 15px;
    padding: 6px;
    width: 390px;
}

.flex_h_kontakt span
{
    font-size:6rem;
    margin-left:2px;
    margin-right:2px;
    color:#aaa;
}

.flex_h_kontakt p
{
    text-align:left;    
    color:#333;    
}

.flex_h_kontakt a
{
    text-decoration:none;
}

.flex_v_article
{
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top:20px;
}
    

    .flex_v {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

.flex_v p {
    width: 100%;
}

.flex_v span
{
    font-size:2rem;
    margin-left:2px;
    margin-right:2px;
}

.flex_v_center
{
    display:flex;    
    flex-direction:column;    
    justify-content:center;    
    align-items:center;    
    align-content:center;    
    flex-wrap:wrap;
    /*width:100%;    */
}

.flex_v_left
{    
    display:flex;    
    flex-direction:column;    
    justify-content:flex-start;      
}

/*article:not(:target)
{ 
    display:none;
}

article:target
{ 
    display:flex;
}    */

/*Tabs der Unterseiten*/        
div.menu02
{
    display:flex; 
    flex-direction:row;    
    flex-wrap:wrap;    
    justify-content:center;
    margin-top:10px;
    margin-bottom:10px;
}

    div.menu02 a 
    {
        color: #fff;
        text-decoration: none;
        font-weight: normal;
        background-color: #579eca;
        padding: 5px 10px;
        margin: 3px;
        font-size: 1.2rem;
    }
    
        /*Tab der gerade angeklickt ist*/
        div.menu02 a#inactive 
        {
            color: #fff;            
            background-color:mediumvioletred;
        }
        

/*Aufzählungslisten, zB. der Papiere*/
ul 
{
    display: flex; 
    flex-direction: column;    
    justify-content: flex-start;    
    align-items: flex-start;    
    align-content: center;
    flex-wrap: wrap;
    color: #333;    
}

    ul li
    {
        list-style-type: square;
        list-style-position:outside;
        margin-left:20px;
        text-align: left;
    }

.details_paper ul 
{
    margin-top: 4px;
    margin-bottom:4px;
    align-content: flex-start;
}

.details_paper li
{
    font-size: 0.9rem;
    line-height: 1.2rem;
    text-align: left;
}

.details_paper summary 
{
    cursor:pointer;
}

table
{    
    background:#fefefe;
    font-size:1rem;
    margin:auto;
    border-collapse: collapse;     
}    

    /*zellen*/
    table th, table td 
    {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
        /*white-space: nowrap;*/
        border-color: #888;
        line-height:1.6rem;
    }    

    /*Linien zwischen den Zeilen*/
    table tr 
    {        
        border-width: 0;       
    }    

    table tr:hover
    {
        background:rgba(255, 0, 0, 0.2);
    }

    /*Tabellenkopf (Überschrift)*/
    table th 
    {
        padding-top:8px;
    }

    table tr.span 
    {
        background-color: #eee;
    }

    table tr.span td {
        padding-top: 8px;
        padding-bottom: 4px;
    }

    table.table01 tr:nth-child(2n-1)
    {
        background:#ddd;
    }

#link_fotoportal 
{    
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    letter-spacing: 3px;    
    text-shadow: 0 -1px #000, 1px 0 #000, 0 1px #000, -1px 0 #000, 2px 2px 3px #000;
    border-width: 0;
}

#link_fotoportal:hover
{        
    text-shadow: 0 0 1px #ff6a00, 0 0 1px #ff6a00, 0 0 1px #ff6a00;
}

.fig_animation
{
 position:relative;
}

.fig_animation figure {
    position: absolute;
    box-shadow: 5px 5px 7px #aaa;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 40s;
}

.fig_animation img {
    width: 300px;
}

    .fig_animation figure:nth-of-type(1) {
        animation-name: fadingAnimation01;
    }

    .fig_animation figure:nth-of-type(2) {
        animation-name: fadingAnimation02;
    }

    .fig_animation figure:nth-of-type(3) {
        animation-name: fadingAnimation03;
    }

    .fig_animation figure:nth-of-type(4) {
        animation-name: fadingAnimation04;
    }

    .fig_animation figure:nth-of-type(5) {
        animation-name: fadingAnimation05;
    }

    .fig_animation figure:nth-of-type(6) {
        animation-name: fadingAnimation06;
    }

    .fig_animation figure:nth-of-type(7) {
        animation-name: fadingAnimation07;
    }

.figure_180 {
    width: 180px;
    height: 269px;
}

    .figure_180 img {
        width: 180px;
    }

.figure_270 {
    width: 270px;
    height: 179px;
}

    .figure_270 img {
        width: 270px;
    }

@keyframes fadingAnimation01 {
    0% {
        opacity: 1;
    }

    8% {
        opacity: 1;
    }

    16% {
        opacity: 0;
    }

    24% {
        opacity: 0;
    }

    33% {
        opacity: 0;
    }

    42% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    59% {
        opacity: 0;
    }

    67% {
        opacity: 0;
    }

    76% {
        opacity: 0;
    }

    84% {
        opacity: 0;
    }

    92% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadingAnimation02 {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 0;
    }

    16% {
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    42% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    59% {
        opacity: 0;
    }

    67% {
        opacity: 0;
    }

    76% {
        opacity: 0;
    }

    84% {
        opacity: 0;
    }

    92% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadingAnimation03 {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 0;
    }

    16% {
        opacity: 0;
    }

    24% {
        opacity: 0;
    }

    33% {
        opacity: 1;
    }

    42% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    59% {
        opacity: 0;
    }

    67% {
        opacity: 0;
    }

    76% {
        opacity: 0;
    }

    84% {
        opacity: 0;
    }

    92% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadingAnimation04 {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 0;
    }

    16% {
        opacity: 0;
    }

    24% {
        opacity: 0;
    }

    33% {
        opacity: 0;
    }

    42% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    59% {
        opacity: 1;
    }

    67% {
        opacity: 0;
    }

    76% {
        opacity: 0;
    }

    84% {
        opacity: 0;
    }

    92% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadingAnimation05 {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 0;
    }

    16% {
        opacity: 0;
    }

    24% {
        opacity: 0;
    }

    33% {
        opacity: 0;
    }

    42% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    59% {
        opacity: 0;
    }

    67% {
        opacity: 1;
    }

    76% {
        opacity: 1;
    }

    84% {
        opacity: 0;
    }

    92% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadingAnimation06 {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 0;
    }

    16% {
        opacity: 0;
    }

    24% {
        opacity: 0;
    }

    33% {
        opacity: 0;
    }

    42% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    59% {
        opacity: 0;
    }

    67% {
        opacity: 0;
    }

    76% {
        opacity: 0;
    }

    84% {
        opacity: 1;
    }

    92% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
@keyframes fadingAnimation07 {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 0;
    }

    16% {
        opacity: 0;
    }

    24% {
        opacity: 0;
    }

    33% {
        opacity: 0;
    }

    42% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    59% {
        opacity: 0;
    }

    67% {
        opacity: 0;
    }

    76% {
        opacity: 0;
    }

    84% {
        opacity: 0;
    }

    92% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

fieldset 
{
    width: 500px;
    padding: 10px;
    margin: 10px;
    border-width: 2px;
    border-color: aliceblue;
    background-color:#fff;
}

legend
{
    background-color:antiquewhite;
}