body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.container {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}

.container .row {
    margin: 0;
    height: 100%;
    padding: 0;
}

.container .row .col-sm-12 {
    height: 100%;
    overflow-x: hidden;
    padding: 0;
}

#generating {
    align-items: center;
    position: absolute;
    top: 0;
    display: none;
    margin-top: auto;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.wizard-container {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    overflow-x: visible;
}

.wizard-card {
    height: 100%;
    overflow-x: visible;
    overflow-y: hidden;
}

.wizard-card form {
    overflow-x: hidden;
}

.wizard-footer {
    bottom: 15px;
    display: flex;
    position: fixed;
    flex-direction: row-reverse;
    /* justify-content: space-around; */
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    margin-left: auto;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.rendered-form {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.form-control {
    margin-bottom: 10px;
}

.form-group input[type=file] {
    opacity: 1 !important;
    position: relative;
}

pre {
    overflow: hidden;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.clickable {
    cursor: pointer;
}

.wizard-card {
    transition: height 2s cubic-bezier();
}

.bgImage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    filter: blur(4px) brightness(0.50);
    background-position: center center;
    /* filter: brightness(0.50); */
}

.loader {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #0054ca;
    left: -100px;
    box-sizing: border-box;
    animation: shadowRolling 2s linear infinite;
}

@keyframes shadowRolling {
    0% {
        box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
    }

    12% {
        box-shadow: 100px 0 #0054ca, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
    }

    25% {
        box-shadow: 110px 0 #0054ca, 100px 0 #0054ca, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
    }

    36% {
        box-shadow: 120px 0 #0054ca, 110px 0 #0054ca, 100px 0 #0054ca, 0px 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 130px 0 #0054ca, 120px 0 #0054ca, 110px 0 #0054ca, 100px 0 #0054ca;
    }

    62% {
        box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 #0054ca, 120px 0 #0054ca, 110px 0 #0054ca;
    }

    75% {
        box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 #0054ca, 120px 0 #0054ca;
    }

    87% {
        box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 #0054ca;
    }

    100% {
        box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0);
    }
}