/* Style the button that is used to open and close the collapsible content */
.collapsible, .collapsed{
 background-color: #eee;
 color: #444;
 cursor: pointer;
 width: 100%;
 border: none;
 outline: none;

 text-align: left;
 color: #2e1a46; /*Dark purple*/
 font-weight: bolder;
 font-size: 18px;
 font-size: calc(10px + 1.2vw);
 font-size: min(calc(10px + 1.2vw), 30px);

 border-radius: 15px;

 padding-left:2vw;
 padding-right:2vw;

 margin-bottom:0;
 margin-top:1vw;
 margin-bottom: -2vw;

}

/* 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) */
.active, .inactive, .collapsible:hover, .collapsed:hover {
 background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
    background-color:#ccc;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;

 	margin-left:2vw;
    margin-right: 2vw;
    padding-left: 1vw;
    padding-right: 0px;

    padding-top: 2vw;
    padding-bottom: 0px;
    margin-bottom: 0px;
    margin-top:0px;
}

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 18px;
  font-size: calc(10px + 1.2vw);
  font-size: min(calc(10px + 1.2vw), 30px);
  float: right;
  margin-left: 5px;
}

.active:after {
  content: '\2796'; /* Unicode character for "minus" sign (-) */
}

.collapsed:after {
  content: '\2796'; /* Unicode character for "minus" sign (-) */
  font-size: 18px;
  font-size: calc(10px + 1.2vw);
  font-size: min(calc(10px + 1.2vw), 30px);
  float: right;
  margin-left: 5px;
}

.inactive:after {
   content: '\02795'; /* Unicode character for "plus" sign (+) */
}
