html, body {
    height: 100%;
    margin: 0;
}
h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}
.confidence {
    text-align: right;
}

img.preview {
    width: 70%;
}

#__next {
    min-height: 100%;
    position: relative;
}

.main {
    min-height: 100%;
    padding-bottom: 75px;
}

.footer {
    height: 75px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.row {
    margin-bottom: 15px;
}

.footer .row {
    margin-bottom: 0;
}

.progress-bar {
    background-color: #9ebd71;
}

a, a:hover, a:visited {
    color: #9ebd71;
}

.card-text span {
    padding: 5px;
    display: inline-block;
}

.card-text img {
    height: 35px;
}

div.logo {
    margin-top: 5px;
    margin-left: 15px;
}

.logo img {
    height: 35px;
}

.fileUploader {
    width: 100%;
}

.fileContainer {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    position: relative;
    border-radius: 0.25rem;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px 0 20px;
    transition: all 0.3s ease-in;
}

.fileContainer input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.fileContainer p {
    font-size: 12px;
    margin: 8px 0 4px;
}

.fileContainer .errorsContainer {
    max-width: 300px;
    font-size: 12px;
    color: red;
    text-align: left;
}

.fileContainer .chooseFileButton {
    padding: 6px 23px;
    background: #6c757d;
    border-radius: 5px;
    color: white;
    font-weight: 300;
    font-size: 14px;
    margin: 10px 0;
    transition: all 0.2s ease-in;
    cursor: pointer;
    outline: none;
    border: none;
}

.fileContainer .chooseFileButton:hover {
    background: #545972;
}

.fileContainer .uploadFilesButton {
    padding: 5px 43px;
    background: transparent;
    border-radius: 30px;
    color: #3f4257;
    font-weight: 300;
    font-size: 14px;
    margin: 10px 0;
    transition: all 0.2s ease-in;
    cursor: pointer;
    outline: none;
    border: 1px solid #3f4257;
}

.fileContainer .uploadFilesButton:hover {
    background: #3f4257;
    color: #fff;
}

.fileContainer .uploadIcon {
    width: 50px;
    height: 50px;
}

.fileContainer .uploadPicturesWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.fileContainer .uploadPictureContainer {
    width: 75%;
    margin: 5%;
    padding: 10px;
    background: #edf2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #d0dbe4;
    position: relative;
}

.fileContainer .uploadPictureContainer img.uploadPicture {
    width: 100%;
}

.fileContainer .deleteImage {
    position: absolute;
    top: -9px;
    right: -9px;
    color: #6c757d;
    background: white;
    text-align: center;
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    line-height: 30px;
    width: 30px;
    height: 30px;
}

.flipMove {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

