@import url("../lib/bootstrap/dist/css/bootstrap-icons.css");

@font-face {
    font-family: Bold;
    src: url('../fonts/BCSans-Bold.woff');
    font-display: swap;
}

@font-face {
    font-family: BoldItalic;
    src: url('../fonts/BCSans-BoldItalic.woff');
    font-display: swap;
}

@font-face {
    font-family: Italic;
    src: url('../fonts/BCSans-Italic.woff');
    font-display: swap;
}

@font-face {
    font-family: Regular;
    src: url('../fonts/BCSans-Regular.woff');
    font-display: swap;
}

* {
    font-family: Regular, sans-serif;
}
html {
    scroll-behavior: smooth;
}
header {
    background-color: #003366;
    color: #fff;
    min-height: 100px;
}

    header nav.navbar {
        min-height: 100px;
    }

    header .navbar-text {
        color: #fff;
        font-size: 20px;
    }

    header .notification {
        background-color: #FCBA19;
        min-height: 60px;
        font-size: 20px;
        font-weight: 400;
        color: #003366;
    }

        header .notification .container {
            height: 100%;
            display: flex;
            align-items: center;
        }

        header .notification p {
            margin-bottom: 0;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        header .notification .container:before {
            display: inline-block;
            margin-right: 0.255em;
            vertical-align: -2px;
            content: "\F430";
            font-family: "bootstrap-icons";
            font-size: 20px;
            align-self: start;
            margin-top: 20px;
            color: #fff;
        }

        header .notification strong {
            font-weight: 600;
            letter-spacing: 0px;
        }
.hide {
    display: none;
}
/* Main - Start */
main {
    background-color: #F1F1F1;
    min-height: 75vh;
    padding-top: 90px;
    padding-bottom: 90px;
}

.landing main {
    background-image: url(../images/Aerial-of-Vancouver.png);
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    background-position-y: -20vh;
}

.heading-wrapper {
    max-width: 50vw;
    background: #003366BF 0% 0% no-repeat padding-box;
    margin-bottom: 90px;
}

    .heading-wrapper h1 {
        padding: 35px 41px;
        color: #fff;
        font-size: 36px;
        font-weight: 600;
    }

        .heading-wrapper h1 span.small {
            font-size: 30px;
            font-weight: 400;
            display: block;
        }

.content-wrap {
    background-color: #fff !important;
    border-top: 10px solid #FCBA19;
    color: #262626;
    padding: 41px 95px;
    box-shadow: 0px 4px 8px #00000029;
    position: relative;
}

body:not(.landing) main .content-wrap {
    background: url(../images/vancouver-inside.jpg);
    background-repeat: no-repeat;
    background-size: 100% 89px;
    padding-top: 120px;
}

    body:not(.landing) main .content-wrap h1 {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 36px;
        color: #fff;
        font-weight: 600;
        padding-top: 23px;
        padding-bottom: 23px;
        padding-left: 50px;
        padding-right: 20px;
        background-color: #003366;
    }

        body:not(.landing) main .content-wrap h1::after {
            background-image: -webkit-linear-gradient(left, rgba(0, 51, 102, 1), rgba(0, 0, 0, 0));
            content: '';
            display: block;
            width: 200px;
            height: 100%;
            position: absolute;
            top: 0;
            right: -200px;
        }

.content-wrap p {
    font-size: 16px;
}

.action-wrap {
    background-color: #F1F1F1;
    margin-top: 50px;
    margin-bottom: 50px;
}

    .action-wrap .header {
        background-color: #003366;
        color: #262626;
    }

        .action-wrap .header h2 {
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            padding: 13px 45px 20px;
        }

    .action-wrap .btn-action {
        background-color: #003366;
        color: #fff;
        font-size: 18px;
        border-radius: 0;
        min-height: 60px;
        padding-top: 8px;
        overflow-x: hidden;
        white-space: normal;
    }

        .action-wrap .btn-action:hover {
            background-color: #355992 !important;
            color: #fff !important;
        }

    .action-wrap a {
        font-size: 18px;
        color: #355992;
    }

input:not(:disabled):not(.disabled):active:focus, input:focus {
    box-shadow: unset;
}
/* Style the list */
ul.breadcrumb {
    padding: 10px 16px 20px 0;
    list-style: none;
    background-color: #fff;
}

    /* Display list items side by side */
    ul.breadcrumb li {
        display: inline;
        font-size: 18px;
    }

        /* Add a slash symbol (/) before/behind each list item */
        ul.breadcrumb li + li:before {
            padding: 8px;
            color: #355992;
            content: "\F285";
            font-family: "bootstrap-icons";
            vertical-align: -2px;
        }

        /* Add a color to all links inside the list */
        ul.breadcrumb li a {
            color: #355992;
            text-decoration: none;
            font-size: 16px;
        }   

            /* Add a color on mouse-over */
            ul.breadcrumb li a:hover {
                color: #003366;
                text-decoration: underline;
                font-weight: 600;
            }
            
            ul.breadcrumb li a.active {
                color: #003366;
                text-decoration: none;
                font-weight: 600;
                cursor: text;
            }
/* Main - End */
/* Footer - Start */
footer {
    background-color: #003366;
    margin-top: 0;
}

    footer p {
        color: #fff;
        font-size: 14px;
    }

    footer a.nav-link {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }
/* Footer - End */
/* Help - Start */
aside.help {
    position: fixed;
    width: 66px;
    height: 56px;
    right: 0;
    top: 33vh;
    background-color: #003366;
    color: #fff;
    border-left: 10px solid #FCBA19;
    -webkit-transition: width .3s ease-in-out .2s, height .2s ease-in-out, max-height .2s ease-in-out;
    -moz-transition: width .3s ease-in-out .2s, height .2s ease-in-out, max-height .2s ease-in-out;
    -o-transition: width .3s ease-in-out .2s, height .2s ease-in-out, max-height .2s ease-in-out;
    transition: width .3s ease-in-out .2s, height .2s ease-in-out, max-height .2s ease-in-out;
    overflow: hidden;
    box-shadow: 0px 3px 6px #00000029;
}

    aside.help.active {
        width: 450px;
        height: 195px;
    }

    aside.help .help-content {
        padding: 15px 14px;
        position: relative;
    }

        aside.help .help-content h2 {
            display: inline-block;
            margin-left: 15px;
            font-size: 20px;
            font-weight: 600;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: opacity .3s ease-in-out .2s;
            -moz-transition: opacity .3s ease-in-out .2s;
            -o-transition: opacity .3s ease-in-out .2s;
            transition: opacity .3s ease-in-out .2s;
        }

    aside.help.active .help-content h2 {
        opacity: 1;
        visibility: visible;
    }
    aside.help .help-content a {
        color: #fff;
    }

    aside.help .help-content i.bi-question-circle-fill {
        font-size: 28px;
    }

    aside.help .help-content a.help-close {
        color: #fff;
        position: absolute;
        right: -50px;
        top: 20px;
        -webkit-transition: opacity .3s ease-in-out .2s, right .3s ease-in-out .2s;
        -moz-transition: opacity .3s ease-in-out .2s, right .3s ease-in-out .2s;
        -o-transition: opacity .3s ease-in-out .2s, right .3s ease-in-out .2s;
        transition: opacity .3s ease-in-out .2s, right .3s ease-in-out .2s;
        opacity: 0;
        visibility: hidden;
    }

    aside.help.active .help-content a.help-close {
        right: 20px;
        opacity: 1;
        visibility: visible;
    }

    aside.help .help-content p {
        font-style: italic;
        opacity: 0;
        visibility: hidden;
    }

    aside.help.active .help-content p {
        opacity: 1;
        visibility: visible;
    }
/* Help - End */

/* Notofication Button STart */

aside.eventnotify {
    position: fixed;
    width: 66px;
    height: 56px;
    right: 0;
    top: 45vh;
    background-color: #003366;
    color: #fff;
    z-index:111;
    border-left: 10px solid #FCBA19;
    -webkit-transition: width .3s ease-in-out .2s, height .2s ease-in-out, max-height .2s ease-in-out;
    -moz-transition: width .3s ease-in-out .2s, height .2s ease-in-out, max-height .2s ease-in-out;
    -o-transition: width .3s ease-in-out .2s, height .2s ease-in-out, max-height .2s ease-in-out;
    transition: width .3s ease-in-out .2s, height .2s ease-in-out, max-height .2s ease-in-out;
    overflow: hidden;
    box-shadow: 0px 3px 6px #00000029;
}

    aside.eventnotify.active {
        width: 450px;
        height: 395px;
        overflow:auto;
    }

    aside.eventnotify .eventnotify-content {
        padding: 15px 14px;
        position: relative;
    }

    aside.eventnotify .eventnotify-content h2 {
            display: inline-block;
            margin-left: 15px;
            font-size: 20px;
            font-weight: 600;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: opacity .3s ease-in-out .2s;
            -moz-transition: opacity .3s ease-in-out .2s;
            -o-transition: opacity .3s ease-in-out .2s;
            transition: opacity .3s ease-in-out .2s;
        }

    aside.eventnotify.active .eventnotify-content h2 {
        opacity: 1;
        visibility: visible;
    }

    aside.eventnotify .eventnotify-content a {
        color: #fff;
    }

    aside.eventnotify .eventnotify-content i.bi-bell-fill {
        font-size: 28px;
    }
#numberOfNotifications {
    position: absolute;
    left: 30px;
    top: 20px;
}
    aside.eventnotify .eventnotify-content a.eventnotify-close {
        color: #fff;
        position: absolute;
        right: -50px;
        top: 20px;
        -webkit-transition: opacity .3s ease-in-out .2s, right .3s ease-in-out .2s;
        -moz-transition: opacity .3s ease-in-out .2s, right .3s ease-in-out .2s;
        -o-transition: opacity .3s ease-in-out .2s, right .3s ease-in-out .2s;
        transition: opacity .3s ease-in-out .2s, right .3s ease-in-out .2s;
        opacity: 0;
        visibility: hidden;
    }

    aside.eventnotify.active .eventnotify-content a.eventnotify-close {
        right: 20px;
        opacity: 1;
        visibility: visible;
    }

    aside.eventnotify .eventnotify-content p {
        font-style: italic;
        opacity: 0;
        visibility: hidden;
    }

    aside.eventnotify.active .eventnotify-content p {
        opacity: 1;
        visibility: visible;
    }
.eventnotify h1, .eventnotify h2, .eventnotify  {
    color: #fff;
}
/* Notification Button End*/
/* Mobile - Start */
@media screen and (max-width: 767px) {
    .heading-wrapper {
        max-width: 100%;
    }

    .content-wrap {
        padding: 41px 20px;
    }

    body:not(.landing) main .content-wrap {
        background-size: 100% 60px;
    }

        body:not(.landing) main .content-wrap h1 {
            font-size: 22px;
            padding-top: 17px;
            padding-bottom: 17px;
        }

            body:not(.landing) main .content-wrap h1::after {
                width: 100px;
                right: -100px;
            }

    .btn-action {
        min-width: 240px;
    }

    footer {
        position: relative;
    }

        footer ul.nav {
            display: block;
            margin-bottom: 50px;
        }

        footer .copyright {
            background-color: #fff;
            width: 100%;
            margin-left: -24px;
            position: absolute;
            bottom: 0;
            height: 60px;
            display: flex;
            justify-content: center;
        }

            footer .copyright p {
                margin-bottom: 0;
                margin-top: 18px;
                color: #262626;
            }

    aside.help {
        max-height: 56px;
    }

        aside.help.active {
            width: 100vw;
            height: auto;
            max-height: 300px;
        }
}
/* Mobile - End */
/* Login - Start */
.btn-general {
    background-color: #003366;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    height: 60px;
    padding-top: 8px;
    padding-left: 20px;
    padding-right: 20px;
}

    .btn-general:hover, .search-btn:hover, .btn-bluewhite:hover {
        background-color: #355992 !important;
        color: #fff !important;
    }

.action-wrap select {
    border-radius: 0;
    margin-left: 0;
    box-shadow: 1px 1px 2px #00000029;
    border: none;
    width: 100%;
}

.action-wrap input.TextBoxDefault {
    border-radius: 0;
    margin-left: 0;
    box-shadow: 1px 1px 2px #00000029;
    border: none;
    width: 100%;
}
.action-wrap .loginBtn {
    width: 100%;
}

.action-wrap img {
    padding-bottom: 20px;
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .action-wrap select {
        display: block;
        width: 100%;
        margin-left: 0;
    }

    .action-wrap input.TextBoxDefault {
        display: block;
        width: 100%;
        margin-left: 0;
    }

    .action-wrap img {
        max-width: 100%;
    }

    .login-panel {
        overflow-x: hidden;
    }

    .loginBtn {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
        color: #fff;
        background-color: #003366;
        border-radius: 0;
        border: none;
        box-shadow: 1px 1px 2px #00000029;
        height: 60px;
    }

    .btn-general {
        width: 100%;
    }
}
/* Login - End */
.error-message {
    /*color: #fff;
    background: #E01A1A 0% 0% no-repeat padding-box;*/
    color: #E01A1A;
	display: block;
    width: 100%;
    /*padding: 17px 45px;*/
}
.property-details {
    display: inline-block;
    padding-right: 30px;
}
.drop-panel {
    background-color: #fff;
    border-top: 10px solid #FCBA19;
    padding: 10px;
}
.drop-panel-body {
    border: 2px dashed #B2B2B2;
    padding: 45px 90px;
}
.btn-blue, .AjaxUploaderCancelAllButton {
    color: #fff;
    background-color: #003366;
    border: none;
    font-size: 18px;
    padding: 21px 30px;
}
    .btn-blue:hover, .AjaxUploaderCancelAllButton:hover {
        background-color: #355992;
    }
    a.btn-blue {
        text-decoration: none;
        cursor: pointer;
    }
a.btn-blue:hover {
    color: #fff;
}
.listfiles {
    margin-top: -60px;
}

.daily-schedules h2 {
    color: #003366;
}
.daily-schedules table tr:not(:first-child) {
    background-color: #fff;
}
.daily-schedules table {
    border-width: 1px;
}
    .daily-schedules table tr {
        border-color: #C5C5C5;
    }

/* upload files */

#ReturnToFileListingLink {
    padding: 21px 30px;
    border: none;
}

/*---------- Home Page  ----------*/
.documentGridView th {
    color: #00f;
    font-weight: 100;
}

.documentGridView {
    width: 100%;
    border: 2px solid #C5C5C5;
    margin-bottom: 3ex;
}

    .documentGridView th, .documentGridView td {
        padding: 7px;
    }

    .documentGridView a {
        text-decoration: none
    }

    .documentGridView th {
        background-color: #ebebeb;
    }

        .documentGridView th a {
            position: relative;
            display: inline-block;
            padding-right: 1.5em;
        }

            .documentGridView th a::after {
                content: "\25bc";
                display: inline-block;
                position: absolute;
                right: 0;
                width: 1em;
                height: 1em;
                top: 50%;
                margin-top: -.75em;
            }

    .documentGridView tr {
        border-bottom: 1px solid black;
    }

    .documentGridView td a {
        padding: 0;
    }

/*---------- Evidence Page  ----------*/

.login-panel input {
    width: 100%;
}


/*---------- Listfiles Page ---------*/

.evidence-list .FileTables {
    width: 100%;
    border: none;
    table-layout: fixed;
    border-spacing: 0;
}

    .evidence-list .FileTables td {
        word-wrap: break-word;
    }

.evidence-list .headerTable {
    text-align: center;
    color: Black;
    width: 100%;
}

.evidence-list .headerRow td {
    text-align: center;
}

.evidence-list .headerRow {
    padding-top: 5px;
    padding-bottom: 5px;
    border: none;
    height: 30px;
}

.evidence-list .LBButton {
    background-color: #003366;
    border: none;
    padding: 5px 15px;
    height: 20px;
    width: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

    .evidence-list .LBButton:hover {
        color: #fff;
        background-color: #355992;
    }

.evidence-list .SectionHeader {
    font-weight: 700;
    font-size: 30px;
    font-family: Calibri;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    padding-left: 0;
    color: #003366;
}

.evidence-list .mainRow, .evidence-list .altRow {
    height: 30px;
    border-bottom: none;
}

.evidence-list .columnGridSml {
    width: 15%;
}

.evidence-list .columnGridTiny {
    width: 7%;
}

.evidence-list .colGridMed {
    width: 20%;
}

.evidence-list .colOwner {
    width: 10%
}

.evidence-list .colFileName {
}

.evidence-list .mainRow > td, .evidence-list .altRow > td {
    border: none;
}

.evidence-list .mainRow td {
    text-align: center;
}

.evidence-list .altRow {
    background-color: #F1F1F1;
}

    .evidence-list .altRow td {
        text-align: center;
    }

.evidence-list .invisible {
    display: none;
}

.evidence-list .col-7 {
    width: 7%;
}

.evidence-list .col-10 {
    width: 10%;
}

.evidence-list .col-15 {
    width: 15%;
}

.evidence-list .col-20 {
    width: 20%;
}

.evidence-list .col-25 {
    width: 25%;
}

.evidence-list .FileTables tr:not(.mainRow,.altRow, .headerRow) {
    display: none;
}

.evidence-list .listfiles th {
    padding: 0;
}

.evidence-list .btn-blue-public-user {
    padding: 5px 15px;
    font-size: 16px;
}

.evidence-list {
    margin-top: 30px;
}


/*DataTable*/
.page-item.active .page-link {
    color: #fff;
    background-color: #003366;
    border-color: #003366;
}

.btn-primary {
    color: #fff;
    background-color: #003366;
    border-color: #003366;
}
.btn-secondary {
    border: 1px solid #003366;
    background-color: #ffffff;
    background-size: cover;
    font-family: Arial;
    font-size: 16px;
    color: #003366;
}
    .btn-secondary:hover {
        background-color: #003366;
        color:#fff;
    }

/* Layout - Start */
.select-task-container {
    height: 100%;
    width: 100%;
}

.select-task-heading {
    font-family: Arial;
    font-size: 24px;
    color: #343a40;
    font-weight: bold;
    text-decoration: none solid rgb(52, 58, 64);
    margin-bottom: 40px;
}

.select-task-btn {
    width: 316px;
    height: 55px;
    border: 1px solid #003366;
    background-color: #003366;
    background-size: cover;
    font-family: PT Sans;
    font-size: 20px;
    color: #ffffff;
    font-family: Regular, sans-serif;
    text-decoration: none solid rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
}


a.select-task-btn:hover, .side-nav-btn a:hover {
    text-decoration: none;
    color: white;
}
a.select-task-btn:hover, .side-nav-btn a:hover {
    text-decoration: none;
    color: white;
}

.side-nav {
    list-style: none;
    padding: 0px;
    width: 250px;
}

.side-nav-btn {
    width: 100%;
    height: 60px;
    padding: 0px 10px;
    border-top: 1px solid #003366;
    font-family: Regular;
    font-size: 16px;
    color: #003366;
    text-decoration: none solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
}

ul.side-nav li:hover {
    color: #ffffff;
}

.side-nav-btn a {
    text-decoration: none solid rgb(255, 255, 255);
    color: #003366;
    height: 100%;
    width: 100%;
}


.side-nav-btn.active, .side-nav-btn.active a {
    background-color: #003366;
    color: #ffffff;
    text-decoration: none solid rgb(255, 255, 255);
}

.side-nav-btn:hover, .side-nav-btn a:hover {
    background-color: #003366;
    color: #ffffff !important;
    text-decoration: none solid rgb(255, 255, 255);
}


/* Layout - Start */
