﻿html {
    position: relative;
    min-height: 100%;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.app-fade
{
    color:#ccc;
}
footer {
    /*position: absolute;*/
    position: unset;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
   /* height: 350px;*/
    background-color: #eee;
    margin-top: 20px;
    padding: 10px;
}

/* Custom TVA Footer Styles*/
#colophon {
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    font-family: DM Sans;
    box-sizing: border-box;
    display: block;
    padding: 2rem 0;
    background: #002855;
    color: hsla(0,0%,100%,.8);
    line-height: 1.5;
}

#layoutcontainer {
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    font-family: DM Sans;
    color: hsla(0,0%,100%,.8);
    line-height: 1.5;
    box-sizing: border-box;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.clear {
    clear: both;
    height: 60px;
}

.social {
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    font-family: DM Sans;
    color: hsla(0,0%,100%,.8);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    list-style-type: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 2;
    display: inline-block;
    padding: 5px;
}
/* End Custom TVA Footer*/

    footer.full-width {
        background: #eee;
        color: #fff;
        padding-bottom: 58px;
        padding-top: 10px;
    }

        footer.full-width a:hover, footer.full-width a:focus, footer.full-width a.focus, footer.full-width a:active, footer.full-width a.active {
            color: #bababa;
        }

        footer.full-width a {
            color: #fff;
            text-decoration: none;
        }

        footer.full-width ul {
            list-style: none;
            padding-left: 0;
        }

            footer.full-width ul li {
                margin-bottom: 17px;
            }

        footer.full-width span.footer-header {
            display: block;
            font-weight: 500;
            margin-bottom: 40px;
        }

        footer.full-width address {
            margin-bottom: 0;
            line-height: 2.5;
        }
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 50px;
    padding-bottom: 20px;
}

/* 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 width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 290px;
}

label {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px;
}
.custom-checkbox{
   margin-left:16px !important;
}
.text-danger {
    font-size: 13px !important;
}
.tooltip-inner {
    background-color: #d9edf7 !important;
    color: #31708f;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #31708f;
}

.tooltip.right .tooltip-arrow {
    border-right-color: #31708f;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #31708f;
}

.tooltip.left .tooltip-arrow {
    border-left-color: #31708f;
}
.disabled {
    background-color: #eee;
    opacity: 1;
}
#login {
    margin: auto;
    max-width: 500px;
    padding-top: 30px;
}
.loginMessage {
    font-size: 18px;
    font-weight: 300;
    display: inline;
}
.custom-radio .checkbox{
  display:inline;
padding-left:5px;
}
#myModal .modal-dialog { width: 850px }
.panel-heading a {
    color: #fff;
    text-decoration: underline;
}
.panel-heading a:hover {
    color: #ddd;
}
table.dataTable {
    margin: 0 auto;
}
.validation-summary-errors ul
{
    list-style-type:none;
}

.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.card-container {
  padding: 2px 16px;
  margin-bottom:20px;
}
.category-text{
    padding-left:5px;
}
#calculate-container textarea.form-control {
    max-width: 80%;
}
.modal-body {
    max-height: calc(100vh - 212px);
    overflow-y: auto;
}
#summary .control-label{
    font-weight:bold;
}
tr.site-total th{
  background-color: #d9edf7;
}
tr.app-total td{
  background-color: #d9edf7;
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: block;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 1001 !important;
    background: #0079c1;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

    #sidebar.active {
        left: 0;
    }

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #0079c1;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    #dismiss:hover {
        background: #fff;
        color: #0079c1;
    }

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

#sidebar .sidebar-header {
    padding: 20px;
    background: #0079c1;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: .9em;
    display: block;
    color:white;
}

    #sidebar ul li a:hover {
        color: #0079c1;
        background: #fff;
    }

#sidebar ul li.active > a,
a[aria-expanded="true"] {
    color: #fff;
    /*background: #ff6e1e;*/
}

a[data-toggle="collapse"] {
    position: relative;
}

#sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }

a.article,
a.article:hover {
    background: #ff6e1e !important;
    color: #fff !important;
}

label {
    font-size: .9rem;
}
.btn-sized {
    max-width:290px!important ;
}

/* ---------------------------------------------------
    Tab STYLE
----------------------------------------------------- */
.nav-tabs {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    border: none;
    font-size: 1.1rem;
}

    .nav-tabs .nav-link {
        border: none;
        border-radius: 0;
        transition: color .2s ease-out;
    }

.tabs-dark .nav-link {
    color: #e0ecf6;
}

.tabs-light .nav-link {
    color: rgba(0,0,0,.5);
}

.tabs-dark .nav-link:not(.active):hover {
    color: #aeb0b3;
}

.tabs-light .nav-link:not(.active):hover {
    color: #495057;
}

.nav-pills .nav-link {
    border-radius: 2px;
    color: #495057;
    transition: color .2s ease-out, box-shadow .2s;
}

    .nav-pills .nav-link:hover {
        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    }

.nav-pills .nav-item {
    margin: 0 5px;
}

.nav-pills.pills-dark .nav-link.active {
    background-color: #343a40 !important;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.nav-pills.pills-dark .nav-link:not(.active):hover {
    color: #1d1e22;
}

.tabs-marker .nav-link {
    position: relative;
}

    .tabs-marker .nav-link.active .marker {
        height: 30px;
        width: 30px;
        left: 50%;
        bottom: -30px;
        transform: translatex(-50%);
        position: absolute;
        overflow: hidden;
    }

        .tabs-marker .nav-link.active .marker:after {
            content: "";
            height: 15px;
            width: 15px;
            top: -8px;
            left: 50%;
            transform: rotate(45deg) translatex(-50%);
            transform-origin: left;
            background-color: #e0ecf6;
            box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
            position: absolute;
        }

.section-header {
    font-size: 14pt;
    padding: 30px 0;
    margin: 0;
    border: 0;
    background-color: #0079c1; /*#009ee1;*/
    width: 100%;
    color: white;
}
    .section-header a {
        color: white!important;
        cursor: pointer;
    }


.section-header-small {
    font-size: 14pt;
    padding: 5px 0;
    margin: 0;
    border: 0;
    background-color: #0079c1; /*#009ee1;*/
    width: 100%;
    color: white;
    text-align:center!important ;
}
.profile[readonly]{
    background-color:lightgray!important ;

}
.dataTables_filter {
    display: none;
}