@import url(http://fonts.googleapis.com/css?family=Open+Sans&display=swap);

/*********************************************************************************/
/***** GLOBAL *****/ 

body {
    font-family: 'Open Sans', sans-serif;
}
h1, h2, h3 {
    font-family: 'Open Sans', sans-serif;
    color: #000;
}
h1 {
    color: #4e4e4e;
    margin-right: 10px;
    font-weight: 400;
    font-size: 1.25em;
}
a	{
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}		
a:active {
    text-decoration: none;
}

/*********************************************************************************/
/***** CONTAINER *****/ 

#container {
    width: 960px;
    background-color: #fff;
    margin: 25px auto;
}

/*********************************************************************************/
/***** HEADER *****/

header {
    overflow: auto;
    width: 960px;
}
.logo {
    float: left;
}
.logout {
    float: right;
    font-size: .85em;
    color: #000;
}
#title_bar {
    margin-top: 38px;
    overflow: hidden;
    -webkit-border-radius: 0px 4px 4px 0px;
    border-radius: 0px 4px 4px 0px;
    background: rgba(18,165,7,1);
    background: -moz-linear-gradient(top, rgba(18,165,7,1) 0%, rgba(4,100,2,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(18,165,7,1)), color-stop(100%, rgba(4,100,2,1)));
    background: -webkit-linear-gradient(top, rgba(18,165,7,1) 0%, rgba(4,100,2,1) 100%);
    background: -o-linear-gradient(top, rgba(18,165,7,1) 0%, rgba(4,100,2,1) 100%);
    background: -ms-linear-gradient(top, rgba(18,165,7,1) 0%, rgba(4,100,2,1) 100%);
    background: linear-gradient(to bottom, rgba(18,165,7,1) 0%, rgba(4,100,2,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#12a507', endColorstr='#046402', GradientType=0 );
}
#title_bar h1 {
    color: #fff;
    float: right;
    margin-right: 10px;
    font-weight: 400;
    font-size: 1.25em; 
}

/*********************************************************************************/
/***** NAV *****/

nav {
    float: right;
    height: 70px;
}

nav ul {
    float: left;
    list-style: none;
    text-align: center;
    padding: 0;
    margin-top: 20px;
}
nav li {
    float: left;
    font-family: 'Open Sans', sans-serif;
    font-size: .75em;
    color: #8c8c8c;
    height: 30px;
    margin-left: 5px;
    border: 1px solid #8c8c8c;
}
nav a {
    text-decoration: none;
    color: #000;
    display: block;
    transition: .3s background-color;
    padding: 7px 10px;
    font-family: 'Open Sans', sans-serif; 
    font-weight: 400;  
}
 
nav a:hover {
    background: #07a000;
    color: #fff;
}
 
nav a.active {
    background: #07a000;
    color: #fff;
    cursor: default;
}

/*********************************************************************************/
/***** CONTENT *****/

#content {
    float: right;
    width: 100%;
    /*margin: 10px 25px 0 0;*/
}
.packages {
    position: absolute;
    margin-left: 330px;
    margin-top: 20px;
}
.carwash {
    width: 100%;
    margin-top: 20px;
}
.content_text {
    width: 320px;
}
#content ul {
    list-style-type: none;
    color: #000;
}
#content ul li {
    padding: 5px 0;
}
#content p {
    line-height: 25px;  
}

/*********************************************************************************/
/***** TABLE *****/

.datagrid table { 
    border-collapse: collapse; 
    text-align: left; 
    width: 100%; 
} 
.datagrid {
    font: normal 12px/150% Arial, Helvetica, sans-serif; 
    background: #fff; 
    overflow: hidden; 
    border-top: 1px solid #8c8c8c; 
    -webkit-border-radius: 3px; 
        -moz-border-radius: 3px; 
            border-radius: 3px;
    margin-bottom: 50px;
    /*margin-right:  20px;*/
}
.datagrid table td, .datagrid table th { 
    padding: 5px 10px; 
}
.datagrid table thead th {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FFFFFF), color-stop(1, #FFFFFF) );
    background:-moz-linear-gradient( center top, #FFFFFF 5%, #FFFFFF 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF');
    background-color:#FFFFFF; 
    color:#000; 
    font-size: 13px; 
    font-weight: bold; 
    border-left: 1px solid #8c8c8c; 
    border-right: 1px solid #8c8c8c;
    border-bottom: 1px solid #8c8c8c;
} 
.datagrid table thead th:first-child { 
    border-left: 1px solid #8c8c8c;
    border-bottom: 1px solid #8c8c8c;
}
.datagrid table thead th:last-child { 
    border-left: 1px solid #8c8c8c;
    border-bottom: 1px solid #8c8c8c;
}
.datagrid table tbody td { 
    color: #000; 
    border-left: 1px solid #8c8c8c;
    font-size: 12px;
    border-bottom: 1px solid #8c8c8c;
    font-weight: normal; 
}
.datagrid table tbody td:first-child { 
    border-left: 1px solid #8c8c8c; 
}
.datagrid table tbody td:last-child { 
    border-right: 1px solid #8c8c8c; 
}
.datagrid table tbody tr:last-child td { 
    border-bottom: 1px solid #8c8c8c; 
}
.datagrid table tfoot td ul { 
    margin: 0 -11px 0 0;  
    padding:0; 
    list-style: none; 
    text-align: right; 
}
.datagrid table tfoot  li { 
    display: inline; 
}
.datagrid table tfoot li a { 
    text-decoration: none; 
    display: inline-block;  
    padding: 2px 8px; 
    margin: 1px;
    color: #8c8c8c;
    border: 1px solid #8c8c8c;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FFFFFF), color-stop(1, #FFFFFF) );
    background:-moz-linear-gradient( center top, #FFFFFF 5%, #FFFFFF 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF');
    background-color:#FFFFFF; 
}
.datagrid table tfoot ul.active, .datagrid table tfoot ul a:hover { 
    text-decoration: none;
    border-color: #8c8c8c; 
    background: #07a000;
    color: #fff;
}

/*********************************************************************************/
/***** FORM *****/

.form{ 
    max-width: 100%;  
    color: #222222; 
    font-size: 1.25em; 
    background-color: #FFFFFF; 
    padding: 20px 0 0 0; 
} 
.form h1 {
    font-style: italic;
}
.form textarea{ 
    border-width: 1px; 
    border-style: solid; 
    border-color: #666666; 
    height: 220px; 
    width: 99.2%; 
    background-color: #fafaf2;
    padding: 5px 0 0 5px;
} 
.form input[type=submit]{ 
    float: right;
    width: 120px; 
    text-decoration: none;
    border: 1px solid #8c8c8c; 
    background: #07a000;
    font-size: .75em;
    color: #fff; 
    padding: 10px 0;
} 
.field{ 
    margin-bottom: 5px; 
} 

.field-list{ 
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 30px;
}

.date-field{
	background: none !important;
	padding-left: 10px !important;
	width: 100px !important;
	height: 30px !important;
}

.button{
	text-decoration: none;
    border: 1px solid #8c8c8c; 
    background: #07a000;
    font-size: .75em;
    color: #fff; 
    padding: 10px !important;
	width:auto !important;
}

/*********************************************************************************/
/***** FOOTER *****/

footer {
    width: 960px;
    height: 60px;
    clear: both;
}
footer p {
    font-size: .75em;
    color: #030303; 
    float: right;
}

/*********************************************************************************/
/***** LOGIN FORM *****/

#theform {
    background: #f9f9f9; /* Old browsers */
    background: -moz-linear-gradient(top,  #f9f9f9 0%, #ededed 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f9f9f9 0%,#ededed 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
    border: 1px solid #8c8c8c;
    border-radius: 3px;
    height: 310px;
    margin: 50px auto;
    padding: 20px;
    width: 375px;
}
#fill {
    margin-top: 40px;
}
input[type="text"] {
    background-image: url("../assets/input-login.png");
    border: 1px solid #8c8c8c;
    color: #999999;
    font-family: "Cuprum",Arial,sans-serif;
    font-size: 16px;
    height: 37px;
    padding-left: 100px;
    padding-right: 30px;
    width: 245px;
}
input[type="password"] {
    background-image: url("../assets/input-login.png");
    border: 1px solid #8c8c8c;
    color: #999999;
    font-family: "Cuprum",Arial,sans-serif;
    font-size: 16px;
    height: 37px;
    padding-left: 100px;
    padding-right: 30px;
    width: 245px;
}

#pass {
    background-position: 0 -43px;
    margin-top: 20px;
}
.buttons {
    float: right;
}
.log-in {
    background: #07a000;
    font-size: 1em;
    color: #fff;   
    padding: 5px 20px;
}
p.login_p{
    font-size: .85em;
    margin-top: -15px;
    margin-bottom: 10px;
}
p.login_red{
    font-size: .85em;
    margin-top: 5px;
	color:red;
}