﻿


body {
    /* background-image: url("../Images/bg10.jpg"); */
    background-size: 100vw 100vh;
    background-attachment: fixed;
    background-color: #FFF;
    font-size: 1.2em;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #000;

}


.mainIframe {
    margin-top: 80px;
}
.mainIframe.inAppPadding {
    margin-top: 0px;
}




.homepage-logo {
    /* width: 105px; */
    height: 50px;
}

.result-image {
    width: 10vw;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* This effects a Samsung S8 Portrait */
@media screen and (max-width: 576px) {
    body {
        font-size: 1.0em;        
    }    
    .start-error-img {
        width: 20%;
        margin-bottom: 30px;
    }
}

/* This effects a Samsung S8 Landscape */
@media screen and (min-width: 576px) and (max-width: 768px) {
    body {
        font-size: 1.0em;
        
    }
    .start-error-img {
        width: 15%;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .start-error-img {
        width: 8%;
        margin-bottom: 30px;
    }
}







.col-centered {
    float: none;
    margin: 0 auto;
}

.btn {
    cursor:pointer;
    min-width:100px;
}


.fieldset-error {
    border:1px solid red;
    border-radius:8px;
    padding:10px;
    background-color:#fffbfb;
}
.fieldset-warning {
    border:1px solid #e0dd00;
    border-radius:8px;
    padding:10px;
    background-color:#fffff6;
}
.fieldset-success {
    border:1px solid #00c140;
    border-radius:8px;
    padding:10px;
    background-color:#f2fff6;
}


.question-nav {
    width:98%;
    margin:5px 5px 9px 5px;
    padding:5px;
    border-radius:5px;
    box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.2);
    background-color:#f8f9fa;
}

.question-holder {
    margin:15px;
    padding:10px;
    border-radius:10px;
    border:1px solid #f4f7f9;
}
.question-holder-error {
    border:1px solid #ff0000;
    background-color:#ffefef;
}
.question-holder-focus {
    border:1px solid #bddec0;
    background-color:#fdfffd;
}
.question-holder-error-text {
    font-size:12px;
}

.helplink {
    cursor:pointer;
}

.tooltip-inner {
    text-align: left;
}




.mymodal_error {
    border:2px solid #ec7551;
}
.mymodal_error .err_bgcol {
    background-color:#fffafa;
}
.mymodal_confirm {
    border:2px solid #6086bc;
}
.mymodal_confirm .ok_bgcol {
    background-color:#e8eff9;
}


select {
    padding:2px;
}
select:disabled {
    background-color: #ebebe4;
}

input {
    padding:2px;
}

.numberInput {
    text-align:right;
    padding-right:6px;
} 

::-webkit-input-placeholder {
 font-size: 12px;
 color: #c7b7b7;
 font-style:italic;
}
:-moz-placeholder { /* older Firefox*/
 font-size: 12px;
 color: #c7b7b7;
 font-style:italic;
}
::-moz-placeholder { /* Firefox 19+ */ 
 font-size: 12px;
 color: #c7b7b7;
 font-style:italic;
} 
:-ms-input-placeholder { 
 font-size: 12px;
 color: #c7b7b7;
 font-style:italic;
}


.file-upload {
    border:2px solid #adadad;
    background-color:#fffefb;
    padding:0px 20px 20px 20px;
    border-radius:10px;
}
.file-upload .preview-pane {
    background-color:#fff;
}


.alert-QuestionMessage {
    border:1px dotted #C0C0C0;
    padding:5px;
}


.exitText {
    color:#f8aa2d;
    cursor:pointer;
}
.exitText:hover {
    font-weight: bold;
}


table.GroupFormsList {
    font-size: 1.0em;
    width: 90%;
    border-radius: 10px;
}


.addressLookButton {
    margin-bottom:5px;
}



/* ------------------------------------------------------------------------------------------- */
/* CSS to handle the modal overlay when loading each form page */
.wait_overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
    display: none;
}
.wait_overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
    font-size:1.5em;
    color:#e5e5e5;
    font-weight:bold;
}
/* ------------------------------------------------------------------------------------------- */