﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

.big-checkbox {width: 20px; height: 20px;}

.cac-thumbnail {
    margin: 5px;
    background-color: #cccccc;
    padding: 2px;
    border: #666666 solid 1px;
    max-height: 100px;
    max-width: 160px;
}

.imageDiv {
    max-height: 100px;
    max-width: 160px;
    margin-bottom: 20px;
}
.field-validation-error {
    color: crimson;
}

#divSignAbove, #divSignAboveEng {
    font-weight: bold;
    color: black
}

.floatAtBottom {
    background: white;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    padding-top: 10px;
    text-align: center;
}

#loadingWrapper {
    color: white;
    font-size: 6vw;
    position: fixed; /* Sit on top of the page content */
    display: block; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 12vw;
    background-color: rgba(0, 0, 0, 0.85); /* Black background with opacity */
    z-index: 2;
}

#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 6px solid #666;
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}