/* columns of same height styles */

.row-full-height {
    height: 100%;
}

.col-full-height {
    height: 100%;
    vertical-align: middle;
}

.row-same-height {
    display: table;
    width: 100%;
    /* fix overflow */
    table-layout: fixed;
}

.col-xs-height {
    display: table-cell;
    float: none !important;
}

@media (min-width: 768px) {
    .col-sm-height {
        display: table-cell;
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .col-lg-height {
        display: table-cell;
        float: none !important;
    }
}

.img-center {
    margin:0 auto;
}

.indented-block {
    margin-left: 20px;
    margin-bottom: 10px;
}

.panel-body img {
    margin: 0 auto;
}

.img-fit {
    max-width: 100%;
    max-height: 100%;
}

.underlined-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 9px;
}

.vertical_gap {
    margin-top: 30px;
}