﻿body{
    background-color:#F8F9FA;
}

.cms-menu {
    background-color: #231F20;
    /*position: fixed;*/
    z-index: 904;
    box-shadow: 2px 0px 3px rgba(0, 0, 0, 0.5);
    height: 48px;
    width: 100%;
    min-width: 320px;
}

.cms-menu .cms-title {
    font-weight: 100;
    background-color: #231F20;
    width: 15%;
    color: white;
    letter-spacing: 1px;
    padding: 8px 16px 8px 32px;
    cursor: pointer;
}

.cms-menu .cms-title img{
    height: 32px;
}

.cms-menu .menu-container {
    color: #fff; 
    font-size: 20px
}

.cms-menu .menu-container img{
    height:30px;
}
.cms-menu .menu-container .site-title{
    margin-left: 16px;
    margin-top: 8px;
}

.site-content{
    height: auto;
}

.left-section, .right-section{
    width:15%;
    /*min-height: calc(100vh - 66px);
    max-height: calc(100vh - 66px);*/
    overflow: auto;
    background:#fff;
    visibility:hidden;
    -webkit-box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.2);
}

.left-section.showLeftNav{
    visibility:visible;
}

.middle-section{
    padding: 4px 0px;
}

.service-summary, .user-summary{
    margin: 8px;
}

.hideSummaries{
    visibility:hidden;
}

.ccare-tabs{
    margin-left: 2px;
}

.ccare-tabs div{
    font-size: 14px;
    color: #231F20;
    background-color: #fff;
    padding: 0 8px;
    min-width: 80px;
    line-height: 30px;
    text-align:center;
    -webkit-box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.2);    
    cursor: pointer;
}

.ccare-tabs .selected{
    background-color:#005288;
    color:#fff;
}

/*********** custom file upload **********/
.custom-file-upload{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
.custom-file-upload label{
    line-height: 30px;
    padding-left: 16px;
}
.custom-file-upload i{
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    padding-right: 16px;
    position: absolute;
    top: 0;
    right: 0;
}
/************ loader *************/
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: -webkit-fill-available;
    max-height: 100%;
    background-color: rgba(0,0,0,0.85);
}

.loader1,
.loader1:before,
.loader1:after {
    background: #296486;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}

.loader1 {
    color: #296486;
    text-indent: -9999em;
    /*margin: 88px auto;*/
    vertical-align: middle;
    position: relative;
    font-size: 30px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader1:before,
.loader1:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader1:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader1:after {
    left: 1.5em;
}

@-webkit-keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

.loader-container.ng-hide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.33s linear 0.33s, opacity 0.8s linear;
}

/********** toaster msg **********/
.md-toast{    
    position: fixed !important;
    bottom: 100px !important;
    right: 16px !important;
}

.md-toast .md-toast-content{
    min-width: 350px;
    min-height: 40px;
    background-color: rgba(0, 82, 136, 0.8); 
}

.md-toast.error .md-toast-content{
    background-color: rgba(136, 0, 0, 0.8); 
}

.md-toast.warning .md-toast-content{
    background-color: rgba(255, 108, 0, 0.8); 
}


@media screen and (max-width: 959px) {
    /*.right-section{
        display:none;
    }*/
    .cms-menu .cms-title {
        width: 30%;
    }

    .left-section{
        width:30%;
    }
    .hideSummaries {
        display: none;
    }
}


@media screen and (max-width: 599px) {

    .cms-menu .mega-menu {
        width: 100%;
        left: 0;
    }

    .middle-section {
        padding: 8px 2px;
    }

    .service-summary, .user-summary {
        margin: 0px;
    }
}