* {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

html, body {
    height: 100%;
}

body {
    color: #4C4C4C;
    font-family: "HelveticaNeue", "Helvetica", "Arial", sans-serif;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
}

#background {
    position: fixed; 
    top:0; 
    left:0; 
    z-index: -10; 
    background: #F6F6F6; 
    width: 100%; 
    height: 100%;
}

.content {
    flex: 1 0 auto;
}

main {
    margin: auto;
    padding: 20px 15px 20px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 70%;
    min-width: 800px;
    text-align: center;
    border: 1px solid #CBCBCB;
    /* border-bottom: 5px solid #DDDDDD; */
    /* border-radius: 1em 1em; */
    background: #FFF;
    overflow: hidden;

    /* box-shadow: 7px 7px #DDDDDD; */
}

p {
    margin: 12px;
}



/* Font awesome modifiers */
.enlarge {
    font-size: 2em;
    vertical-align: middle;
}



/* Text effects */
.success {
    color: #0baf4a;
}

.fail {
    color: #f54141e3;
}



/* Element effects */

.hidden {
    display: none;
}



/* Buttons */
button {
    border-radius: 5px 5px;
    padding: 15px 32px;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
}

.btn-info {
    background-color: #21324a;
    color: white;
    border: 1px solid #21324a;
    border-bottom: 3px solid #1b2a3d;
}

.btn-info:hover {
    background-color: #1b2a3d;
}

.right {
    float: right;
}

.left {
    float: left;
}



/* Progress */
.progress-bar {
    color: #4C4C4C;
    counter-reset: step;
    width: 950px;
    height: 60px;
    margin: auto; 
    margin-bottom: 50px;
}

.progress-bar li {
    list-style-type: none;
    width: 25%;
    float: left;
    text-transform: uppercase;
    text-emphasis: 1;
    text-align: center;
    position: relative;
}

.progress-bar li::before{
    width: 30px;
    height: 30px;
    content: counter(step);
    line-height: 30px;
    counter-increment: step;
    display: block;
    background-color: #fff;
    border: 2px solid #DDDDDD;
    border-radius: 50%;
    margin: 0 auto 10px auto;
}

.progress-bar li:after {
    width: 100%;
    height: 4px;
    content: '';
    position: absolute;
    background-color: #DDDDDD;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progress-bar li:first-child:after {
    content: none;
}

.progress-bar li.current::before {
    border: 5px solid;
}

.progress-bar li.active {
    color: #4C4C4C;
}

.progress-bar li.active::before {
    color: #21324a;
    content: '✔';
}

.progress-bar li.active:before {
    border-color: #86bc25;
}

.progress-bar li.active + li:after {
    background-color: #DDDDDD;
}



/* Message-box */
.message {
    width: 700px;
    margin: auto;
    border: 1px solid #DDDDDD;
    border-bottom: 3px solid #DDD;
}

.message-title {
    padding: 16px;
    color: white;
    font-size: 1em;
    font-weight: bold;
    text-align: left;
    background-color: #21324a; 
}

.message-content {
    border-top: 1px solid #DDD;
    background-color: #fff;
    padding: 16px;
    padding-left: 32px;
    text-align: left;
}

.message-input {
    background-color: #fff;
    text-align: left;
    width: -webkit-fill-available;
    height: 53px;
    margin: -16px;
    margin-left: -32px;
    padding-left: 32px;
    font-size: 18px;
}

.message-select {
    background-color: #fff;
    text-align: left;
    width: -webkit-fill-available;
    height: 53px;
    margin: -16px;
    margin-left: -32px;
    padding-left: 32px;
    font-size: 18px;
}

.in-message-content {
    padding-left: 32px;
    text-align: left;
}

.message-validation-fail {
    border: 1px solid #f54141e3;
}

.list-bordered {
    width: 600px;
    margin: auto;
    border: 1px solid #DDDDDD;
    background-color: #fff;
    padding: 16px;
    padding-left: 32px;
    text-align: left;
    list-style-position: inside;
}