body {
    font-family: 'Open Sans', sans-serif, Arial;
    background-color: #f5f5f5;
}

.navbar {
    border-radius: 0;
}

.d-flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}

.card {
    padding: 15px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0, 0.1);
    border-radius: 6px;
    background-color: white;
}

.lblCheckbox {
    font-weight: normal;
    margin: 0 5px;
}

.table.valign-middle tr td {
    vertical-align: middle;
}

textarea {
    resize: vertical;
    min-height: 50px;
}

.flex-column-buttons {
    display: flex;
    flex-direction: column;
}
.flex-column-buttons .btn {
    margin-bottom: 3px;
}