﻿html {
    position: relative;
    min-height: 100%;
    height: 100%;
}

body {
    /* Margin bottom by footer height */
    height: 100%;
    overflow: hidden;
}

.header {
    background-color: rgb(228, 228, 228);
    box-shadow: inset 0 0 3px rgb(100, 100, 100);
    height: 100px;
}

.header-row {
    display: flex;
    align-items: center;
}

.logo {
    line-height: 90px;
}

.login-link {
    margin: 5px;
}

.create-account-link {
    margin: 5px;
}

.forgot-password-link {
    margin: 5px;
}

.welcome {
    margin-top: 5px;
}

.togglebutton {
    position: absolute;
    background-color: rgb(100, 100, 100);
    color: rgb(255, 255, 255);
    width: 120px;
    text-align: center;
    display: inline-block;
    margin-left: calc(100% - 120px);
    z-index: 9;
    height:25px;
    margin-top:0px;
    line-height:25px;

}

.togglebutton:hover {
    cursor: pointer;
}

.togglebutton.mazimized {
    
}

.maximized-text {
    display:none;
}

.maximized-text.visible {
    display: block;
}

.minimized-text {
    display:block;
}

.minimized-text.visible {
    display:none;
}

.content {
    width: 100%;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.client-area {
    height: calc(100vh - 120px);
}

.client-area.maximized {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border:0 none;
    z-index: 8;
}

.datadoors-iframe {
    width: 100%;
    height: 100%;
}

.footer {
    width: 100%;
    background-color: rgb(228, 228, 228);
}

.footer-inner {
    box-shadow: inset 0 0 3px rgb(100, 100, 100);
}

.footer-content {
    text-align: center;
}


/* 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 widths on the form inputs since otherwise they're 100% wide */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="select"] {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}
