﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    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;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.bg-cam {
    background-color: black; /* #2b2c2e;*/
}

.logo-cam {
    width: 6em;
    height: 6em;
    display: block;
    margin: 0 auto;
}

.bg-cam-white {
    background-color: #ffffff;
}

.qrcode {
    width: 80%;
    height: 80%;
    margin: 0 auto;
}

.videoinput {
    width: 100%;
    max-width: 640px;
    height: auto;
    border: 1px solid #ddd;
}

.photo {
    width: 100%;
    max-width: 640px;
    height: auto;
    border: 1px solid #ddd;
}

/* Wait spinner */
.waitloader {
    border: 20px solid #EAF0F6;
    border-radius: 50%;
    border-top: 20px solid #001E96;
    width: 100px;
    height: 100px;
    animation: spinner 4s linear infinite;
    opacity: 0.8;
    display: none;
    margin: 0 auto;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.checkmark {
    width: 80%;
    height: 80%;
    display: none;
    margin: 0 auto;
}

.errmsg {
    color: red;
    text-align: center;
    display: none;
}
