html, body {
    overflow-x: visible;
}
#topList {
	padding-top: 100px;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 0 !important;
}

#linea {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.hideCol {
    display: none;
}

.ulThreeCol ul {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
}

.ulTwoCol ul {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}
.ulSixCol ul {
    -webkit-columns: 6;
    -moz-columns: 6;
    columns: 6;
}

.accordionList {
    min-height: 67.4%;
}

.contactfooter {
    position: relative;
    margin-top: 15px;
}

@media (max-width: 600px) {
    /*change number on columns for mobiles*/
    .mobileCol ul {
        columns: 2 ;
    }
}
.flagCountry {
    text-align: center;
}
.flagCountry p{
    margin-bottom: 0;
}


/*Style for accordion */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-weight: bold;
    font-size: 20px;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.panel {
    padding: 0 18px;
    background-color: white;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
}

.accordion:after {
    content: '\002B'; /* Unicode character for "plus" sign (+) */
    color: #777;
    float: right;
    font-weight: bold;
    margin-left: 5px;
}

.active:after {
    content: "\2212"; /* Unicode character for "minus" sign (-) */
}