﻿body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    background-color: #fff;
    background-image: url('/img/bg.png');
}
/* The Modal (background) */
.modal {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: left;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    } 
nav.navbar {
    background: #bba28f;
    margin-left: auto;
    margin-right: auto;
}

.control-label {
    margin-top: 1%;
}

.form-div {
    margin-left: 2%;
    margin-right: 2%;
}

.form-control {
    border: none;
    border-bottom: dotted 2px black;
}

    .form-control.complete {
        border-bottom: dotted 2px green;
    }

.form-header {
    background: #bba28f;
    color: white;
}

.form-progress {
    margin: 1%;
    display: inline-flex;
}

.form-progress-text {
    margin-left: 1.5%;
}

.form-progress.active {
    font-weight: bolder;
}

.number {
    margin-bottom: 6px;
}

.number-label {
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: .0625em solid;
}

.btn-primary {
    background-color: #bba28f;
    border-color: #bba28f;
    margin-bottom: 5px;
}

    .btn-primary:disabled {
        background-color: grey;
        border-color: red;
    }

    .btn-primary:hover {
        background-color: #bba28f;
        border-color: green;
    }

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1em;
    background: rgba(0, 0, 0, 0.8);
}

.lightbox:target {
    display: block;
}

.lightbox span {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
