﻿html, body {
    height:100%;
    min-height: 500px;
}
body {
    background-image: url(../images/macbook_desk.jpg) ;
    background-position: center center;
    background-repeat:  no-repeat;
    background-attachment: fixed;
    background-size:  cover;
}

.body-content {
    position: relative;
    left: 0;
    top:0;
    width: 100vw;
    height: 100vh;
    min-height: 500px;
}

footer {
    position: absolute;
    bottom: 0;
    right: 25px;
    text-align: right;
}

.step {
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    min-height:400px;
    width:400px;
    background: white;
    padding: 0;
    border: 1px solid #080B3B;
    overflow: hidden;
}

.step-header {
    background-color: #333676;
    text-align: center;
    padding:10px 15px 30px 15px;
    border-bottom: 3px solid #545793;
    position:relative;
}

.step-header .links {
    position: absolute;
    bottom:-32px;
    left:10px;
    right:10px;
    height: 60px;
    text-align: center;
    
}

.step-header .links a {
    width:60px;
    height:60px;
    background: gray;
    color:white;
    
    border-radius:36px;
    display: inline-block;
    font-size: 40px;
    line-height: 56px;
    margin:0 12px;
    padding:0 0 0 2px;
}

.step-header .links a.current {
    background: #AA8C39;
}

.step-header .links a.past {
    background: #545793;
}

.step-header .links a.error {
    background: red;
}

.step-header h3,.step-header h2 {
    color:white;
    
}

.step-body {
    padding: 45px 15px 120px 15px;

}
.step .actions {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}