/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 #dock-address-list-filter {
	text-align:center;
}
.dock-address-list-item h3{margin-bottom:15px;}

.dock-address-list-item {
    border:3px solid #ffffff;
    float:left;
    min-height:250px;
	height:auto;
    width:50%;
	background-color:#f2f2f2;
	padding:30px;
}
#dock-address-list-container{display:flex;max-width:1040px !important; flex-wrap: wrap; /* Standardwert = nowrap */margin-top:25px;}
@media screen and (min-width: 850px) {
	.dock-address-list-item {
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 1;
}
}

@media screen and (max-width: 850px) {
    .dock-address-list-item {
        width:100% !important;
    }
}

