﻿
/* Styles for validation helpers
-----------------------------------------------------------*/
/* styles for validation helpers */
.field-validation-error {
    color: #ff0000;
    font-weight: bold;
    margin-left:5px;
    font-style:italic;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #ff0000;
}

select.input-validation-error {
    border: 1px solid #ff0000;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors
{
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.validation-summary-valid
{
    display: none;
}

div#spinner
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: url(PleaseWait.gif) no-repeat center #fff;
    text-align: center;
    padding: 10px;
    font: normal 16px Tahoma, Geneva, sans-serif;
    border: 1px solid #666;
    z-index: 9999;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
    overflow: auto;    
    background-color: black;
    filter: alpha(opacity=80);
    opacity: 0.8;
}

#searchboxes th {
    padding: 3px 3px 0px 3px !important;
}

#searchboxes th input {
    width: 100%;
    padding: 1px;
}

tr.searchboxes th {
    padding: 3px 3px 0px 3px !important;
}
tr.searchboxes th input {
    width: 100%;
    padding: 1px;
}
.dataTables_filter {
    display: none; 
}

.required label::after {
    content: "*";
    margin-left: .5rem;
    color: red;
}