
@charset "UTF-8";
@import url("//fonts.googleapis.com/css?family=Ubuntu:400,400i,500,500i,700,700i&subset=latin-ext");

html, body, *
{
    font-family: Ubuntu, sans-serif;
}

.title-card
{
    height: 100%;
}

.colpad
{
    padding-bottom: 30px;
}

.title-card-counter
{
    text-align: center;
    padding: 25px;
    
    background: #007bff;
    color: white;
    border-radius: .25rem;
}

.title-card-count-text
{
    font-weight: bold;
    font-size: 18pt;
}

#title-wrapper
{
    padding-top: 1em;
}

#title-logo-wrapper
{
    float: left;
}

#title-logo-wrapper img
{
    width: 6em;
    height: 6em;
}

#title-text-wrapper
{
    float: left;
    margin-top: 0.45em;
    margin-left: 1.2em;
}

#title-text-wrapper h1
{
    color: #000;
    font-size: 49px;
    font-family: Ubuntu,sans-serif;
    font-weight: 400;
    margin-bottom: -20px;
}

#title-text-wrapper h1 strong
{
    color: #012198;
    font-size: 79px;
    font-weight: 700;
    text-transform: uppercase;
}

#title-subtext-wrapper
{
    float: right;
    font-size: 32px;
    margin-top: 1.5em;
}

.form-error-message
{
    display: block;
    height: 0;
    overflow: visible;
    float: right;
    position: relative;
    font-weight: bold;
    color: red;
}

.form-error-message-text, .form-error-message-password
{
    top: -0.8em;
}

.label-bold
{
    font-weight: bold;
}

.input-required
{
    color: red;
}

.form-error-message-checkbox
{
    position: absolute;
    right: 0;
    bottom: 1.3em;
    vertical-align: bottom;
}

.form-control
{
    margin-bottom: 1em;
}

.report-icon-ok
{
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: url('../img/ok.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.report-icon-fail
{
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: url('../img/fail.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.report-icon-help
{
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0.1em;
    background: url('../img/help.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.report-icon-inprogress
{
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: url('../img/inprogress.png');
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: progressanim;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes progressanim { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.clr
{
    width: 100%;
    height: 1em;
}

.dropdown-uploader
{
    width: 100%;
    padding: 2em;
    border: 3px dashed #007bff;
    border-radius: 0.25rem;
    position: relative;
}

.dropdown-text
{
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    color: #007bff;
}

.fileuploader
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.text-progress
{
    width: 100%;
    text-align: center;
    font-size: 16pt;
    padding-top: 0.2em;
}

.final-note
{
    text-align: center;
    padding-top: 1em;
}

.report-list
{
    width: 100%;
    margin-bottom: 1em;
}

.report-list-item
{
    width: 100%;
    padding: 0.3em;
    overflow: visible;
}

.report-msg-wrap
{
    text-align: right;
    line-height: 1.5em;
}

.report-icon-wrap
{
    text-align: left;
    line-height: 1.5em;
}

.file-list
{
    width: 100%;
    padding: 0.5em;

    max-height: 8em;
    overflow-y: auto;
}

.file-list-item
{
    width: 100%;
    padding: 0.3em;
}

.submission-card
{
    margin-bottom: 2.25em;
}

.submission-card-body
{
    font-size: 10pt;
}

.submission-card-body p
{
    margin: 0;
}

.submission-card-body .col-left
{
    text-align: right;
}

.submission-card-body .col-center
{
    text-align: center;
    margin-bottom: 0.5em;
}

.img-maxw-holder
{
    display: block;
    width: 100%;
    padding-top: 100%;
    position: relative;
    line-height: 100%;
    vertical-align: middle;
}

.img-maxw
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.img-maxw-detail
{
    width: 100%;
    height: auto;

    cursor: zoom-in;
}

.submission-table th
{
    padding-right: 1em;
}

.submission-item-table th
{
    padding-right: 1em;
}

.download-item-btn
{
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    bottom: 0.5em;
    right: 1.0em;

    background: url(../img/download.png);
    background-size: cover;
    background-repeat: no-repeat;
}

#imageview_overlay
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    display: none;
    z-index: 100;
    text-align: center;

    padding-top: 2.5vh;
}

.imageview_bg
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    background: #000;
    opacity: 0.7;
    z-index: 101;
}

.imageview_loading
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #ccc;
    font-size: 24px;

    z-index: 102;
}

.imageview_loading span
{
    display: table-cell;
    vertical-align: middle;
}

#imageview_overlay img, #imageview_overlay video
{
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    z-index: 103;

    margin: auto;
}

.imageview_close
{
    z-index: 104;
    position: absolute;
    top: 1em;
    right: 1em;
}

.imageview_bar
{
    z-index: 105;
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
}

.delete-btn-group
{
    padding: 1em;
}

.delete-btn, .delete-btn-init
{
    width: 6em;
}

.delete-btn-no, .delete-btn-yes, .delete-btn-group p
{
    display: none;
}

.passwordlist .badge
{
    float: right;
    margin-left: 0.5em;
}
