/* Accordions */
.accordion {
	all: unset;
    background-color: #fff;
    border-bottom: solid 1px #444;
    color: #000;
    cursor: pointer;
    padding: 18px;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    text-align: left;
    font-size: 17px;
    font-weight: bold;
    outline: none;
    transition: 0.4s;
}
.active {
    background-color: #fff;
}
.accordion:hover {
    background-color: #f0f0f0;
}
.panel {
    margin: 12px auto;
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    max-width: 500px;
    text-align: left;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.panel ul {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 10px;
}
.panel li{
    list-style-type: none;
    font-size: 17px;
}
.panel a:hover{
    text-decoration: underline
}
.panel li::before {
    content: "\1F4CC ";
  }
.panel p {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
}
.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #000;
    float: right;
    margin-left: 5px;
}
.accordion.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}
/* End Accordions */
 

@media screen and (min-width: 768px) {
    .accordion {
        max-width: 80% !important;
    }
    .panel {
        max-width: 80% !important;
    }
    .column-list {
        column-count: 2; /* Imposta il numero di colonne desiderato */
        column-gap: 20px; /* Imposta la distanza tra le colonne */
        list-style: none;
        padding: 0;
  }
  .accordion_seobrain div.panel {
     /*   max-height: 100%;*/
  }
}
 
@media screen and (min-width: 900px) {
		.column-list {
        column-count: 3; /* Imposta il numero di colonne desiderato */
}