/* General Page Layout CSS */
.column {
    float: left;
    padding: 10px;
}

/* Middle column */
.column.middle {
    width: 67%;
}

.column.side {
    width: 33%;
    height: fit-content;
    background: #ededed;
}

/* Clear floats after the columns */
.row::after {
    content: "";
    display: table;
    clear: both;
}

.caret {
    width: 0px;
    height: 0px;
    display: inline-block;
    border: 7px solid transparent;
    border-top-color: #9b2743;
    vertical-align: text-bottom;
}

.mfa-item {
    border: 1px solid #eee;
    margin: 7px 0;
    text-align: center;
    line-height: 50px;
    font-size: 28px;
    background-color: #9b2743;
    color: white;
    padding: 0;
}