.accordion  {
    background-color: #32bdc7;
    color: #FFF;
    cursor: pointer;
    padding: 15px 20px;
    width: 95%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-top: 10px;
}

 
.accordion:after  {
    content: '\002B';
    color: #FFF;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    
}

.accordion .active:after {
    content: "\2212";
    color: #FFF;
}

.panel {
    padding: 0 10px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border: none;
    margin-bottom: 0;
}

.panel > ul {
  margin: 15px;
}



 /* Accordion */

.accgroup {
  
}

.accgroup .acc-container {
  position: relative;
  margin: 5px;
}

.accgroup .acclabel {
    position: relative;
    cursor: pointer; 
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #CCC;
        align-items: center;
}

 

.acclabel:hover > h6 , .acclabel:hover > p{
  color: #32bdc7;
}

.acclabel > p , .acclabel > h6 {
  
  font-size: 16px;
}

.accgroup .acclabel::after
{   content: "\F27E";
    font-family: "bootstrap-icons";
    font-weight: bold;
    font-size: 16px;
    color: #17a2b8;
  margin: 10px;
} 

.accgroup .acc-container.active .acclabel::after {
  content: "\F281";
    font-family: "bootstrap-icons";
    font-weight: bold;
    font-size: 14px;
    color: #17a2b8;
 margin: 10px;
}


.accgroup .acc-content {
  position: relative;
  height: 0; 
  overflow: hidden;
  transition: 0.5s;
  word-break: break-word;
 
}

 
.accgroup .acc-container.active .acc-content {
   height: 100%;
   word-break: break-word;
   padding: 10px 10px 10px 10px;
}

.accgroup .acc-container.active .acc-content > p {
 margin-bottom: 0px;
}

