body {
    margin: 0;
    min-height: 100%;
    width: 100%;
}
*::-moz-selection {
    background: #b3d4fc none repeat scroll 0 0;
    text-shadow: none;
}
html, body {
    font-family: "Helvetica","Arial",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
html, body {
    font-family: "Roboto","Helvetica",sans-serif;
}
html { 
	background: url(../img/bg-min.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.mdl-layout {
	align-items: center;
	justify-content: center;
    text-align: center;
    background-color: transparent !important;
}
.mdl-layout__content {
	padding: 24px;
	flex: none;
    z-index: 1;
}
main.mdl-layout__content {
    background-color: transparent;
    z-index: 2;
}
.mdl-card__title {
    background: #D32F2F;
}
.mdl-button--raised.mdl-button--colored {
    background-color: #FF9800;
}
.mdl-button--raised.mdl-button--colored:hover {
    background-color: #F57D00;
}
.mdl-button--wide {
    width: 100%;
}
.center {
    text-align: center;
}
#bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
}
#bg img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    min-width: 50%;
    min-height: 50%;
}

/******************************\
    Alert, Info Boxes
\******************************/
html, body {height:100%;overflow:auto}
.error, .ok, .info, .warning {
    border: 1px solid #CCC;
    /*-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;*/
    -webkit-box-shadow: 0 0 5px black;
    -moz-box-shadow:    0 0 5px black;
    box-shadow:         0 0 5px black;
    font-weight: bold;
    left: 0;
    list-style: none;
    margin-bottom: 20px;
    padding: 15px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 9999;

}
.error {
    background-color: #F44336;
    border-color: #D32F2F;
    color: #FFF;
}
.ok {
    background-color: #B9DF90;
    border-color: #A0D468;
    color: #3C763D;
}
.info {
    background-color: #7CD1EF;
    border-color: #4FC1E9;
    color: #31708F;
}
.warning {
    background-color: #FFDD87;
    border-color: #FFCE54;
    color: #8A6D3B;
}

#modal {
    background: white;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 5px black;
    -moz-box-shadow:    0 0 5px black;
    box-shadow:         0 0 5px black;
    color: #333;
    height: 100px;
    padding: 10px;
    text-align: center;
    width: 200px;
    z-index: 9999;
}
#modal img {
    display: block;
    margin: 10px auto;
}
#modal span {
    margin: 5px;
}