.jcms_expandblock {
    /* margin: auto; */
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.jcms_expandblock_title {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 5px;
}


.jcms_expandblock_title a {
    /* margin: auto; */
    text-align: left;
    font-weight: 700;
}

.expand_arrow {
    min-width: 20px;
    min-height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("images/expand_arrow_down.png");
}

.jcms_expandblock_page {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.opened {
    border-radius: 5px 5px 0 0;
    padding-bottom: 10px;
}

.jcms_expandblock_content {
    width: 100%;
    display: none;
    padding: 20px;
    border-width: 2px 2px 10px 2px !important;
    border-radius: 0 0 5px 5px;
    /*box-shadow: rgba(0, 0, 0, 0.35) 2px 2px 2px;*/
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 30px -25px inset, rgba(0, 0, 0, 0.3) 0px 18px 18px -18px inset;
}

@media screen and (max-width:750px) {

    .jcms_expandblock {
        width: 100%;
    }
}