﻿html, body{
    height:110%;
}
body {
    max-height: 100%;
}
footer {
    /*background-color:  #041354;*/
    color: white;
    text-align: center;
    padding: .5rem 1rem;
    background: #1f88b0;
    position: relative;
}

    footer p {
        font-size: 12px;
        margin: 15px 0;
    }

.action-button {
    min-width: 100px;
    background-color: #ff920a !important;
    /*font-weight: bold;*/
    color: white;
    border: 0 none;
    /*border-radius: 0px;*/
    cursor: pointer;
    /*padding: 10px 5px;*/
    margin: 10px 0px 10px 5px;
    /*float: right*/
    background: #ff920a;
    border-radius: 5px;
    padding: 8px;
    font-size: 15px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.required{
    color: red;    
}
#PdfWebControl1 {
    min-height: 100%;
}

.overlay {
    background: #e9e9e9;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
}

#loading-img {
    background: url('/Content/loader.gif') center center no-repeat;
    text-align: center;
    height: 100%;
    z-index: 20;
}

    #loading-img b {
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

.progress-back {
    background-color: forestgreen;
}

/*==========*/
.tabs {
    border: 1px solid #cccccc;
    display: flex;
}

.tabs__sidebar {
    /*width: 125px;*/
    flex-shrink: 0;
    background: #cccccc;
}

.tabs__button {
    /*display: block;*/
    display: inline-flex;
    padding: 6px;
    margin: 2px;
    background: #eeeeee;
    border: none;
    /*width: 30%;*/
    outline: none;
    cursor: pointer;
}

    .tabs__button:active {
        background: #dddddd;
    }

    .tabs__button:not(:last-of-type) {
        /*border-bottom: 1px solid #cccccc;*/
    }

.tabs__button--active {
    font-weight: bold;
    border-bottom: 5px solid #0098;
    background: #dddddd;
}

.tabs__content {
    /*padding: 15px;
    font-size: 22px;*/
    display: none;
}

.tabs__content--active {
    display: contents;
}

.tabs__content > :first-child {
    margin-top: 0;
}
/*==========*/


/*used From W3School*/


