﻿/* Main page container */
.hwrc-content-container {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 14px;
    background-color: white;
    padding: 10px 0 10px 0;
}

/* Infragistics theme override */
.ui-widget {
    font-size: 1em;
}

/* Heading */
.hwrc-heading {
    font-size: 18px;
    font-weight: bold;
    /*color: #007AC3;*/
    color: rgb(0, 0, 0);
    margin: 0 0 10px 0;
}

/* Text-block */
.hwrc-textblock {
    margin: 0 0 15px 0;
}

/* Error text */
.hwrc-error {
    color: red;
    margin: 10px 0 10px 0;
}

/* Error text (no margin) */
.hwrc-error-nomargin {
    color: red;
}

/* Success text (no margin) */
.hwrc-success-nomargin {
    color: green;
}

/* Note text */
.hwrc-note {
    font-style: italic;
    margin: 0 0 10px 0;
}

/* Field label */
.hwrc-label {
    /*font-size: 1em;*/
}

/* TextBox control */
.hwrc-textbox {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    width: 294px;
    height: 30px;
    padding: 0 2px 0 2px;
    margin: 5px 0 10px 0;
}

/* Date-picker control  */
.hwrc-datepicker {
    width: 298px;
    height: 30px;
    margin: 5px 0 10px 0;
}

/* Combo-box control  */
.hwrc-combo {
    width: 298px;
    height: 30px;
    margin: 5px 0 10px 0;
}

/* Combo-box control text - IgniteUI override */
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

/* Combo-box item container (required for vertical alignment to work)  */
.hwrc-combo-item-container {
    display: table;
    width: 100%;
}

/* Combo-box item  */
.hwrc-combo-item {
    height: 28px;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 1.3em;
    display: table-cell;
    vertical-align: middle;
}

/* Button text */
.hwrc-button {
    -webkit-appearance: button;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 1em;
    margin: 4px 0 4px 0;
    width: 300px;
    height: 30px;
}

/* Validation text - IgniteUI override */
.ui-igvalidator, .ui-widget .ui-igvalidator {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 1.3em;
}

/* Combo item for the "available" time slots */
.hwrc-slot-available {
    background-color: green;
    color: white;
}

/* Combo item for the "limited" time slots */
.hwrc-slot-limited {
    background-color: orange;
    color: white;
}

/* Combo item for the "fully booked" time slots */
.hwrc-slot-full {
    background-color: lightgray;
    color: black;
}

/* Hide the button when printing */
@media print {
    #btnPrint {
        display: none;
    }
}

/* Top margin 20px */
.hwrc-topmargin20 {
    margin-top: 20px;
}
