/* Tags */

:root {
    --prolaris-blue  : #0071ce;
    --prolaris-orange: #DC8633;
    --prolaris-blue2 : #004C97;
    --prolaris-blue3 : #003595;
    --prolaris-grey  : #58595b;
}

body {
    max-width: 1300px;
    margin   : auto;
    color    : #003595;
}

hr {
    margin-top: 0;
}

h3 {
    margin-bottom: 10px;
    color        : var(--prolaris-orange);
}

h4 {
    margin-bottom: 15px;
    color        : var(--prolaris-blue3);
}

table {
    table-layout  : auto;
    padding-bottom: 30px;
}

td {
}

input {
    outline: none;
}

fieldset label {
    display: block;
}

/* Display Classes */

.display-both {
    display: none;
}

.display-plate {
    display: none;
}

.display-qc {
    display: none;
}

.display-plate-filename {
    display: none;
    color: var(--prolaris-grey);
}

.display-qc-filename {
    display: none;
}

/* Navigation Classes */

.anchor {
    color  : var(--prolaris-blue);
    padding: 10px;
    border : none;
    cursor : pointer;
}

/*The !important makes this css property superceed every other*/
span.anchor:hover {
    color: var(--prolaris-orange) !important;
}

.select-language {
    width: 100px;
    border-color: var(--prolaris-blue);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
}

.navbar-image {
    height        : 60px;
    vertical-align: center;
    margin-left: -18px;
    margin-right: 12px;
}

.container {
    margin-left: 50px;
}

.pbrg-heading-section {
    background-color: white;
    margin          : 10px;
}

.pbrg-heading {
    font-size  : 20px;
    font-weight: bold;
    text-align : left;
    padding    : 0px 0px 50px 0px;
}

.header-image {
    height        : 30px;
    vertical-align: middle;
}

.hidden {
    display: none;
}

/* Form File Classes */

.input-file-label {
    display         : block;
    background-color: var(--prolaris-blue);
    color           : white;
    font-weight     : bold;
    text-align      : center;
    width           : 80%;
    height          : 35px;
    text-transform  : uppercase;
    line-height     : 35px;
    margin          : 8px 0 8px 0;
    cursor          : pointer;
    border-radius   : 5px;
}

.input-file-label .input-label {
    vertical-align: center;
}

.input-file-label .input-file {
    visibility: hidden;
    position  : absolute;
    top       : 0px;
    left      : 0px;
    width     : 0px;
}

.qcResultIcon {
    display: none;
    width  : 20px;
}

.qcResultSubtext {
    font-size: 12px;
}

.textfield {
    border-style: solid;
    width       : 60%;
    border-radius: 5px;
    border-width: 2px;
}

.selectfield {
    border-style: solid;
    width       : 60%;
    border-radius: 5px;
    border-width: 2px;
}

.inp {
    position      : relative;
    width         : 100%;
    display       : inline-block;
    padding-bottom: 22px;
}

.inp .textfield+.error+.input-label {
    position        : static;
    top             : 0px;
    left            : 240px;
    width           : 100%;
    font-size       : 80%;
    color           : var(--prolaris-grey);
}

.textfield:not(:placeholder-shown)+.error+.input-label {
    /*transform: translate3d(-12px, -15px, 0) scale(.75)*/
}

label.error {
    position : absolute;
    top      : 28px;
    left     : 0px;
    font-size: x-small;
    color    : red;
}

label#remarks-error {
    top: 130px;
}

.note {
    position : absolute;
    top      : 28px;
    left     : 0px;
    font-size: x-small;
    color    : gray;
}

.remarks {
    top: 127px;
}

.error+.input-label+.note {
    visibility: hidden;
}

.textfield:focus+.error[style*="none"]+.input-label+.note {
    visibility: visible;
}

.selectfield:focus+.error[style*="none"]+.input-label+.note {
    visibility: visible;
}

.inp .selectfield+.error+.input-label {
    color           : var(--prolaris-grey);
    position        : static;
    top             : 22px;
    left            : 240px;
    font-size       : 80%;
    /*font-size     : 16px;*/
    /*color         : green;*/
    /*color         : rgba($dark,.5)*/
    /*font-weight   : 500*/
    transform-origin: 0 0;
    transform       : translate3d(0, 0, 0);
    transition      : all .2s ease;
    /*pointer-events: none*/
}

.selectfield:valid+.error+.input-label {

    transform: translate3d(-12px, -20px, 0) scale(.75)
}

.input-unit {
    position: absolute;
    top     : 0px;
    right   : 10px;
}

/* Popup Classes */

.info-popup {
    position           : relative;
    top                : 2px;
    right              : 0px;
    /*position         : relative;*/
    display            : inline-block;
    cursor             : pointer;
    -webkit-user-select: none;
    -moz-user-select   : none;
    -ms-user-select    : none;
    user-select        : none;
    color              : var(--prolaris-grey);
}

.usecase-info * {
    position: inherit;
    display : inline-block;
}

#useCaseRnaQuality-popup {
    position: relative;
}

#useCaseAnalyzeSample-popup {
    position: relative;
}

.usecase-info .info-popup {
    vertical-align: top;
    width         : 100px;
}

.info-popup .popuptext {
    visibility      : hidden;
    width           : 300px;
    background-color: #555;
    color           : #fff;
    text-align      : center;
    border-radius   : 6px;
    padding         : 8px;
    position        : absolute;
    z-index         : 1;
    bottom          : 125%;
    left            : 50%;
    margin-left     : -80px;
}

.info-popup .show {
    visibility       : visible;
    -webkit-animation: fadeIn 1s;
    animation        : fadeIn 1s;
}

/* Strips Modal Classes */

.modal {
    display         : none;
    /* Hidden by default */
    position        : fixed;
    /* Stay in place */
    z-index         : 1;
    /* Sit on top */
    padding-top     : 150px;
    /* Location of the box */
    left            : 0;
    top             : 0;
    width           : 100%;
    /* Full width */
    height          : 100%;
    /* Full height */
    overflow        : auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position          : relative;
    margin            : auto;
    padding           : 10px;
    width             : 40%;
    animation-name    : modal-fade;
    animation-duration: 0.4s;
    border-width      : 10px;
    border-radius     : 10px;
    background-color  : rgb(245, 245, 245);
    border-color      : rgb(245, 245, 245);
}


@keyframes modal-fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.modal-header {
    color          : var(--prolaris-blue);
    justify-content: center;
    font-weight    : 600;
    font-size      : xx-large;
}

.modal-subheader {
    color          : var(--prolaris-blue);
    justify-content: center;
    font-weight    : 600;
    font-size      : large;
}

.modal-body {
    padding         : 10px 20px;
    background-color: white;
}

.modal-footer {
    justify-content: center;
}

.modal-analyze-button {
    background-color: var(--prolaris-blue);
    color           : white;
    font-size       : 24px;
    font-weight     : 500;
    width           : 35%;
    height          : 80%;
    border-radius   : 5px;
    border-color    : var(--prolaris-blue);
    text-align      : center;
}

.modal-analyze-button:disabled,
.modal-analyze-button[disabled]{
    /*border: 1px solid #999999;*/
    border-color    : lightgrey;
    background-color: lightgrey;
    color: white;
}

.modal-analyze-button:enabled:hover{
    cursor:pointer;
}

.modal-close-button {
    background-color: var(--prolaris-orange);
    color           : white;
    float           : right;
    font-size       : 24px;
    font-weight     : 500;
    width           : 35%;
    height          : 80%;
    border-radius   : 5px;
    border-color    : var(--prolaris-orange);
    text-align      : center;
}

.modal-close-button:enabled:hover{
    cursor:pointer;
}

.modal-yes-button {
    background-color: var(--prolaris-blue);
    color           : white;
    float           : none;
    font-size       : 24px;
    font-weight     : 500;
    width           : 35%;
    height          : 80%;
    border-radius   : 5px;
    border-color    : var(--prolaris-blue);
    text-align      : center;
}

.modal-no-button {
    background-color: var(--prolaris-orange);
    color           : white;
    float           : none;
    font-size       : 24px;
    font-weight     : 500;
    width           : 35%;
    height          : 80%;
    border-radius   : 5px;
    border-color    : var(--prolaris-orange);
    text-align      : center;
}

/* PBRG Report Classes */

.create-report-button {
    display         : block;
    background-color: var(--prolaris-blue);
    color           : white;
    font-weight     : bold;
    text-align      : center;
    min-width       : 450px;
    height          : 35px;
    text-transform  : uppercase;
    /*line-height   : 35px;*/
    margin          : 15px;
    border-color    : var(--prolaris-blue);
    border-width    : 1px;
    border-radius   : 5px;
    cursor          : pointer;
    margin-left     : 185px;
}

.create-report-button.disabled {
    background-color: darkgray;
    color           : lightgray;
}

.result-report {
    background-color: var(--prolaris-blue);
}

.summary-report {
    background-color: var(--prolaris-blue);
}

.contactpage-image {
    height        : 55px;
    margin-right  : 30px;
}

/* PBRG Version */

.version-info {
    float: right;
}

/* Help pages */
.sectionTitle {
    font-size  : large;
    font-weight: bold;
    color      : var(--prolaris-blue);
}

/*Text Color*/
.sectionText{
    color: var(--prolaris-grey);
}

.CE-marking {
    float: right;
}

.bottomAlignedImage {
    vertical-align: bottom;
}

