/***************************
* mainpage - Einteilung
***************************/
* {
    font-family: verdana, sans-serif;   
}

body {
    margin-top: 8px;
    margin-left: 15px;
    margin-right: 15px;
}

section {
    //background-color: #111;
    margin-top: 15px;
    margin-left: 210px;
    margin-right: 15px;
    padding: 8px;
}

section.withoutmenu {
    margin-left: 15px;
}

aside {
    //background-color: #AAA;
    margin-left: 15px;
    width: 180px;
    float: left;
}


section a,
aside a{
    color: #008;
    background-color: #fff; /* #001eae; */
    -moz-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
	text-align: center 
}
aside a{
	display: block;	
	padding-top: 10px;
	padding-bottom: 10px;
    background-color: #eee;
}

section a:hover,
section a:focus,
aside a:hover,
aside a:focus {
    color: #1a4c65; /* #001eae; */
    background-color: #d0ddef;
    -moz-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
}

.dynamPicPage ul {
	list-style: none;
}
.dynamPicPage li {
	display: block;
	float:left;
	text-align: center;
	width: 300px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	border: 1px solid #fff;
}
.dynamPicPageEnd {
	clear:left;	
}


/*
SorceCode from
https://www.geeksforgeeks.org/how-to-add-image-into-dropdown-list-for-each-items/
*/

.dropbtn {
    background-color: #bd601d;
    /* color: white; */
    padding: 3px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    min-width: 160px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px
    0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    font-weight: normal;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #9e3ed9;
}

.list-item {
    display: inline-block;
    margin: 10px;
    width: 300px;
    height: 100px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    line-height: 100px;
}
@media (max-width: 600px) {
    .list-item {
        width: calc(100% - 20px);
    }
}