﻿/*This provides a base set of shared styles used by most forms*/
.errMsg {
    color: #b94a48;
    padding-left: 5px;
}

.inlineBlock {
    display: inline-block;
}

.alignTop {
    vertical-align: top;
}

.boldText {
    font-weight: bold;
}

.form-content {
    margin-left: 10px;
}

.printPreview {
    width: 100%;
    height: 500px;
    border: none;
}

/*Table*/
.tableDiv {
    padding-top: 10px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    border: 1px solid #dddddd;
}

td, th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
}

th {
    background-color: #333333;
    color: white;
}

tr:nth-child(even) {
    background-color: #E8E8E8;
}

.trashImage {
    padding-top: 2px;
}

.errBox {
    border: solid 1px red;
}
/*End table*/

.textArea {
    margin-top: 10px;
    min-width: 400px;
    min-height: 80px;
}

input:disabled,
input[disabled] {
    color: #666666;
}

.centerDiv {
    text-align: center;
}

.inlineGroup {
    padding-bottom: 15px;
}

/*Temporary fix for global.css until update*/
/*margin-bottom necessary to override global settings*/
/*border-radius necessary to override ExternalForms.CSS*/
#content input[type="text"],
#content input[type="email"],
#content input[type="number"],
#content input[type="tel"],
#content textarea,
#content select {
    border-radius: 5px;
    margin-bottom: unset;
    box-shadow: none;
}

/*test class adapted from Global.css*/
.dk-input-error-feedback {
    display: block;
    transition: all 0.2s ease;
    color: #cc0000;
    margin-top: 5px;
    /*opacity: 0;*/
    pointer-events: none;
    font-family: 'dk';
}

    .dk-input-error-feedback:before {
        content: "\f071";
        font-size: 1rem;
        padding-right: 5px;
        position: relative;
        top: 2px;
    }

.rtl .dk-input-error-feedback:before {
    padding-left: 5px;
}

.commentsTextArea {
    min-height: 10px !important;
    white-space: pre-wrap;
    font-family: Arial, sans-serif;
    margin-left: 15px;
}

/*Title class necesarry to override tiny h2 elements in global.css*/
.title {
    font-size: 2em;
}

.largeText {
    font-size: 1.2em;
}

#content {
    max-width: 950px;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
}
