.openableBlock {
    padding: 0 5%;
}

.openableTitle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    transition: all 0.3s linear;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    border-top: 1px solid black;
    /* border-bottom: 1px solid black; */
    transition: all 0.3s linear;
    padding: 0 0.5rem;
}

.openableTitle h5 {
transition: all 0.3s linear;
}

div.openableTitle:last-of-type {
    border-bottom: 1px solid black !important;
}

.openableTitle.openedTtl {
    border-bottom: 1px solid black !important;
}

.openableTitle:hover {
    background-color: #cc333b !important;
    color: white !important;
}

.openableTitle:hover h5 {
    color: white !important;
}

.openableTitle > h5 {
    color: black !important;
    margin: 1rem 0 !important;
}

.opChev {
    transition: all 0.3s linear;
    transform: rotate(-90deg);
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

div.openableTitle.openedTtl > span.opChev {
    transform: rotate(90deg) !important;
}