.cbf-termine .cbf-termin{
    margin-bottom: 30px;
    display: block;
    color: #54595F;
}
.cbf-termine .cbf-col1{
    flex: 1;
}

.cbf-termine .cbf-termin  .cbf-row{

    display: flex;
}

.cbf-termine .cbf-col2{
    flex: 6;
}
.cbf-termine h3{
    font-size: 1em;
    font-weight: bold;
    padding: 0 10px 0 0;
    margin: 0 0 10px 0;
}
.cbf-termine .cbf-date{
    background: white;
    width: 5.6em;
    height: 5.6em;
    border-radius: 6px;
    color: #159753;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid #159753;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 600ms;
}
.cbf-termine .cbf-more{
    font-size: .9em;
    padding-top: .5em;
    padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
    transition: 600ms;
}

.cbf-termin:hover{
    cursor: pointer;
}
.cbf-termin:hover h3{
    color: #159753;
}
.cbf-termin:hover .cbf-date{
    background: #159753;
    color: white;
}
.cbf-termin:hover .cbf-more{
    border-color: #159753;
    color: #159753;
}


@media (max-width: 767px){
    .cbf-termine .cbf-termin  .cbf-row{
        flex-direction: column;
    }
    .cbf-termine .cbf-col2{
        text-align: center;
    }
    .cbf-termine .cbf-date{
        margin: 0 auto;
        margin-bottom: 1em;
    }
    .cbf-termine .cbf--chip{
        margin: 0 auto;
    }
}