﻿
*{
margin:0px;
padding:0px;
}
.collapsible 
{
  
  /*background-color: #777; */  
  background-color: #E51207;
  color: white;
  cursor: pointer;
  padding: 1px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  
  vertical-align:middle;
  text-indent:10px;
  
  
  
  
  
}

.active, .collapsible:hover {
/*background-color: #555;*/
  
  background-color: #Ef7207; 
}

.collapsible:after 
{
content: '\002B';
  color: white;
  font-weight: bold;
  float: left;
  margin-left: 5px;
 font-size:25px;
 

  
 
 
  
}

.active:after {
  content: "\2212";
  text-align:left;
  
  
}

.content {
  padding: 10 13px;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}