﻿
/*------------------------STRUCTURAL CSS ----------------------------------*/

.master_extranet #header {
    background-image: url("../images/banners/professionals.jpg");
}
/* --------- parent container ------------*/
.sidenav {
    background-color: #94b145;
    animation-name: fadeIn;
    /*max-height: 350px;*/
    border-radius: 5px;
    padding-top: 5px;
}


.sidenav {
    -webkit-animation: fadein .5s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein .5s; /* Firefox < 16 */
    -ms-animation: fadein .5s; /* Internet Explorer */
    -o-animation: fadein .5s; /* Opera < 12.1 */
    animation: fadein .5s;
}

.main {
    display: flex;
    flex-direction: column
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background-color: #F7F7F7;
    flex-direction: column;
    margin-bottom: 10px;
}

.hdr_title {
    margin-bottom: 30px !important;
}


.personal_info_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #A8A8A8
}

    .personal_info_container * {
        display: inline-block;
        padding: 0px;
        margin: 0px;
    }

/*---------------------------Sidenav-----------------------------*/

.sidenav_list {
    padding: 0;
    list-style: none;
}

.sidenav__list-item {
    text-align: left;
    padding: 15px 5px;
    color: #ddd;
}

    .sidenav__list-item a {
        color: white;
    }

    .sidenav__list-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition-duration: 0.5s;
    }

/*----------------------------Dashboard----------------------------*/
.main-overview {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 20px;
}


.overviewcard {
    border: 1px solid #d3d3d3;
    border-radius: 30px;
    width: 100%;
    height: 150px;
    text-align: center;
    background-color: #74B551;
    transition: background .25s ease-in-out;
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.overviewcard:hover {
    background-color: #94b145;
    cursor: pointer;
}

.overviewcard a:hover {
    text-decoration: none;
}

.overviewcard h3 {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.overviewcard a {
    color: white;
    display: inline-grid;
}

    .overviewcard a i {
        transform: scale(2.5);
        padding: 20px;
    }

.extranet_Welcome {
    padding: 20px 0;
}

.column_left h2 {
    padding: 0;
}

.notice {
    padding: 2em;
    border-radius: 1em;
    background: #ddd;
    margin-bottom: 1em;
}

.notice:nth-child(even) {
    background: #eee;
}

.notice-header {
    display: flex;
    justify-content: space-between;
}

.notice p {
    font-size: 1.25em;
    white-space: pre-wrap;
}

.notice-file {
    font-size: 1.05em;
    margin-bottom: .25em;
    display: block;
}

.notice-file .glyphicon {
    margin-right: .5em;
}

.file-search {
    margin-bottom: 4em;
}

.file-search .form-inline {
    display: flex;
    justify-content: center;
}

.file-search .form-inline .form-group:first-child {
    flex-grow: 1;
    margin-right: 1em;
}

.file-search .form-inline .form-group:first-child input {
    width: 100%;
}

.btn-primary {
    background-image: unset;
    background: #74B551;
    border: none;
    transition: .25s;
}

.btn-primary:hover {
    background: #94b145;
}

.btn-primary:active, .btn-primary:focus {
    background: #74B551;
}

.pagination > .active > a {
    background: #74B551;
    border-color: #74B551;
    color: #fff;
}

.pagination > .active > a:hover {
    background: #94b145;
    border-color: #94b145;
}

.pagination > li > a {
    color: #74B551;
}

.file-search-results-container em {
    margin: 1em 0;
    display: block;
}

#file-search-results {
    padding: 0;
}

#file-search-results li {
    list-style: none;
    font-size: 1.25em;
    margin-bottom: 1em;
}

.noticeboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#noticeboard-pages {
    margin: 0;
}
/*--------------------------------------Dynamic---------------------------------------------*/
.inprogressbg {
    background-color: rgba(116, 181, 81, 1);
    color: rgba(255,255,255, 1);
    padding: 2px 5px;
}


.completedbg {
    background-color: rgba(189, 195, 199, 1);
    color: rgba(0, 0, 0, 1);
    padding: 2px 5px;
}

.overduebg {
    background-color: rgba(242,149,0, 0.8);
    color: rgba(0, 0, 0, 1);
    padding: 2px 5px;
}

.badlyoverduebg {
    background-color: rgba(162,62,59, 1);
    color: rgba(255,255,255, 1);
    padding: 2px 5px;
}

/*--------------------------------------Task Archive ----------------------------------------------------*/

.column_left .div_title h2 {
    padding-top: 0px;
    border-top: none;
}

.column_left .main h2 {
    border-top: none;
}


.column_left .lstview_taskItem {
    padding: 10px;
    box-shadow: 0 1px 6px -2px #777;
    box-sizing: border-box;
    margin: 10px 0px;
}

.column_left .lstview_taskItem p {
    margin: 0px 2px;
}

.column_left .lstview_taskItem h3 {
    color: #94b145;
}

.column_left .lstview_taskItem .btn-danger {
    color: white;
    padding: 5px;
}

.column_left .lstview_taskItem .btn-success {
    color: white;
    background-color: #94b145;
    background-image: none;
    padding: 5px;
}

.column_left .lstview_taskItem .btn-default {
    padding: 5px;
}


.lstview_taskItem .row {
    padding: 10px 0px;
    width: 95%;
    position: relative;
    left: 2.5%;
}

.lstview_taskItem .row:not(:first-child) {
    border-top: 1px dashed grey;
}

.lstview_container .lbl_EmptyListing {
    position: relative;
    left: 42%;
}
/*------------------------------------MISC-------------------------------------*/
.modal-footer .btn-danger {
    color: white;
}

.main .complete_confirmed {
    background-image: none;
    border: none;
    background-color: #94b145;
    color: white;
}


.adminBlockModuleStaffExtranetItem { background-image: url('../../images/administration/icon_nav_ModuleStaffExtranetItem.jpg'); }

.lstvw_process {
float: left;
}

