@charset "utf-8";
/* CSS Document */

.rwd-table {
  margin: 1em 0;
  min-width: 100%;
}
.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.rwd-table th {
  display: none;
  color:hsla(359,57%,54%,1.00);
}
.rwd-table td {
  display: block;

  
}
.rwd-table td:first-child {
  padding-top: .5em;
  
}
.rwd-table td:last-child {
  padding-bottom: .5em;
  
}
.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 8.5em;
  display: inline-block;
  color:hsla(359,57%,54%,1.00);
}
@media (min-width: 480px) {
  .rwd-table td:before {
    display: none;
  }
}
.rwd-table th, .rwd-table td {
  text-align: left;
  
}
@media (min-width: 480px) {
  .rwd-table th, .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child, .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child, .rwd-table td:last-child {
    padding-right: 0;
  }


}


button.accordion {
	background-color: #E4E4E4;
	color: #444;
	cursor: pointer;
	padding-top: 15px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 15px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
	background-color: #F3E3D5;
}

button.accordion:after {
	content: '\002B';
	color: #000000;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

button.accordion.active:after {
    content: "\2212";
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion {
	background-color: hsla(0,0%,96%,1.00);
}

