html.client-nojs .js-only,
html.client-js .nojs {
    display: none !important;
}

header {
    padding-top: 0;
}

h1 {
    font-size: 1.5rem;
    margin: 1rem 0;
}
h1 a {
    text-decoration: none;
    color: inherit;
}

b {
    font-weight: bold;
}

#logo {
    max-height: 50px;
    margin: 15px auto 5px;
}

#background {
    height: 100vh;
    position: fixed;
    margin: 0;
}
#background img:first-child {
    width: 253px;
    top: 200px;
    right: 5%;
}
#background img:nth-child(2) {
    width: 358px;
    top: 450px;
    left: -2%;
}

#mainContent {
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0 25px 10px;
    max-width: 600px;
    margin-bottom: 100px;
}

pre, code, pre span {
    font-size: 12px;
}

input.form-control, textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: inherit;
    padding: 10px;
    width: 100%;
}
input.form-control[readonly], input.form-control[disabled] {
    background: #eee;
}

textarea {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-size: 13px;
    text-wrap: none;
}

.btn {
    background: #fff;
    border: 1px solid #f7a723;
    border-radius: 6px;
    color: #f7a723;
    cursor: pointer;
    padding: 10px;
    width: auto;
    transition: all .1s ease-in-out;
    text-decoration: none;
}
.btn.disabled, .btn[disabled] {
    background: #eee;
    cursor: not-allowed;
}
.btn:not(.disabled):not([disabled]):hover, .btn:not(.disabled):not([disabled]):active {
    background: #f7a723;
    color: #fff;
}

footer {
    box-sizing: border-box;
    padding: 0;
    font-size: .9em;
    position: fixed;
    bottom: 0;
    width: 100vw;
}
@media (min-width: 997.99px) {
    footer {
        padding: 0 20vw;
    }
}

footer p {
    margin: .5rem 0;
}

#downloadFile a {
    display: block;
    margin-block: .5rem;
}

.d-none { display: none !important; }