/****************************************************************************
 * Item
 ****************************************************************************/
.boxed_items .item {
    position: relative;
}
.boxed_items .item:after {
    content: ''; position: absolute;
    top: 1rem; left: 1rem; right: 1rem; bottom: 1rem;
    width: auto; height: auto; background-color: #FFFFFF;
    box-shadow: 0 0 1rem rgba(0,0,0,0.125);
    border-radius: 0.5rem;
}

/****************************************************************************
 * Item Inner
 ****************************************************************************/
.boxed_items .item .item_inner {
    margin: 0;
    position: relative;
    z-index: 20;
}

/****************************************************************************
 * Item Content
 ****************************************************************************/
.boxed_items .item .item_content {
    padding: 2rem;
}