@charset "utf-8";
/* CSS Document */

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #233F2B;
  color: #FFFFFF;
  cursor: pointer;
  padding: 18px;
  display: block;
  width: 90%;
  min-width: 90%;
  font-size: 14px;
  text-align: left;
  letter-spacing: .02em;
  border: none;
  margin-left: 1%;
  margin-right: 1%;
  border-radius: 15px;
  outline: solid;
  outline-width: thin;
  outline-color: white;
  transition: .5s;
}

.panel p{
	margin:15px 0;
	width:90%;
}
.panel li{
	width:90%;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:hover {
  background-color: #7E9084;
}
.accordion:after {
  content: '\029FE'; /* Unicode character for "plus" sign (+) */
  font-size: 17px;
  color: #FFFFFF;
  float: right;
  outline-color: #FFFFFF;
}

.accordion.active:after {
  content: "\29FF"; /* Unicode character for "minus" sign (-) */
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  display: block;
  width: 100%;
  min-width: 100%;
  max-height:0;
  overflow: hidden;
  visibility: hidden;
  padding: 0 18px;
  background-color: white;
  transition: max-height 0.4s ease-out, visibility 0.4s ease-out; 
}

.panel.open {
	max-height: 2000px; 
	visibility: visible;
}
/*
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
*/

