﻿@import url(genericons/genericons.css);

/* noto-sans-regular - latin */
@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    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 */
}

*, *:before, *:after
{
    padding:0;
    margin:0;
    box-sizing:border-box;
    transition: background 1s linear;
}

html 
{
    scroll-behavior: smooth;
}

body {    
    display: flex;
    flex-direction: column;    
    height: 100vh;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
}

header {
    flex-shrink: 0;
    font-size: 12px;
    background-color: #044;
    margin-bottom: 10px;
}

main {
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    flex: 1 0 auto;
}

footer {
    background-color: #044;
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

button
{
    border:0;
    cursor:pointer;
    outline:none;
}

button::-moz-focus-inner/*avoid the dotted line in Firefox*/
{
  border: 0;
}

footer button {
    background: transparent;
    border-right: 1px solid #fff;
    padding-left: 5px;
    padding-right: 5px;
    color: white;
    transition: color 1s linear;
}

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

footer button:hover
{
    color:wheat;
}

body, input, select, p, button, legend, textarea, ul, li
{
    font-size:1rem;
}

figcaption p
{
    font-size:0.9rem;
}

nav.navigation
{
    display:flex;
    flex-direction:row;    
    flex-wrap:wrap;    
    justify-content:center;    
    margin-bottom: 10px;
}

    nav.navigation button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 1px;
        padding-right: 10px;
        border-radius: 0 15px 15px 0;
        margin: 5px;
        color: #fff;
        transition: all 1s linear;
    }

        nav.navigation button.active {
            background-color: #066;
        }

        nav.navigation button.noactive {
            background-color: #022;
        }

            nav.navigation button.noactive:hover {
                color: antiquewhite;
            }   

        nav.navigation span
        {
            font-size:36px;
            margin-right:2px;
        }

        nav.navigation p 
        {
            font-size: 1.2rem;
        }

#nav_goto 
{   
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    margin-bottom: 5px;
    width:100%;
    min-height:40px;
    flex-wrap:wrap;
}

    #nav_goto button {
        display: none;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        border-width: 0;
        background-color: #066;
        color: #fff;
        width: 200px;
        height: 32px;
        margin: 5px;
        transition: all 1s linear;
    }

        #nav_goto button:hover {
            color: antiquewhite;
        } 

#startpage
{
    margin-top:10px;
    display:flex;    
    flex-direction:column;    
    justify-content:center;    
    align-items:center;    
    flex-wrap:wrap;
}

#startpage input
{
    width:240px;
    margin:4px;
    text-align:center;
}

#startpage select 
{
    width: 240px;
    height: 26px;
    margin: 4px;
    text-align: center;
}

#p_wrong_code
{
    font-size:1.2rem;
    color:#b200ff;
    margin:3px;
    display:none;
}

#p_remark_dealer, #p_remark_dealer_album {
    font-size: 0.9rem;
    background-color: aliceblue;
    color: black;
    padding: 10px;
    border-radius: 14px;
    margin: 5px;
    max-width: 800px;    
}

#img_logo {
    display: none;
    object-fit: none;    
    margin: 5px;
}

#image_list_foto_info02 {
    color: red;
    animation-name: color_animation;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes color_animation
{
    0%   {color: red;}
    10%   {color: red;}
    60%  {color: black;}
    100%  {color: red;}
}

h1 {
    color: #fff;    
    padding-top: 4px;
    padding-bottom: 6px;
}

h2
{    
    font-size:1.1rem;
    text-shadow: 1px 1px 2px #fff;
}

/*Überschriften der Unterseiten*/
h3 
{    
    margin-bottom: 5px;
    color:#fff;
    font-size: 1.4rem;
    font-weight:bold;
    text-shadow: 0 0 0.2em #005050, 0 0 0.2em #005050, 0 0 0.2em #005050;    
}

/*Zwischen-Überschriften*/
h4
{
    margin-top: 15px;
    margin-bottom: 5px;
    color:#333;
    font-size: 1.0rem;
    font-weight:bold;    
}

.flex_v_start
{    
    margin-top:10px;
    font-size:0.8rem;

    display:none;

    -webkit-flex-direction:column;
    flex-direction:column;

    -webkit-justify-content:flex-start;
    justify-content:flex-start;
    
    -webkit-align-items:center;
    align-items:center;

    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
}

.flex_v_start_visible
{    
    margin-top:10px;
    font-size:0.8rem;

    display:-webkit-flex;
    display:flex;

    -webkit-flex-direction:column;
    flex-direction:column;

    -webkit-justify-content:flex-start;
    justify-content:flex-start;
 
    -webkit-align-items:center;
    align-items:center;

    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
}

.flex_h_start_visible_no_wrap 
{
    display: -webkit-flex;
    display: flex;

    -webkit-flex-direction: row;
    flex-direction: row;

    -webkit-justify-content: flex-start;
    justify-content: flex-start;

    -webkit-align-items: center;
    align-items: center;

    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex_v_viel_text
{
    margin-top:20px;
    font-size:0.8rem;
    padding-left:5%;
    padding-right:5%;
    line-height:1.5;
    display:none;
    flex-direction:column;    
    justify-content:flex-start;    
    align-items:center;    
    flex-wrap:wrap;
}

.flex_v_viel_text p
{
    width:100%;    
}

.flex_v_viel_text div
{
    width:100%;    
}

.flex_v_wenig_text
{
    margin-top:20px;
    font-size:0.9rem;
    padding-left:5%;
    padding-right:5%;
    line-height:1.5;

    display:none;
    
    -webkit-flex-direction:column;
    flex-direction:column;

    -webkit-justify-content:flex-start;
    justify-content:flex-start;
    
    -webkit-align-items:center;
    align-items:center;

    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
}

.flex_v_wenig_text p
{
    width:100%;    
}

.flex_v_wenig_text div
{
    width:100%;    
}

.flex_h_center
{
    display:flex; 
    flex-direction:row;    
    flex-wrap:wrap;    
    justify-content:center;
}

#info_in_den_warenkorb {
    display: flex;
    flex-direction: row;
    align-items:center;
    color: #080;
    margin-top: 10px;
    width: 280px;
    transform: scale(0);
    transition: transform 2s linear;
}

    #info_in_den_warenkorb span
    {
        font-size:2rem;
    }

    #info_in_den_warenkorb p 
    {
        font-size: 1.1rem;
    }

#div_warenkorb_is_empty
{
    font-size:1.4rem;
    color:darkblue;
    margin-top:40px;
}

#order_warenkorb_is_empty {
    font-size: 1.4rem;
    color: darkblue;
    margin-top: 40px;
}

#order_mindestbestellwert {
    display:none;
    font-size: 1.4rem;
    color: darkblue;
    margin-top: 40px;
}

address {
    font-style: normal;
}

#div_images_select_data
{
    white-space:nowrap; /* this does the trick */          
    overflow-x:auto;
    overflow-y:hidden;
    vertical-align:top;    
    margin-bottom:20px;
}

    #div_images_select_data figure {
        display: inline-block;
        margin: 2px;
        padding:1px;
        background-color: #ccc;
    }

    /*#div_images_select_data figure img {
        box-shadow: 10px 10px 5px #ccc;
        border-radius:30px;
    }*/

#image_list_foto figure
{
    margin:1px;
    border-width:2px;
    border-style:solid;
    display:-webkit-flex;
    display:flex;
    flex-direction:column;    
    justify-content:flex-start;    
    flex-wrap:nowrap;
}

#image_list_foto figure img
{
    height:160px;
    cursor:pointer;
}

/*Rand blau wenn aktiv*/
#image_list_foto figure.noactive
{
    border-color:silver;
}

/*Rand weiß wenn nicht aktiv*/
#image_list_foto figure.active
{
    border-color:#87cefa;    
}

/*Dateinamen anzeigen wenn nicht aktiv*/
#image_list_foto figure.noactive .thumb_info
{    
    display:block;
}

/*Dateinamen ausblenden wenn aktiv*/
#image_list_foto figure.active .thumb_info
{    
    display:none;
}

/*Button ausblenden wenn nicht aktiv*/
#image_list_foto figure.noactive .my_genericon_cart
{    
    display:none;
}

/*Button anzeigen wenn aktiv*/
#image_list_foto figure.active .my_genericon_cart
{    
    display:block;    
}

.my_genericon_cart {
    font-size: 16px;
    padding: 5px;
    vertical-align: top;
    text-align: center;
    display: inline-block;
    color: #fff;
    background-color: #066;
    font-family: 'Noto Sans', sans-serif;
    margin-top: -13px;
    cursor: cell;
}

    .my_genericon_cart:before 
    {        
        content: "Produkt wählen";
    }

    .my_genericon_cart:hover {
        color: antiquewhite;
    } 

#image_list_foto figcaption
{    
    color:#000;
}

/*Dialog zur Eingabe der Bilddaten*/
#container_select_data
{
    margin-top:10px;

    display:none;
        
    -webkit-flex-direction:row;
    flex-direction:row;

    -webkit-justify-content:center;
    justify-content:center;

    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;

    -webkit-align-items:center;
    align-items:center;
}

#container_select_data input
{    
    height:1.5rem;
    margin:3px;
}

#container_select_data select
{
    height:1.5rem;
    margin:3px;
}

#container_preise h2
{
    margin-top:15px;
    margin-bottom:6px;
}

#container_preise table
{
    margin-top:5px;    
}

.row_warenkorb
{
    padding:5px;
    padding-bottom:0;
    padding-top:0;
    margin-top:5px;    
    background:linear-gradient(to bottom, #ccc, #eee, #ccc);    

    display:-webkit-flex;
    display:flex;

    -webkit-flex-direction:row;
    flex-direction:row;

    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;

    -webkit-justify-content:flex-start;
    justify-content:flex-start;

    -webkit-align-items:center;
    align-items:center;    
}

/*Bild zum Löschen*/
.delete_img
{
    height:30px;
    margin-right:5px;
}

/*Absatz für Dateiname*/
.p_warenkorb_filename
{
    font-size:0.7rem;
    width:100px;
    text-align:center;
}

.row_warenkorb figure
{
    width: 100px; /*damit Zeile immer gleich lang bleibt*/
}

.row_warenkorb figure img
{
    height:50px;
}

.row_warenkorb input
{    
    width:50px;
    margin:4px;
}

.row_warenkorb .p_warenkorb_info
{    
    font-size:0.9rem;/*Produktbezeichnung im Warenkorb kleiner*/ 
    width:340px;
    overflow:hidden;/*zu langer Text wird abgeschnitten*/ 
}

.row_warenkorb .p_warenkorb_price
{    
    width:70px; 
    margin-left:5px;
    margin-right:3px;
}

#container_order
{
    margin-top:10px;
    font-size:0.8rem;
    display:none;
    flex-direction:row;    
    justify-content:center;    
    align-items:stretch;    
    flex-wrap:wrap;
}

#container_order fieldset
{
    margin:8px;
    border-width:2px;
}

    #container_order legend
    {
        color:#555;
    }

    .fieldset_adress input 
    {
        display: block; /*untereinander*/
        width: 240px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2px;
        padding: 2px;
    }

    .fieldset_adress select 
    {
        display: block; /*untereinander*/
        margin-bottom: 2px;
        margin-left: auto;
        margin-right: auto;
    }

    #container_order fieldset#field_order_upload div button
    {
        background:transparent;
        border-width: 0px;
        font-size:0.9rem;
        text-decoration:underline;
        margin-bottom:2px;
    }

    /*Kommentar-Feld*/
    #container_order textarea
    {
        margin-top:5px;
        width: 100%;
    }

#select_alben_from_event option
{
    font-size:18px;
    margin:0;
    padding:0;
}

input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
}

input[type=checkbox] + label 
{
    text-decoration: line-through; /*nicht durchstreichen*/
}

input[type=checkbox]:checked + label 
{
    text-decoration: none; /*nicht durchstreichen*/
}

.check_neutral 
{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 4px;
    padding: 2px;
}

.check_gelesen 
{
    display: flex;
    flex-direction: row;    
    justify-content: flex-start;    
    align-items: center;    
    flex-wrap: nowrap;
    margin-bottom: 4px;
    padding: 2px;
    background: #f55;    
    transition: background 1s linear;
}

.check_gelesen label {
    margin-left:3px;
}

.button_okay {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 7px;
    padding-right: 10px;
    margin-top: 10px;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    border-width: 0;
    background-color: #066;
    color: #fff;
    transition: all 1s linear;
}

    .button_okay:hover {
        color: antiquewhite;
    }    

    .button_okay span 
    {
        font-size: 32px;
        margin-right: 2px;        
    }    

   .button_okay p 
    {
        font-size: 1.1rem;
    }

.button_important {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 7px;
    padding-right: 10px;
    margin-top: 10px;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    border-width: 0;
    background-color: red;
    color: #fff;
    font-size:1.4rem;
    text-decoration:underline;
}

    .button_important:hover {
        background-color: ForestGreen;
    }    

    .button_important p {
        font-size: 1.4rem;
    }

.button_cancel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 7px;
    padding-right: 10px;
    margin-top: 10px;
    margin-bottom: 2px;
    margin-right: 10px;
    border-width: 0;
    background-color: #066;
    color: #fff;
    transition: all 1s linear;
}

    .button_cancel:hover {
        color: antiquewhite;
    }

    .button_cancel span {
        font-size: 20px;
        margin-right: 4px;
    }

    .button_cancel p {
        font-size: 1.1rem;
    }

.button_cancel:hover
{
    background:DarkRed;
}

.button_select {
    padding: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin: 2px;
    border-width: 0;
    background-color: #066;
    color: #fff;
    min-width: 200px;
    height: 30px;
    transition: all 1s linear;
}

    .button_select:hover {
        color: antiquewhite;
    }

/*Tabelle*/
table
{
    font-size:0.9rem;
    margin-bottom:10px;
    margin-left:auto;
    margin-right:auto;
    padding:4px;    
    border:1px solid #000;
    border-collapse:collapse;
}

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

table th
{
    padding:4px; 
    text-align:right;
    border-width:0;
}

table td 
{
    padding:4px; 
    padding-top:2px; 
    padding-bottom:2px; 
    text-align:right;
    border-width:0;
}

fieldset
{
    padding:5px;
}

fieldset p
{
    margin-top:6px;
}

.div_select 
{
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;    
    height:60px;
}

.div_select label{
    
    color: crimson;
}

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