#content-solutions .accordion {
    background-color: #0D8FC6;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
  }

  #content-solutions .active, .accordion:hover {
    /* background-color: #ccc; */
  }

  #content-solutions .accordion:after {
    content: '\FE40';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  #content-solutions .accordion.reset{
    background-color: #fafafa;
    color: #000;
    font-size: 16px;
    font-weight: bold;
  }

  #content-solutions .accordion.reset:after{
    content: '';
  }
  #content-solutions .accordion.reset:before {
    content: "\2715";
    color: #000;
    font-weight: bold;
    float: left;
    margin-right: 5px;
  }

  #content-solutions .panel {
    padding: 0 5px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 3px;
  }

  #content-solutions .panel .content{
      padding: 10px 0 5px;
      margin: 0;
  }
  #content-solutions .panel .content li{
    margin-bottom: 5px;
    }
    #content-solutions .panel .content li label{
        margin-left: 5px;
        font-size: 16px;
        }



#content-solutions input[type="checkbox"]:checked + label{
    font-weight: bold;
    color: #0D8FC6;
}

#content-solutions input[type="checkbox"]{
    width: 1.2em;
    height: 1.2em;
    background-color: white;
    border: 1px solid #D0D7D9;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    vertical-align: sub;
}

#content-solutions input[type="checkbox"]:checked{
    background-color: #0D8FC6;
    position: relative;
}

#content-solutions input[type="checkbox"]:checked::after{
    content: '\2713';
    color: #fff;
    text-align: center;
    opacity: 1;
    position: absolute;
    left: 0;
    right: 0;
    font-weight: bold;
    bottom: -4px;
}