.accordion {
    border: 1px solid rgba(0, 0, 0, .125);
    overflow: hidden;
    margin-bottom: .25rem
}

#bpmAccordion .accordion:first-of-type {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

#bpmAccordion .accordion:last-of-type {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.accordion_gray {
    background-color: #e8e8e8;
    color: #000 !important;
}

.accordion_blue {
    background: #2f47b5;
    color: #fff;
}

.accordion_red {
    background: #d33;
    color: #fff
}

.accordion-header {
    font-size: 18px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    line-height: normal;
    font-weight: 700
}

.accordion-header i {
    padding-right: .5rem
}

.accordion-header::after {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    transition: transform .5s ease-in-out;
    transform: scale(.7) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e")
}

.accordion-header.accordion_gray::after {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    transition: transform .5s ease-in-out;
    transform: scale(.7) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e")
}

.accordion.expanded .accordion-header::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e")
}

.accordion.expanded .accordion-header.accordion_gray::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e")
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-out;
    background-color: #fff;
    padding: 0 15px
}

.accordion.expanded .accordion-content {
    border-radius: none;
    max-height: 500px
}

.accordion-content p {
    margin: 15px 0
}

.accodion_colum2 {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap
}

@media only screen and (min-width:790px) {
    .w-48 {
        width: 48%
    }
}