﻿html, body {
    background: #ffffff;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial;
}

.float-panel {
    position: absolute;
    z-index: 997;
}

.float-panel,
.float-panel-style {
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: .8em;
    box-shadow: 4px 4px 2px grey;
}

    .float-panel .float-panel-header {
        position: absolute;
        width: 100%;
        height: 2.4em;
        border-radius: .8em .8em 0 0;
        padding: 0 .8em;
        background-color: #ffffff;
        border-bottom: 1px solid #dddddd;
        display: flex;
        align-items: center;
    }

        .float-panel .float-panel-header .float-panel-title {
            font-weight: bold;
        }

        .float-panel .float-panel-header .float-panel-close {
            margin-left: auto;
        }

    .float-panel .float-panel-message {
        position: absolute;
        top: 2.4em;
        left: 0;
        right: 0;
        padding: .2em .5em;
        font-size: larger;
        font-weight: bold;
        text-decoration: underline;
    }

    .float-panel .float-panel-content {
        overflow-x: hidden;
        overflow-y: auto;
        position: absolute;
        top: 4.6em;
        left: 0;
        right: 0;
        bottom: 3.6em;
        padding: 1em;
    }

    .float-panel .float-panel-no-msg {
        top: 2.4em !important;
    }

    .float-panel .float-panel-no-footer {
        bottom: .2em !important;
    }

    .float-panel .float-panel-footer {
        overflow-y: auto;
        position: absolute;
        left: .2em;
        right: .2em;
        bottom: .2em;
        padding: .5em;
        border-top: 1px solid #dddddd;
    }

        .float-panel .float-panel-footer .loading {
            display: inline-block;
        }

div.modal {
    background: rgba(0, 0, 0, .7);
}

div.wizard-dialog {
}

    div.wizard-dialog div.wizard-message {
        font-weight: bold;
        padding: 1em 0;
    }

    div.wizard-dialog div.wizard-page {
    }

    div.wizard-dialog div.wizard-footer {
    }

        div.wizard-dialog div.wizard-footer button.next {
        }

#input-dialog {
    z-index: 1047;
}

#msg-dialog {
    z-index: 1049;
}

#loading-modal {
    background: rgba(0,0,0,0.65);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1051;
}

.dialog-body {
    margin-bottom: initial !important;
    height: calc(100% - 92px);
}

/* Google reCaptcha */
.grecaptcha-badge {
    z-index: 1031;
}


.navbar-nav .dropdown-menu {
    display: block;
    overflow: hidden;
    visibility: hidden;
    max-height: 0;
    transition: visibility 0.2s ease, max-height 0.25s ease-out;
}


.navbar-nav .dropdown:hover .dropdown-menu {
    max-height: 500px;
    visibility: visible;
    transition: visibility 0.2s ease, max-height 0.25s ease-in;
}




.displayNone {
    display: none;
}

.adjusted {
    background-color: #fcfff5;
}

@media (min-width: 1200px) {
    .container-lg {
        max-width: 1400px;
    }

}