.at-accordion-container{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #0a0a28;
    color:  #fefefe;
}

.at-accordion {
    width: 100%;
    max-width: 1024px;
    margin: auto;
}


.at-accordion-btn {
    width: 100%;
    background-color: #0a0a28;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;

    color: #fefefe;
    font-family: "DM Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;

    padding: 30px 0;

    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: nowrap;

    border-bottom: solid 1px  #fefefe;
    border-radius: 0;
}

.at-accordion-btn:hover, .at-accordion-btn:focus, .at-accordion-btn:active{
    border-color:  #fefefe;
}

.at-panel {
    overflow: hidden;
    max-height: 0;
    padding: 0;
}

.at-panel.open {
    max-height: 500px; /* Imposta un valore abbastanza grande per permettere l'animazione */
    transition: max-height 0.4s ease-in;
}

.at-panel ul {
    list-style-type: none;
    padding: 10px 0;
    margin: 0;
}

.at-panel li::before{
    display: none;
}

.at-panel li {
    padding: 30px 0;
    border-bottom: 1px dashed  #fefefe;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.trasparenza-body .at-panel li {
    border-color: #0a0a28;
}

.at-panel li a {
    color:  #fefefe;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.at-scopriButton{
    color:  #fefefe;
    text-align: center;
    /* Botton */
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 17.6px */
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 60px;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    border: 1px solid  #fefefe;
    cursor: pointer;
}

.at-scopriButton::before {
    content: "";
    display: flex;
    width: 15px;
    height: 15px;
    background-image: url('img/ArrowBigBlack.svg');
    rotate: -45deg;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    transition: all 0.5s ease;
}

.at-scopriButton:hover::before {
    width: 30px;
    rotate: 0deg;
    transition: all 0.5s ease;
}

.at-category .openCircle
{
    display: flex;
    width: 60px;
    height: 60px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 1px solid var(--BIANCO, #F5F4F2);
    cursor: pointer;
    transition: 1s ease;
    border-color:  #fefefe;
}

.trasparenza-body .at-category .openCircle{
    border-color:  #0a0a28;
}

.at-category .openCircle.open
{
    background-color: white;
    transition: 1s ease;
}

.at-category .openCircle .cross{
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}

.at-category .openCircle .cross .crossVert {
    width: 2px;
    height: 15px;
    background-color:  #fefefe;
    position: absolute;
    transition: 1s ease;
}

.at-category .openCircle .cross .crossOriz {
    width: 15px;
    height: 2px;
    background-color:  #fefefe;
    position: absolute;
    transition: 1s ease;
}

.at-category .openCircle.open{
    border-color:  #fefefe;
    background-color:  #fefefe;
}

.at-category .openCircle.open .cross .crossVert, .at-category .openCircle.open .cross .crossOriz{
    background-color: #0a0a28 !important;
}

.at-category .openCircle.open .cross{
    transform: rotate(45deg);
}

/* Single */
.trasparenza-header{
    background: #0a0a28;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    gap: 30px;
    margin-bottom: -1px;
    padding: 120px 60px;
    overflow: hidden;
    transition: all 1s ease-in-out;
    color:  #fefefe;
}

.trasparenza-header h1{
    font-family: 'Onesto', sans-serif;
    font-size: 48px;
    line-height: 120%;
    font-weight: bold;
    letter-spacing: .1rem;
    margin-bottom: 0;
    text-transform: uppercase;

}

.trasparenza-body{
    background: #fefefe;
    padding: 60px 60px 0 60px;
}

/* Accordion Single */
.trasparenza-body .at-accordion {
    width: 100%;
    max-width: 1024px;
    margin: 20px auto;
}

.trasparenza-body .at-accordion-btn {
    width: 100%;
    background-color: #fefefe;
    color:  #0a0a28;
    padding: 10px;
    border: none;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.trasparenza-body .at-accordion-btn:hover {
    background-color: #fefefe;
}

.trasparenza-body .at-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
    background-color: #0a0a28;
}

.trasparenza-body .at-panel.open {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.trasparenza-body .at-panel ul {
    list-style-type: none;
    padding: 10px 0;
    margin: 0;
}

.trasparenza-body .at-panel li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.trasparenza-body .at-panel li a {
    text-decoration: none;
    color:  #0a0a28;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 20px;
}

.trasparenza-body .at-panel p{
    padding-top: 30px;
    padding-bottom: 30px;
}

.trasparenza-body .at-accordion-btn{
    color: #0a0a28;
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    border-bottom: solid 1px #0a0a28;
    padding-bottom: 30px;
    padding-top: 0;
    padding-left: 0;
}

.trasparenza-body .at-category {
    margin-bottom: 30px;
}

.trasparenza-body .downloadButton{
    width: 60px !important;
    height: 60px;
    border: solid 1px #0a0a28;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.trasparenza-body .at-category a{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-right: 5px;
}

.trasparenza-body h3{
    font-family: "DM Sans", sans-serif;
    color: #fefefe;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 30px;
}

.trasparenza-body .linkBandi{
    color: #fefefe;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%
}

.trasparenza-body .bandi-container{
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 60px;
}

.trasparenza-body .titleBandi{
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #fefefe;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.trasparenza-body .at-panel{
    background: none;
}

.contentPage{
    margin-bottom: 60px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

.trasparenza-body .at-panel p{
    padding: 0;
}

.trasparenza-body .at-panel ul.child-posts{
    flex-wrap: nowrap;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

.trasparenza-body .at-panel ul.child-posts li{
    width: 100%;
    max-width: unset;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.trasparenza-body .at-panel ul.child-posts li:hover{
    box-shadow: none;
}

@media screen and (max-width: 960px) {
    .standardHeader{
        padding: 30px 15px !important;
    }

    .trasparenza-header{
        padding: 100px 15px !important;
        padding-bottom: 60px !important;
    }

    .at-accordion-container{
        padding-left: 15px;
        padding-right: 15px;
    }

    .trasparenza-body{
        padding: 60px 15px;
    }

    .trasparenza-header h1{
        font-size: 36px;
    }

    .trasparenza-header h3{
        font-size: 18px;
    }

    .trasparenza-body .titleBandi{
        align-items: flex-start;
        flex-direction: column !important;
    }

    .at-accordion-btn {
        font-size: 32px;
    }

    .at-panel li a{
        font-size: 18px;
    }

    .trasparenza-body .at-accordion-btn{
        font-size: 24px;
        gap: 20px;
    }
}
