/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/
body {
    font-family: "Nunito", sans-serif;
}

#pdf-creator {
    padding: 0px;
}

/*--------------------------------------------------------------
# Header Section
--------------------------------------------------------------*/
#header {
    background-color: #fff !important;
    position: relative;
}

#header .logo-header {
    margin-right: 0.25rem;
}

#header .navbar-brand {
    font-weight: bold;
}

#header nav {
    z-index: 9;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .05);
}

/*--------------------------------------------------------------
# Background Section
--------------------------------------------------------------*/
#background {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
}

#background:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#background .background-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#background h2 {
    color: #eee;
    margin-bottom: 40px;
    font-size: 24px;
}

#background h1 {
    color: #eee;
    margin-bottom: 40px;
    /* font-size: 24px; */
}

@media (min-width: 1024px) {
    #background {
        background-attachment: fixed;
    }
}

@media (max-height: 500px) {
    #background {
        height: 150vh;
    }
}

#myFileInput {
    display: none;
}

#selectedFileText {
    background-color: transparent;
    border: 1px solid #0dcaf0;
    border-left: none;
    border-radius: 0.25rem;
    text-align: center;
    color: #0dcaf0;
}

.input-group-text {
    border: none;
}

/* .btn{
    width: 100%;
} */

/*--------------------------------------------------------------
# Main Section
--------------------------------------------------------------*/
#main {
    min-height: 300px;
    color: #313131;
    /* text-align: center; */
    background-color: #faf6f6;
    overflow: auto;
    padding-top: 50px;
    margin-bottom: auto;
}

/* ------------ Upload file */

.upload-action {
    position: relative;
}

/* ------------ help */
#help {
    min-height: 300px;
}

#help h2 {
    text-align: center;
}

#help dd {
    margin-left: 1rem !important;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
#footer {
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    align-items: center;
    background-color: #fff;
}

#footer p {
    font-size: 13px;
    font-style: italic;
    font-weight: bold;
}

/*--------------------------------------------------------------
# Error page
--------------------------------------------------------------*/
#error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}