﻿
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}
.login-block {
    background-color: #FFF;
    padding: 50px 40px 0px 40px;
    max-width: 400px;
    margin: 0 auto;
}
.login-block h4, .login-block label, .login-block h2, .login-block p {
    color: #3e5569;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.login-block .logo-image {
    width: 100%;
}

.navbar .logo-image {
    width: 100%;
    max-width: 220px;
    padding: 10px;
    margin-top: 10px;
}

.nav-stacked li {
    display: block;
    padding: 10px;
    width: 100%;
    text-align: left;
}

.form-group {
    text-align:left;
}

.container h2 {
    margin-top: 20px;
}

.table {
    text-align: left;
}
.auth-background {
    background-image: url(/Content/images/auth-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrapper {
    display: block;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    /* top layer */
    z-index: 9999;
}

.overlay {
    display: none;
    position: fixed;
    /* full screen */
    width: 100vw;
    height: 100vh;
    /* transparent black */
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    opacity: 0;
    /* animate the transition */
    transition: all 0.5s ease-in-out;
}
    /* display .overlay when it has the .active class */
    .overlay.active {
        display: block;
        opacity: 1;
    }

#dismiss {
    width: 35px;
    height: 35px;
    position: absolute;
    /* top right corner of the sidebar */
    top: 10px;
    right: 10px;
}

.status-dropdown li {
    padding: 10px;
}

.current-status {
    
}

.current-status a {
    
}


/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}
