.accordion_webpart_container{
    display: flex;
    flex-flow: column wrap;
    padding: 1rem 1rem;
}
.accordion_container_main {
    display: flex;
    flex-flow: row;
    /* justify-content: center; */
    align-items: stretch;    
    /* width: 100%; */
}

.accordion_container {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    gap: 1rem;    
    /* width: 100%; */
}

.accordion_title {
    font-family: "Noto Sans Hebrew", sans-serif;
    font-size: 2rem;
    font-weight: bold;
    line-height: normal !important;
    color: inherit !important;
    margin: 0.5rem 1rem;
}

.cbs_accordion {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    /* justify-content: stretch; */
    align-items: center;
    color: #444;
    cursor: pointer;
    padding: 1rem 2rem;
    width: 100%;
    border: 1px solid #DDEDFF;
    font-size: 1rem;
    transition: 400ms;
    border-radius: 1rem;
    column-gap: 1rem;
}

.cbs_accordion:after {
    /*content: '\002B';*/
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 0.5rem;
}

.cbs_accordion img:nth-child(3) {
    display: none;
}

.cbs_accordion:hover img:nth-child(2) {
    display: none;
}

.cbs_accordion:hover img:nth-child(3) {
    display: block;
}

.cbs_active:after {
    /*content: "\005E";*/
    display: block;
}
.cbs_active svg {
    rotate: 180deg;
    transition: 400ms;
}

.cbs_panel {
    padding: 0rem 1rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease-out;
}

@media only screen and (min-width: 768px) {
    .accordion_webpart_container{

        padding: 2rem 10%;
    }
    .cbs_accordion {
        justify-content: stretch;
    }
}