﻿/* bootstrap forms */
.required {
    color: red;
    font-size: 20px;
}
.form-group {
    margin-bottom: 0;
    margin-top: 20px;
}

/* links without decoration */
a.nodecoration {
    text-decoration: none;
}
    a.nodecoration:hover {
        text-decoration: none;
    }

/* fix for hyperlinks in tables */
table a:not(.btn), .table a:not(.btn) {
    text-decoration: none;
}

/* applies same height to all cols in a row*/
.row-fixedheight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .row-fixedheight > [class*='col-'] {
        display: flex;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        padding-right: 5px;
    }


.vertical-align {
    display: flex;
    align-items: center;
}