/***************************************************************************
* Item Inner + Flex Options
****************************************************************************/
.boxed_item .item_inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    border-radius: var(--typo-border-radius-big);
    background-color: #FFFFFF;
    box-shadow: 0 0 0.5rem rgba(0,0,0,0.1);
    overflow: hidden;
}
.boxed_item .item_inner > * {flex: 0 0 auto;}
.boxed_item .item_inner > .item_content {flex: 1 1 0;}


/***************************************************************************
* Item Content
****************************************************************************/
.boxed_item .item_inner .item_content {
    /*padding: var(--typo-gap) var(--typo-gap) var(--typo-double-gap);*/
    padding: var(--typo-double-gap);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.boxed_item .item_inner .item_content .button-group {
    margin-top: auto;
}