:root {
    --main-bg-blue: #0d004c;
    --main-bg-disabled: #f5f5f5;
}

html, body {
    padding: 2em;
    font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif;
}

button {
    background: var(--main-bg-blue);
    border: none;
    padding: 0.25em 0.5em;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
}

input[type=date] {
    height: 32px;
    line-height: 1.3;
    color: #555555;
    background-color: #ffffff;
    border-color: #cccccc;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    padding: 6px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    font-weight: normal;
    box-shadow: 0 1px 1px rgb(0 0 0 / 8%) inset;
    margin-bottom: 0;
}

ul.steps {
    margin-bottom: 3em;
}

ul.steps,
ul.file-list {
    list-style: none;
    padding: 0;
}

ul.steps li {
    display: inline-block;
    border-radius: 2em;
    text-align: center;
    padding: 0.25em;
    border-color: #ccc;
    border-width: 1px;
    width: 1.25em;
    height: 1.25em;
    box-shadow: 0px 1px 10px 1px #ccc;
    margin-right: 1em;
}

ul.steps li.active {
    background: var(--main-bg-blue);
    color: white;
}

ul.steps li.disabled {
    background: var(--main-bg-disabled);
    color: #555555;
}


ul.file-list {
    border: 1px dotted #7d7d7d;
    padding: 1em;
}

ul.file-list li {
    position: relative;
}

ul.file-list li button {
    position: absolute;
    right: 0;
}


.disclaimer {
    font-size: 0.9em;
    font-style: italic;
    font-weight: 300;
}


input.invalid,
select.invalid {
    background-color: #fb000012 !important;
}

.validation-message {
    font-size: .75em;
    color: red;
}


/**** Drag Drop *****/
.dropzone {
    border: 1px dashed dimgrey;
    padding: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdfdfd;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
    color: #444;
    font-size: 1.25em;
    cursor: pointer;
    position: relative;
}

.dropzone:hover {
    background-color: #f3f3f3;
    color: #333;
}

.dropzone input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropzone-drag {
    background-color: palegreen;
}
