#residences {
	display: flex;
	justify-content: space-between;
color: var(--schwarz);
}
#residences table {color: var(--schwarz);}

/* Style the tab */
#residences .tab {
  overflow: hidden;
	display: flex;
	 flex-flow: column wrap;
width: 250px;
margin: 0 30px 30px 30px;
}


/* Style the buttons inside the tab */
#residences .tab button {
  border: 2px solid var(--accent1);
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 10px;
font-weight: bold;
background: transparent;
margin: 10px;
letter-spacing: 0.8pt;
text-transform: uppercase;
color: var(--schwarz);
}

/* Style the tab content */
#residences .tabcontent {
  display: none;
  padding: 6px 12px;
	box-sizing: border-box;
	width: 100%;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
text-align:  left;
}




/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.residence_flex{
	display: flex;
	flex-wrap: wrap;
}

.residence{
width: 45%;
	margin: 10px;
}

.residence_desc{
	height: 100px;
	overflow: auto;
	padding: 5px;
	box-sizing: border-box;
	text-align: left;
}

.residence_options{
	padding: 2px;
	text-align: center;
}