.accordion-label {
    cursor: pointer;
    padding-top:36px;
    padding-right:43px;
    padding-bottom:36px;
    padding-left:50px;
    justify-content:space-between;
    align-items:top!important;
    width:100%;
    display:flex;
    flex-wrap:nowrap!important;
    column-gap:20px;
}

.accordion-row {
    gap:0px!important;
    margin-top:24px;
    border-radius:30px;
    transition: all 0.2s ease;
}

.accordion-content {
    padding-top:0px;
    padding-right:80px;
    padding-bottom:46px;
    padding-left:50px;
    width: 100%;
}

.accordion-content p:first-of-type, .accordion-content ul:first-of-type {
    margin-top: 0px;
}
.accordion-content ul li {
    margin-top: 0.5rem;
    line-height: 25px;
}
main .accordion-content.has-white-color ul li::marker {
    color: var(--wp--preset--color--white);
}

.slide-transition {
    -webkit-transition: max-height 0.25s ease-in-out;
    -moz-transition: max-height 0.25s ease-in-out;
    -o-transition: max-height 0.25s ease-in-out;
    transition: max-height 0.25s ease-in-out;
}

.slide-up {
    display:none;
}

.cross {
    content:"";
    width:30px;
    height:30px;
    position:relative;
    z-index:0;
    top:5px;
    transition: transform 0.25s;
    flex-shrink:0;
}
.cross:after {
    background: var(--wp--preset--color--purple);
    content: "";
    height: 3px;
    width: 29px;
    position: absolute;
    top: 13px;
    left: 0px;
    z-index:1;
}
.cross:before {
    background: var(--wp--preset--color--purple);
    content: "";
    height: 29px;
    width: 3px;
    position: absolute;
    top: 0px;
    left: 13px;
    z-index:1
}
.rotate .cross {
    transform: rotate(45deg);
}
.rotate .cross:after, .rotate .cross:before {
    background:var(--wp--preset--color--white);
}

@media (max-width: 540px) {
    .accordion-label {
        padding-right:16px;
        padding-left:30px;
        column-gap:10px;
    }
    .accordion-content {
        padding-right:16px;
        padding-left:30px;
    }
}