﻿/*
 *	This stylesheet contains all elements required to control
 *	the overall layout of the application.
 **********************************************************
 */

html, body {
    height: 100%;
}

body {
    background-color: white;
    margin: 0px;
    /* position: absolute; */
    width: 100%;
}

.FixedFooter #contents, #complete, #warning {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
}

.Container {
    min-height: 100%;
    position: relative;
}

/*
 *	HEADER
 **********************************************************
 */

.Header-General {
    background-image: linear-gradient(to right, white, #b7cf46);
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

.Header-Left-ApplicationName {
    color: black;
    text-align: left;
    font: bold 16pt Verdana;
    padding: 10px 0;
}

.Header-Left {
    background: url('images/formic_solutions.svg') no-repeat top left / contain;
    width: 207px;
    background-position-x: 10px;
    vertical-align: top;
}

/* .Header-Center {
} */

.Header-Right {
    text-align: right;
    color: white;
    font: bold 10pt Verdana;
}

.Header-General TABLE {
    height: 100%;
    width: 100%;
    border-spacing: 0;
}

/*
 *	BODY
 **********************************************************
 */

.FixedFooter .Body-General {
    flex: 1 0 auto;
    position: relative;
    padding-bottom: 150px;
}

    .FixedFooter .Body-General::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 45%;
        height: 50%;
        max-height: 150px;
        opacity: 0.3;
        pointer-events: none;
        background: no-repeat url(images/formic_solutions.svg) bottom right / contain;
    }

.Body-General-Table {
    padding-top: 15px;
    height: 100%;
    width: 100%;
    border-spacing: 0;
    min-height: 500px;
}

.Body-Left {
    vertical-align: top;
    padding: 0 20px 0 15px;
    width: 160px;
}

.Body-Center {
    vertical-align: top;
    padding: 0;
}

.Body-Center-WebForm {
    vertical-align: top;
    background-color: #fff;
    padding: 0;
    width: 100%;
}

.Toolbar-Top {
    width: 140px;
    height: 13px;
    font-size: x-small;
}

.Toolbar-Top-Navigation,
.Toolbar-Top-Validation,
.Toolbar-Top-CompletionErrors {
    background-color: #b7cf46;
    color: white;
    font: bold small Verdana;
    text-align: center;
    padding: 10px 0;
}

.Toolbar-Top-Validation {
    margin-top: 20px;
}

.Toolbar-Navigation-Body {
    width: 160px;
    display: block;
    position: relative;
}

.Toolbar-Bottom {
    padding-top: 4px;
}

.Toolbar-Surround {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

#ToolbarValidation {
    display: none;
}

    #ToolbarValidation[data-has-errors="1"] {
        display: block;
    }

/*
 *	FOOTER
 **********************************************************
 */

.Footer-General {
    flex-shrink: 0;
}

.footer-navigation {
    display: flex;
    border-spacing: 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
    background-image: linear-gradient(to right,#b7cf46, white);
    padding: 2px 10px 2px 195px;
    font: bold 12px Verdana;
}
.Footer-Left {
    width: 196px;
}

    .footer-navigation a {
        color: #000;
        text-decoration: none;
        white-space: nowrap;
    }

        .footer-navigation a:hover {
            color: #acc33b;
            text-decoration: underline
        }

.footer-navigation-left,
.footer-navigation-center,
.footer-navigation-right {
    flex: 1 1 33.3333333333%;
    display: flex;
}

.footer-navigation-left {
    justify-content: flex-start;
}

.footer-navigation-center {
    justify-content: center;
}

    .footer-navigation-center a {
        margin: 0 5px;
    }

.footer-navigation-right {
    justify-content: flex-end;
}

.Footer-Copyright {
    vertical-align: top;
    padding: 20px;
    color: #d3d3e5;
    font: bolder 9pt Verdana;
    text-align: left;
    text-decoration: none;
}

.Footer-Version {
    /* Hides the version but make it visible on selection */
    color: #fff;
}

.transition-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.8);
    font: bold 14px Verdana;
    display: flex;
    justify-content: center;
}

    .transition-container.dopostback-progress {
        display: none;
    }

        .transition-container.dopostback-progress.dopostback-progress_visible {
            display: flex;
        }

.transition-inner {
    margin-top: 200px;
    width: 30%;
}

.transition-text {
    margin-top: 16px;
    text-align: center;
}

#btnSilentSubmit {
    display: none;
}