.nn-table {
   border-collapse: collapse;
   border-spacing: 0px 0px;   
   border: 1px solid gray;
   padding: 5px;
   width: 100%;
}
.nn-table tbody tr:nth-child(odd) {
  background: #ddd;
  border: 1px solid gray;
}
.nn-table tbody tr:hover {
  background: yellow;
  background: #b5d5e7;
  border: 1px solid gray;
}
.nn-table th {
  background: #4db2ec;
  border: 1px solid gray;
  padding: 5px;
  color: #eee;
  vertical-align: top;
}
.nn-table td {
  border: 1px solid gray;
  padding: 5px;
}

.nn-control select{
  background: rgb(59,108,166);
  background-color: rgba(59, 108, 166, 0.3);
  border: 0.1;
  border-color: #f0f0f0;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 2px;
  padding-bottom: 3px;
  border-radius: 5px;
}  

.framed {
  border-top: solid;
  border-bottom: solid;
  border-right: solid;
  border-left: solid;
  border-width: thin; 
  border-color: #f0f0f0;
  box-shadow: 3px 3px 2px 0px #f0f0f0;
}

.visible-large {}
.visible-small { display: none !important; }


/***** Anzeigenschluss *****/
.anzeigenschluss { font-size: 14px; }

.auslegestellen td {
  vertical-align: top;
}

/***** Mitarbeiter *****/

.mitarbeiter .flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
	
.mitarbeiter .flex-item {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-color: white;
  font-size: 12px;
  width: 44%; 
  min-width: 300px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: 0; 
}

#fi-name {
  font-size: 20px;
  text-align: center;
  margin-bottom: 2px;
}

#fi-caption {
  font-size: 14px;
  //text-transform: uppercase;  
  text-align: center;
  margin-bottom: 9px;
  line-height: 18px;
}

#fi-text {
  font-size: 14px; 
  line-height: 22px;
  text-align: center;
  margin-bottom: 0px;
}

#fi-footer {
  font-size: 8px; 
  text-align: center;
  line-height: 18px;
  margin-top: 0px;
  margin-bottom: 0px;
}

/***** Mitarbeiter Dropdown *****/

.filter-dropbtn {
  background-color: rgb(77,178,236);
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  min-width: 100px;
}

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

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

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

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

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

.filter-dropdown:hover .filter-dropbtn {
  background-color: rgb(77,178,236);
}

/***** Media *****/
@media screen and (min-width: 1020px) and (max-width: 1140px) {
  .anzeigenschluss { font-size: 11px }
}

@media screen and (min-width: 681px) and (max-width: 1019px) {
  .anzeigenschluss { font-size: 10px }
}

@media screen and (max-width:680px)
{
 .visible-large { display: none !important; }
 .visible-small { display: block !important; }

 .anzeigenschluss { font-size: 12px; }
 
 .nn-table td {
    border: 1px solid gray;
    padding: 5px;
    vertical-align: top;
  }
	
}

@media screen and (max-width:680px)
{
 .mitarbeiter .flex-item {
  background-color: white;
  width: 80%; 
  margin-left:auto;
  margin-right:auto;
}
	
}