/* Custom Accordeon Styles */
.custom-accordeon-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.custom-accordeon-wrapper hr{
    border: none;
    height: 1px;
    opacity: 0.7;
    background: var(--neutral-700, #78919E);
}

.custom-accordeon-wrapper hr:last-of-type{
    display: none;
}



.custom-accordeon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.custom-accordeon-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

.custom-accordeon-additional-icon {
    display: flex;
    align-items: center;
}

.custom-accordeon-additional-icon svg{
    width: 28px;
    height: 28px;
}

.custom-accordeon-title {
    font-weight: bold;
}

.custom-accordeon-icons {
    display: flex;
    align-items: center;
}

.custom-accordeon-collapse-icon {
    display: flex;
    align-items: center;
}

.custom-accordeon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
}

.custom-accordeon-icon svg {
    width: 12px;
    height: auto;
}

.custom-accordeon-icon-active {
    display: none;
}

.custom-accordeon-content {
    display: none;
    padding-top: 20px;
}

.custom-accordeon-content p{
    margin: 0px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: start;
    margin-bottom: 12px;
}

.custom-accordeon-content p:last-of-type{
    margin-bottom: 0px;
}

.custom-accordeon-content p:before{
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('/wp-content/uploads/2026/02/IconCheck.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}