/* 
    Desription: CSS styling for the website.
    Created on : May 17, 2016, 5:48:02 PM
    Student     : Andy Chen
    ID #:       16900335
    email:      dxk4532@autuni.ac.nz
*/

body{
    font-family:Arial, Helvetica, sans-serif; 
    font-size:13px;
}
.info, .success, .warning, .error, .validation {
    border: 1px solid;
    padding:7px 6px 7px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    width: 400px;
    margin: 0 auto;
}
.info {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('../images/info.png');
}
.success {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image:url('../images/success.png');
}
.warning {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('../images/warning.png');
}
.error {
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('../images/error.png');
}

a.close{
    float:right;
    cursor:pointer;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

html, body 
{ 
    margin: 0;
} 

body{
    margin: 0;
    padding:0;
    background: #8EC1DA;
}

@keyframes animatedBackground {
    from { background-position: bottom left; }
    to { background-position: bottom right; }
}

#container-area	{ 
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-clouds.png);
    background-position: bottom left;
    background-repeat: repeat-x;
    animation: animatedBackground 50s linear infinite;
    position: fixed;
    bottom: 0;
    overflow: auto;
}

html,body{
    height: 100%
}

body {
    margin: 0;
}

#content-area{
    margin: 0 auto;
    width: 800px;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    background-repeat:no-repeat;
    background-position: bottom right;
    background-color: #3E7D9C;
    color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#targetDiv{
    margin: 0 auto;
    width: 800px;
}

input[type="button"]{
    margin-top: 15px;
    border-radius: 5px;
    text-align: center;
    width: 120px;
    background-color: transparent;
    border: 2px solid #F6CB5B; /* Green */
}
.buttonHolder{ text-align: center; }

.button {
    display: inline-block;
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    
    margin-top: 15px;
    border-radius: 5px;
    text-align: center;
    width: 150px;

    background-color: transparent;
    border: 2px solid #F6CB5B;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '...';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

h1,h4{text-align: center;}
input.icon-text-box{
    
}

.input-line{
    font-size:0;
}
input{
    color: white;
    -moz-appearance:    textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="button"]{
    padding: 10px;
}
input[type="text"],
input[type="date"],
input[type="time"]
{
  padding: 10px;
  margin: 0px;
  border: none;
  border-bottom: solid 2px #BEDFF0;
  transition: border 0.3s;
  background-color: transparent;
}
input[type="text"]:focus,
input[type="text"].focus,
input[type="date"]:focus,
input[type="time"]:focus
{
    border: none;
    border-bottom: solid 2px #F6CB5B;
}
select{
    color: #FFE5A1;
    padding: 10px;
  margin: 0px;
  border: none;
  background-color: transparent;
}

table.table-results {
    margin: 15px 0px 15px 0px;
    padding: 10px;
    border-collapse: collapse;
    width: 100%;
    
    
}

table.table-results th, table.table-results td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table.table-results tr:hover{background-color:#629FBD}


::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #629FBD;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #629FBD;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #629FBD;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #629FBD;
}

