/* CSS Document */

html,body {
    
}
/**
 ** Bootstrap
 ** ---------------------------------------------------------------------------
 **/

.container{
    max-width: 720px;
}

/**
 ** Body
 ** ---------------------------------------------------------------------------
 **/
body{
    background:url("../images/footer_bg.jpg") no-repeat;
    background-size: cover;
    background-position: bottom center;
}

/**
 ** Header / Footer
 ** ---------------------------------------------------------------------------
 **/

header{
    background:url("../images/header_bg.jpg") no-repeat;
    background-size: cover;
    background-position: top center;
    height: 170px;
}

header h1{
    font-family: 'Shippori Mincho B1', serif;
    font-size: 30px;
    color: white;
    text-align: center;
}

@media screen and (max-width:575px){
    header h1{
        font-size: 24px;
    }
}

#logo{
    padding-top:40px;
    text-align: center;
}

footer{
    background:url("../images/footer_bg.jpg") no-repeat;
    background-size: cover;
    background-position: top center;
    
    margin-top: 120px;

}
footer div{
    background-color: rgba(0,76,159,0.9);
}
footer div p{
    margin-bottom: 0;
    padding-top:    10px;
    padding-bottom: 10px;
    color: white;
    font-size: 11px;
}

/**
 ** Steps
 ** ---------------------------------------------------------------------------
 **/

.step{
    padding-top:    40px;
    padding-bottom: 40px;
    text-align: center;
}


/**
 ** FormItem
 ** ---------------------------------------------------------------------------
 **/

.formItem{
    padding-top:    10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

/**
 ** H
 ** ---------------------------------------------------------------------------
 **/

h2{
    border-top:1px solid #004c9f;
    border-bottom:1px solid #004c9f;
    padding-top:10px;
    padding-bottom:10px;
    text-align: center;
    font-size:24px;
    color: #004c9f;
}

h3{
    padding-top:10px;
    padding-bottom:10px;
    text-align: left;
    font-size:16px;
    font-weight: bold;
    color: #000;
	letter-spacing: 0.08em;
}


/**
 ** Buttons
 ** ---------------------------------------------------------------------------
 **/
.btnWrap{
    text-align: center;
    margin: 20px auto 20px auto;
}
.btnWrap button{
    border:none;
    border-radius: 40px;
    background: #004c9f url("../images/btnIcon.png") right 10px center no-repeat;
    height: 50px;
    width: 320px;
    color: white;
    text-align: center;
    font-size: 18px;
}
.btnWrap button span{
    font-size: 14px;
    padding-right: 10px;
}


.toOrder{
    text-align: center;
    margin: 20px auto 20px auto;
}
.toOrder button{
    border:none;
    border-radius: 40px;
    background: #004c9f url("../images/btnIcon.png") right 10px center no-repeat;
    height: 50px;
    max-width: 300px;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 18px;
}
.toOrder button span{
    font-size: 14px;
    padding-right: 10px;
}

@media screen and (min-width:576px){
	.toOrder button:hover{
		outline: 4px solid white;
	}
}


.returnBtn{
    margin: 20px auto;
    text-align: center;
    font-size: 18px;
}
.returnBtn button{
    border:none;
    border-radius: 40px;
    background: #1caee1 ;
    height: 50px;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 14px;
}
@media screen and (min-width:576px){
	.returnBtn button:hover{
		outline: 4px solid white;
	}
}


.errorMessage{
	background-color: white;
	margin-top:5px;
	margin-bottom:5px;
	border:1px solid red;
	border-radius: 8px;
	padding: 8px;
	color:red;
}
