﻿body {
    -webkit-font-smoothing: antialiased !important;
    -webkit-text-size-adjust: 100%;
    font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #676a6c;
    background-color: #fff;
}

.clickable {
    cursor:pointer;
}

.clickable:hover {
    text-decoration:underline;
}

.clearButton {
    display: inline-block;
    border: 1px dotted gray;
    margin-bottom: 20px;
    text-decoration: none;
    background: white;
    color: black;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 20px;
    width: 100%;
    text-align: left;
}

.clearButtonTitle {
    font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: black !important;
}

    .clearButton:hover,
    .clearButton:focus {
    }

    .clearButton:focus {
        outline: 1px solid #fff;
    }

    .clearButton:active {
    }

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.hidden_register_person_functionality {
    /* display: block !important; */
}

.partial_match_results {
    margin-top: 10px;
}

.search_active {
    background-color: lightgreen;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*max-width: 280px;*/
}

a {
    color: #676a6c;
}

.addFavourite {
    color: gray;
    cursor: pointer;
}

.favourite {
    color: goldenrod;
    cursor:pointer;
}

a:hover {
    text-decoration: none !important; 
}

.contactTypeListItem{
    background-color:lightgray;
    padding:5px;
    border-left: 5px solid purple; 
}

.contactTypeListRadioButton {
    margin-left: 10px !important;
    margin-right: 20px !important;
}
/* heights needed to get the form viewer iframe to stretch vertically */
html, body, #app, #wrapper, #page-content-wrapper, #page-content-wrapper > .container-fluid, .page-host, .view-portal {
    height: 100%;
    position: relative;
}

body {
    /* where 80 is the height of the navbar and 50 is the height of the menu, otherwise the body scrolls of the bottom by 80 + 50 */
    height: calc(100% - 80px - 50px);
    height: -o-calc(100% - 80px - 50px); /* opera */
    height: -webkit-calc(100% - 80px - 50px); /* google, safari */
    height: -moz-calc(100% - 80px - 50px); /* firefox */
}

@media (max-width: 768px) {
    body {
        height: calc(100% - 80px);
        height: -o-calc(100% - 80px); /* opera */
        height: -webkit-calc(100% - 80px); /* google, safari */
        height: -moz-calc(100% - 80px); /* firefox */
    }
}

#wrapper.toggled .page-host {
    /* 34 is the height of the "show/hide" toggle that appears on smaller screens */
    height: calc(100% - 34px);
    height: -o-calc(100% - 34px); /* opera */
    height: -webkit-calc(100% - 34px); /* google, safari */
    height: -moz-calc(100% - 34px); /* firefox */
}

@media (max-width: 768px) {
    .page-host {
        /* 34 is the height of the "show/hide" toggle that appears on smaller screens */
        height: calc(100% - 34px);
        height: -o-calc(100% - 34px); /* opera */
        height: -webkit-calc(100% - 34px); /* google, safari */
        height: -moz-calc(100% - 34px); /* firefox */
    }
}

.view-portal {
    /* 147 is the height of the page header above the iframe element */
    height: calc(100% - 147px);
    height: -o-calc(100% - 147px); /* opera */
    height: -webkit-calc(100% - 147px); /* google, safari */
    height: -moz-calc(100% - 147px); /* firefox */
}

.page-host {
    padding-left: 30px;
    padding-right: 30px;
}

/*[contenteditable=true]:empty:before {
  content: attr(placeholder);
  display: block; /* For Firefox */
}

*/
/* buttons */
.btn {
    border-radius: 0px;
}

.btn-default {
    color: #676a6c;
}

.btn-primary {
    background-color: #1ab394;
    border-color: #1ab394;
    color: #ffffff;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
        background-color: #18a689;
        border-color: #18a689;
        color: #ffffff;
    }

.btn-new {
    border: 0;
    border-radius: 1px;
    background: #1ab394;
    color: white;
    height: 34px;
    webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* icon buttons */
button.icon-button {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    opacity: .2;
    margin-left: 5px;
}

    button.icon-button:focus, button.icon-button:hover {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: .5;
    }

/* navbar */
.navbar {
    margin-bottom: 0px;
    border-radius: 0px;
    border: none;
    background-repeat: no-repeat;
}

    .navbar.navbar-default {
        background-color: #fff;
    }
        .navbar.navbar-default .navbar-brand {
            color: #fff;
        }

        .navbar.navbar-default .container-fluid {
            padding-bottom: 15px;
            padding-top: 15px;
        }

            .navbar.navbar-default .container-fluid .primary-header {
                margin-left: 10px;
                float: left;
                vertical-align: middle;
            }

                .navbar.navbar-default .container-fluid .primary-header img {
                    height: 50px;
                }

                .navbar.navbar-default .container-fluid .primary-header h2 {
                    margin-left: 12px;
                    display: inline;
                    vertical-align: middle;
                }

                    .navbar.navbar-default .container-fluid .primary-header h2 small {
                        margin-left: 7px;
                    }

            .navbar.navbar-default .container-fluid .secondary-header {
                float: right;
                margin-left: 30px;
            }

                .navbar.navbar-default .container-fluid .secondary-header img {
                    height: 50px;
                }


        /* menu bar */
        .navbar.navbar-default.menu {
            background-color: #2F4050;
        }

            .navbar.navbar-default.menu .container-fluid {
                padding-bottom: 0px;
                padding-top: 0px;
            }

            .navbar.navbar-default.menu .navbar-nav > li > a {
                color: #a7b1c2;
            }

                .navbar.navbar-default.menu .navbar-nav > li > a:hover, .navbar.navbar-default.menu .navbar-nav > li > a:focus {
                    color: #fff;
                    background-color: #293846;
                }

            .navbar.navbar-default.menu .navbar-nav > .active > a, .navbar.navbar-default.menu .navbar-nav > .active > a:hover, .navbar.navbar-default.menu .navbar-nav > .active > a:focus {
                color: #fff;
                background-color: #293846;
                border-top: 4px solid #19aa8d;
                margin-top: -4px;
            }

            .navbar.navbar-default.menu .navbar-nav > .open > a, .navbar.navbar-default.menu .navbar-nav > .open > a:hover, .navbar.navbar-default.menu .navbar-nav > .open > a:focus {
                color: #fff;
                background-color: #293846;
            }

            .navbar.navbar-default.menu .navbar-nav > li > .dropdown-menu {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            .navbar.navbar-default.menu button {
                color: #fff;
                border-style: none;
            }

                .navbar.navbar-default.menu button:hover {
                    background-color: #293846;
                }

        /* management-menu */
        .navbar.navbar-default.management-menu {
            background-color: #00796B;
        }

            .navbar.navbar-default.management-menu .container-fluid {
                padding-bottom: 0px;
                padding-top: 0px;
            }

            .navbar.navbar-default.management-menu .navbar-nav > li > a, .navbar.navbar-default.management-menu input::-webkit-input-placeholder {
                color: #E0F2F1;
            }

            .navbar.navbar-default.management-menu #searchCriteria {
                padding: 0px;
                margin: 0px;
                border: 0px;
                background-color: transparent;
                color: #fff;
            }

            .navbar.navbar-default.management-menu .navbar-nav > li > a:hover, .navbar.navbar-default.management-menu .navbar-nav > li > a:focus {
                color: #fff;
                background-color: #19aa8d;
            }

            .navbar.navbar-default.management-menu .navbar-nav > .open > a, .navbar.navbar-default.management-menu .navbar-nav > .open > a:hover, .navbar.navbar-default.management-menu .navbar-nav > .open > a:focus {
                color: #fff;
                background-color: #19aa8d;
            }

            .navbar.navbar-default.management-menu .navbar-nav > li > .dropdown-menu {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            .navbar.navbar-default.management-menu .dropdown-menu {
                border: none;
            }

            .navbar.navbar-default.management-menu li.dropdown-header {
                padding-bottom: 10px;
                padding-top: 10px;
            }

            .navbar.navbar-default.management-menu li.customer {
                padding-bottom: 10px;
            }

            .navbar.navbar-default.management-menu li.info {
                padding: 3px 20px;
            }

            .navbar.navbar-default.management-menu div.customer-address {
                font-size: 8pt;
            }

            .navbar.navbar-default.management-menu div.customer-viewed-at {
                font-size: 8pt;
            }

            .navbar.navbar-default.management-menu button {
                color: #fff;
                border-style: none;
                border-radius: 0px;
            }

                .navbar.navbar-default.management-menu button:hover, .navbar.navbar-default.management-menu button:focus {
                    background-color: #19aa8d;
                }


        /* friends and family bar */
        .navbar.navbar-default.friends-bar {
            background-color: #90A4AE;
        }

            .navbar.navbar-default.friends-bar.active {
                background-color: #FF8F00;
            }

            .navbar.navbar-default.friends-bar .navbar-brand {
                color: #fff;
            }

            .navbar.navbar-default.friends-bar .container-fluid {
                padding-bottom: 0px;
                padding-top: 0px;
                padding-right: 30px;
                padding-left: 30px;
            }

            .navbar.navbar-default.friends-bar .navbar-nav > li > a {
                color: #fff;
            }

                .navbar.navbar-default.friends-bar .navbar-nav > li > a:hover, .navbar.navbar-default.friends-bar .navbar-nav > li > a:focus {
                    color: #fff;
                    background-color: #607D8B;
                }

            .navbar.navbar-default.friends-bar.active .navbar-nav > li > a:hover, .navbar.navbar-default.friends-bar.active .navbar-nav > li > a:focus {
                color: #fff;
                background-color: #FF6F00;
            }

            .navbar.navbar-default.friends-bar .navbar-nav > .active > a, .navbar.navbar-default.friends-bar .navbar-nav > .active > a:hover, .navbar.navbar-default.friends-bar .navbar-nav > .active > a:focus {
                color: #fff;
                background-color: #607D8B;
                border-top: 4px solid #19aa8d;
                margin-top: -4px;
            }

            .navbar.navbar-default.friends-bar .navbar-nav > .open > a, .navbar.navbar-default.friends-bar .navbar-nav > .open > a:hover, .navbar.navbar-default.friends-bar .navbar-nav > .open > a:focus {
                color: #fff;
                background-color: #607D8B;
            }

            .navbar.navbar-default.friends-bar.active .navbar-nav > .active > a, .navbar.navbar-default.friends-bar.active .navbar-nav > .active > a:hover, .navbar.navbar-default.friends-bar.active .navbar-nav > .active > a:focus {
                color: #fff;
                background-color: #FF6F00;
                border-top: 4px solid #19aa8d;
                margin-top: -4px;
            }

            .navbar.navbar-default.friends-bar.active .navbar-nav > .open > a, .navbar.navbar-default.friends-bar.active .navbar-nav > .open > a:hover, .navbar.navbar-default.friends-bar.active .navbar-nav > .open > a:focus {
                color: #fff;
                background-color: #FF6F00;
            }

            .navbar.navbar-default.friends-bar .navbar-nav > li > .dropdown-menu {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            .navbar.navbar-default.friends-bar button {
                color: #fff;
                border-style: none;
            }

                .navbar.navbar-default.friends-bar button:hover {
                    background-color: #293846;
                }

@media(max-width: 320px)
{
    .page-host {
        padding-left: 0px;
        padding-right: 0px;
    }

    .row {
        margin-right: 0px;
        margin-left: 0px;
    }

    .page-header {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }
        .col-md-12 {
        padding-left:5px;
        padding-right:5px;
    }

    .col-xs-12 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .container-fluid {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    }

@media (min-width: 768px) {
    .navbar.friends-bar > .container .navbar-brand, .navbar.friends-bar > .container-fluid .navbar-brand {
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .navbar-default.management-menu .navbar-nav .open .dropdown-menu > li > a {
        color: #fff;
    }

    .navbar-nav.management-menu .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
        color: #fff;
    }
}

.mini-menu {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    display: none;
    padding: 15px;
    padding-top: 0px;
    background-color: #2F4050;
    color: #fff;
}

    .mini-menu .content {
        margin-left: 20px;
        margin-right: 20px;
        position: relative;
    }

        .mini-menu .content i.close {
            position: absolute;
            right: 0px;
            color: #fff;
        }

        .mini-menu .content .navbar-nav {
            margin: 0px;
        }

        .mini-menu .content .nav > li > a {
            padding-left: 0px;
            color: #a7b1c2;
        }

        .mini-menu .content .nav > li.active {
            background-color: transparent;
            color: #fff;
            font-weight: bold;
        }

            .mini-menu .content .nav > li.active a {
                color: #fff;
                font-weight: bold;
            }

        .mini-menu .content .nav > li > a:hover, .mini-menu .content .nav > li > a:focus {
            background-color: transparent;
            color: #fff;
        }

@media (min-width: 768px) {
    .mini-menu {
        display: none !important;
    }

    #wrapper {
        display: block !important;
    }
}

/* page header */
        .page-header {
    background-color: #F0F0F0;
    margin-top: 0px;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #E7EAEC;
}

.center-panel .panel .panel-body .page-header {
    margin-right: -10px;
}

.page-header h1 {
    font-size: 24px;
    font-weight: 100;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #2F4050;
}

.page-header h2 {
    font-size: 18px;
    font-weight: 100;
    margin-top: 0px;
}

/* page header, nav */
.person-row .nav > li > a,
.page-header .nav > li > a {
    border-radius: 0;
    border: 1px solid #C8C8C8;
}

.page-header .welcome {
    text-align: right;
}

    .page-header .welcome .fa {
        display: inline;
    }

    .page-header .welcome > p {
        margin-bottom: 2px;
    }

    .page-header .welcome .clickable {
        cursor: pointer;
    }

@media (max-width: 768px) {
    .page-header .nav {
        max-width: 200px;
    }

        .page-header .nav > li {
            margin-left: 0;
            margin-bottom: 2px;
        }

    .page-header .welcome {
        padding-left: 3px;
    }
}

.page-header .nav > li.active > a {
    background-color: #293846;
    border: 1px solid #293846;
}

/* thumbnails - general */
.thumbnail {
    border-radius: 0px;
    padding: 0px;
}

button.thumbnail {
    width: 100%;
    text-align: left;
}

    .thumbnail .caption {
        padding: 20px;
        padding-bottom: 10px;
    }


    .thumbnail .header.caption h2 {
        
        font-size: 24px;
        font-weight: bold;
        margin-top: 5px;
    }

    .thumbnail .header.caption .row {
        display: flex;
    }

    .thumbnail .header.caption h3 {
        margin-top: 5px;
        text-overflow: ellipsis;
        width: 100%;
        display: inline;
        overflow: hidden;
    }

    .thumbnail .header.caption .details-link {
        font-size: 30pt;
        text-align: right;
        padding: 0;
        /* flex: 1; */
        width: 100%;
        margin-left: -15px;
        height: 82px;
    }

        .thumbnail .header.caption .details-link:hover {
            cursor: pointer;
            background-color: #E7EAEC;
        }

    .thumbnail .header.caption a {
        /*  color: red; */
        font-weight: bold;
    }

    .thumbnail .details.caption {
        background-color: #45596C;
        /*background-color: #4877B6;*/
        color: #fff;
    }

    .thumbnail .process-details.caption .row {
        margin-left: 0px;
        margin-right: 0px;
    }

    .thumbnail .details.caption h2 {
        text-transform: uppercase;
        font-size: 8pt;
        font-weight: normal;
        margin-top: 5px;
        margin-bottom: 0px;
    }

    .thumbnail .details.caption h3 {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 12pt;
    }

    .thumbnail .secondary-header.caption {
        padding: 20px;
        padding-bottom: 10px;
        background-color: #2ABB9B;
        color: #fff;
    }

        .thumbnail .secondary-header.caption h2 {
            text-transform: uppercase;
            font-size: 8pt;
            font-weight: bold;
            margin-top: 5px;
        }

        .thumbnail .secondary-header.caption h3 {
            margin-top: 5px;
        }

    .thumbnail .secondary-details.caption {
        background-color: #16A085;
        color: #fff;
    }

        .thumbnail .secondary-details.caption .row {
            margin-left: 0px;
            margin-right: 0px;
        }

        .thumbnail .secondary-details.caption h2 {
            text-transform: uppercase;
            font-size: 8pt;
            font-weight: normal;
            margin-top: 5px;
            margin-bottom: 0px;
        }

        .thumbnail .secondary-details.caption h3 {
            margin-top: 5px;
            margin-bottom: 5px;
            font-size: 12pt;
        }

    .thumbnail .nav > li > a {
        border-radius: 0;
        background-color: #2ABB9B;
        color: #fff;
        /*border: 1px solid #293846;*/
    }

    .thumbnail .nav > li.active > a {
        background-color: #fff;
        color: #000;
    }

    /* list-group in panel - general */
    .thumbnail > .list-group {
    }

        .thumbnail > .list-group > .list-group-item {
            padding-top: 20px;
            padding-bottom: 20px;
            border: none;
            border-top: 1px solid #E7EAEC;
        }

            .thumbnail > .list-group > .list-group-item:first-of-type {
                border-top: none;
            }


    /* panel in thumbnail items - general */
    .thumbnail .items .panel .panel-body .actions {
        text-align: right;
    }

    .thumbnail .items .panel {
        border-style: none;
    }

        .thumbnail .items .panel .list-group .list-group-item:first-of-type {
            border-top: none;
        }

        /* panel in thumbnail items - steps */
        .thumbnail .items .panel.steps .list-group .list-group-item {
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .thumbnail .items .panel.steps .list-group .list-group-item .icon {
                font-size: 20pt;
            }

            .thumbnail .items .panel.steps .list-group .list-group-item h2 {
                text-transform: uppercase;
                font-size: 8pt;
                font-weight: bold;
                margin-top: 5px;
                margin-bottom: 0px;
            }

            .thumbnail .items .panel.steps .list-group .list-group-item h3 {
                margin-top: 5px;
            }

    /* thumbnail - form type summary */
    .thumbnail.process-summary .header.caption {
        height: 250px;
    }


    /* thumbnail - form type summary */
    .thumbnail.partial-form-summary .header.caption {
        height: 250px;
    }
    /* thumbnail - form type summary */
    .thumbnail.form-type-summary .header.caption {
        height: 250px;
        overflow: hidden;
    }

    .thumbnail.form-type-summary .detail.caption {
        height: 50px;
    }

    /* thumbnail - data item */

    .thumbnail.data-item {
        height: 340px;
        overflow-y: auto;
    }

        .thumbnail.data-item .header.caption {
        }

        .thumbnail.data-item > div.details * a {
            color: #801515;
            font-weight: bold;
        }

        .thumbnail.data-item.personalisation {
            height: auto !important;
        }

            .thumbnail.data-item.personalisation .header.caption {
                height: auto !important;
            }

            .thumbnail.data-item.personalisation > div.details.caption {
                background-color: white;
                height: auto !important;
                color: black !important;
                /* overflow: scroll; */
                overflow-y: auto;
            }

        .thumbnail.data-item.personalisation {
            background-color: #fcf8e3;
        }


.thumbnail.your-area:hover {
    background-color: #E7EAEC;
    cursor: pointer;
}

/* form view-portal */
.view-portal {
    margin-right: -40px;
    margin-left: -10px;
}

    .view-portal #eGovHubFormViewer {
        height: 100%;
        width: 100%;
        border-style: none;
        overflow-y: auto;
        display: none;
    }

    .view-portal #eGovHubFormViewerLoading {
    }

    .view-portal #eGovHubFormViewerSaved {
        display: none;
    }

    .view-portal #eGovHubFormViewerFinished {
        display: none;
    }

ul.silo-registration-validation {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #801515;
    color: white;
}

    ul.silo-registration-validation > li.validation-item {
        display: list-item;
        margin-top: 5px;
        margin-bottom: 5px;
        padding: 3px;
    }

/* thumbnail - data item */

.thumbnail.silo-list {
}

    .thumbnail.silo-list.silo-default {
    }

    .thumbnail.silo-list * h3.title {
    }

    .thumbnail.silo-list * p.sub-title {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 60px; /* fallback */
    }

.thumbnail.silo-refuse {
    border-top: 5px solid brown;
}

.thumbnail.silo-list .header.caption {
    height: 177px;
}

.reg-offered-container {
    height: 40px;
}

.reg-offered {
    text-align: center;
    background-color: green !important;
    padding: 7px !important;
    color: #fff;
}

.reg-offered h3 {
    font-size: 16px;
}

.has-multi {
    text-align: center;
    background-color: darkkhaki !important;
    color: #fff;
}

    .has-multi div.header {
    }

.reg-offered h2 {
    text-transform: uppercase;
    font-size: 8pt;
    font-weight: bold;
    margin-top: 10px;
    vertical-align: middle;
}

.has-multi h2 {
    text-transform: uppercase;
    font-size: 8pt;
    font-weight: bold;
    margin-top: 10px;
    vertical-align: middle;
}

.icon-back {
    font-size: 2em !important;
}

/* Saving flashing dots */

@keyframes blink {
    0% {
        opacity: .2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: .2;
    }
}

.saving span {
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

    .saving span:nth-child(2) {
        animation-delay: .2s;
    }

    .saving span:nth-child(3) {
        animation-delay: .4s;
    }

.nav-icon {
    padding: 10px 0px 10px 2px;
    display: inline-block;
    background: none;
}

/*.active {
    background: rgba(58, 96, 130, 0.95);
}*/

.silo-detail-alt > nav > ol {
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-left: 15px;
}

    .silo-detail-alt > nav > ol > li {
        list-style: none;
        list-style-position: outside;
        font-size: 14px;
        line-height: 2em;
        text-transform: none;
        float: left;
        width: 100%;
    }

        .silo-detail-alt > nav > ol > li.even {
            clear: both;
        }

        .silo-detail-alt > nav > ol > li > span {
            line-height: 1.25em;
        }

.silo-detail-alt > .data-tile-alt {
    margin-left: 15px;
}

    .silo-detail-alt > .data-tile-alt > header > h1 {
        font-size: 24px;
        font-weight: bold;
    }

nav.faq-nav-list {
    clear: both;
}

/* manage specific */

div#app-manage-container * div.page-header {
    background-color: white;
    border: 0px;
    margin: 0 !important;
    padding: 0 !important;
}

div#app-manage-container * div.panel-heading {
    padding: 5px 12px;
}

div#app-manage-container * span.lead {
    font-size: 1.2em;
    line-height: 2em;
}

div#app-manage-container * span.panel-collapser {
}

span.panel-collapser.inline {
    left: 0 !important;
    top: 4px !important;
}


div#app-manage-container * .btn {
    padding: 3px 8px;
}

div#app-manage-container * .btn-danger {
    color: white !important;
}

div#app-manage-container * div.editable-field-container {
    border: 1px solid gray;
    background-color: #DCDCDC;
    padding: 20px;
}

.markdown-editor, .markdown-preview {
    width: 100%;
    height: 100px;
}

    .markdown-preview.x2 {
        height: 188px !important;
    }

.markdown-editor {
    background-color: white;
}

.markdown-preview {
    display: block;
    overflow: scroll;
    overflow-x: hidden;
}

.field-visibility-container {
}

.test-set-select {
    width: 100%;
    margin-bottom: 1em;
}

.list-group-item > i {
    visibility: hidden;
    color: #1ab394;
    line-height: 23px;
    float: left;
    margin-right: 5px;
}

highlight {
    background-color: inherit;
}

.list-group-item.highlight > i {
    display: inline-block;
    visibility: visible;
    color: #1ab394;
}


.person-row {
    background: #F0F0F0;
    padding-bottom: 10px;
}

    .person-row h3 {
        margin-left: 30px;
        font-size: 32px;
        padding-top: 0px;
        margin-top: 30px;
        margin-bottom: 0px;
        padding-bottom: 0px;
        color: #2F4050;
    }

    .person-row h4 {
        margin-left: 30px;
    }

/* file upload */
.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

@media (max-width: 767px) {

    .nav-dropout {
        width: 100%;
    }

        .nav-dropout.nav-dropout-right {
            float: left;
        }

    .nav-dropout-right .nav-dropout-head.button {
        padding-left: 10px;
        min-width: 100%;
    }

    .nav-dropout-menu {
        top: calc(100% + 95px) !important;
        right: auto !important;
        max-width: 100%;
        width: 100%;
    }

    .nav-dropout-head-control {
        min-height: 48px;
        min-width: calc(100% - 46px);
    }
}

.nav-pills > li + li {
    margin-bottom: 2px;
}

.nav-pill-btn {
    border-radius: 0;
    border: 1px solid #C8C8C8;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 10px;
    text-decoration: none;
}

.nav-pills.sub-nav > li > a {
    border-radius: 0;
    border: 1px solid #C8C8C8;
}
.nav-pills.sub-nav > li.active > a {
    background-color: #293846;
    border: 1px solid #293846;
}
.tab-content.sub-nav {
    margin-top: 15px;
}


.alert-container {
    float: left;
}

.transparent {
    background: transparent;
}



/* Validation */

.validation_error {
    color: red;
}

.aurelia-validation-message {
    display: inline;
    margin-left: 5px;
}

.has-warning {
    color: red;
    border-color: red;
}


/* flank menu */
.flank-menu {
    border: 0;
}

.flank-menu-container {
    border: 1px solid #ddd;
}

.flank-menu .caption {
    padding: 0;
}

.flank-menu .content {
    padding-top: 10px;
}

.flank-menu .btn-end {
    flex: 1;
    text-align: center;
    font-size: 78px;
    background-color: #3c763d;
    color: white;
}

    .flank-menu .btn-end.disabled {
        background-color: silver;
    }

    .flank-menu .btn-end i {
        transform: rotate(-48deg);
        vertical-align: bottom;
    }


.call-end {
    color: #C34545;
    border-color: #C34545;
}

    .call-end i {
        transform: rotate(135deg);
        margin-right: 10px;
    }

    .call-end.disabled {
        border-color: silver;
    }

        .call-end.disabled span {
            color: silver;
            cursor: not-allowed;
        }


.silo-list-reorder-icon {
    font-size: 16pt !important;
    cursor: hand;
    cursor: pointer;
}

.timeout-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 99999;
    height: 100vh;
    width: 100%;
    margin-top: -10px;
    padding: 10px;
}

.center-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 9999;
    height: 100vh;
    width: 100%;
    margin-top: -10px;
    padding: 10px;
}

.timeout-active {
    overflow: hidden;
}

#overlay-viewer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 9999;
    height: 100vh;
    width: 100%;
    margin-top: -10px;
    padding: 10px;
    pointer-events: none;
}

.big-splash {
    position: absolute;
    width: 447px;
    height: 200px;
    top: 50%;
    left: 42%;
    margin: -100px 0 0 -150px;
    text-align: center;
    color: #F3F3F3;
}

    .big-splash i {
        margin-top: 10px;
        font-size: 64pt;
    }

    .big-splash p {
        font-size: 24pt;
        margin-top: 5px;
        color: #DDDDDD;
    }

.inline-splash {
    text-align: center;
    color: #F3F3F3;
}

    .inline-splash i {
        margin-top: 10px;
        font-size: 64pt;
    }

    .inline-splash p {
        font-size: 24pt;
        margin-top: 5px;
        color: #DDDDDD;
    }


/* loading screen styles */
.splash {
    position: absolute;
    width: 300px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -150px;
    text-align: center;
    color: #F3F3F3;
}

    .splash i {
        margin-top: 10px;
        font-size: 64pt;
    }

    .splash p {
        font-size: 24pt;
        margin-top: 5px;
        color: #DDDDDD;
    }

h2 > span.thinner {
    font-weight: 400;
}

.center-panel-table {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 9999;
    height: 39vh;
    width: 100%;
    margin-top: -10px;
}

    .center-panel-table .splash {
        position: absolute;
        width: 300px;
        height: 100px;
        top: 45%;
        left: 50%;
        margin: -100px 0 0 -150px;
        text-align: center;
        color: #F3F3F3;
    }

.center-panel-row {
    /* top: 0; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
    background: white;
    z-index: 9999;
    height: 34vh;
    width: 100%;
    margin-top: -10px;
}

    .center-panel-row .splash {
        position: relative;
        width: 300px;
        height: 106px;
        top: 39%;
        left: 50%;
        margin: -100px 0 0 -150px;
        text-align: center;
        color: #F3F3F3;
    }

.header-controls {
    margin-bottom: 20px;
}

    .header-controls .input-group {
        width: 100%;
    }

    .header-controls .dropdown-toggle {
        width: 100%;
    }

    .header-controls .input-group input[type=text] {
        border: 0;
        box-shadow: none;
        border-bottom: 2px solid #dddddd;
    }

    .header-controls .input-group input[type=date] {
        border: 0;
        box-shadow: none;
        border-bottom: 2px solid #dddddd;
    }


    .header-controls .dropdown .dropdown-toggle {
        border: 0;
        border-radius: 1px;
        background: #1ab394;
        color: white;
        height: 34px;
        webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }

    .header-controls .dropdown .dropdown-menu {
        width: 100%;
    }

.row .spacer-above {
    padding-top: 50px;
}

table .alt {
    background: #efefef;
}

.table-spacing td {
    line-height: 2.428571 !important;
}

.onevu-pagination {
    box-shadow: none;
    border-bottom: 2px solid #dddddd;
    border-radius: 0;
}

    .onevu-pagination > .active > a {
        border: 0;
        border-radius: 1px;
        background: #1ab394;
        color: white;
        webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }

    .onevu-pagination > li > a,
    .onevu-pagination > li > span {
        border-top-right-radius: 1px;
        border-bottom-right-radius: 1px;
        height: 30px;
        border: 0;
        margin-left: 5px;
    }

    .onevu-pagination > li > a,
    .onevu-pagination > li > span {
        border-top-right-radius: 1px;
        border-bottom-right-radius: 1px;
        height: 30px;
        border: 0;
        margin-left: 5px;
        margin-top: 2px;
    }

    .onevu-pagination > li:first-child > a,
    .onevu-pagination > li:first-child > span {
        border-top-left-radius: 1px;
        border-bottom-left-radius: 1px;
        height: 34px;
        border: 0;
        margin-right: 5px;
        margin-top: 0;
    }

    .onevu-pagination > li:last-child > a,
    .onevu-pagination > li:last-child > span {
        border-top-right-radius: 1px;
        border-bottom-right-radius: 1px;
        height: 34px;
        border: 0;
        margin-left: 5px;
        margin-top: 0;
    }


#diagnostic-viewer {
    z-index: 1001;
    width: 800px;
    position: absolute;
    display: none;
}

    #diagnostic-viewer > .show {
        display: block;
    }

    #diagnostic-viewer > div.header {
        height: 40px;
        margin-left: 69px;
    }

    #diagnostic-viewer > div.content {
        max-height: 700px;
        overflow-x: none;
    }

    #diagnostic-viewer > div.footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 40px;
    }

    #diagnostic-viewer > div.inner {
        max-height: 600px;
        /* max-height: calc(100% - 100px); */
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1002;
        background-color: white;
        width: 70%;
        height: 800px;
        border-width: 1px;
        border-color: rgb(225, 225, 234);
        overflow-y: scroll;
        border: 2px solid black;
        padding: 20px;
    }

.diagnostic-title-container {
    background-color: #f0f0f0;
    width: 30%;
    float: left;
    margin-right: 15px;
}

.diagnostic-title-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.diagnostic-title-list-item {
    line-height: 30pt;
    margin-left: 9px;
    border-bottom: 1px solid #00796b;
    cursor: pointer;
}

    .diagnostic-title-list-item.selected {
        background-color: #00796b;
        color: white;
    }

.diagnostic-viewer-cancel {
    float: right;
    margin-right: 5px;
}

#chat-dlc-container {
    background-color: white;
    height: 450px;
}

    #chat-dlc-container > div.history {
        height: 350px;
        overflow: auto;
        padding: 10px;
    }

        #chat-dlc-container > div.history > div.message-item > div.message {
            margin-bottom: 10px;
            padding: 12px;
        }

        #chat-dlc-container > div.history > div.message-item.highlight {
            background-color: gold;
            border: 5px solid red;
            display: flow-root;
        }

        #chat-dlc-container > div.history > div.message-item > div.message {
            clear: both;
            overflow: hidden;
            position: relative;
        }

            #chat-dlc-container > div.history > div.message-item > div.message.outbound {
                float: right;
            }

                #chat-dlc-container > div.history > div.message-item > div.message.outbound > div.content {
                    background-color: #eceef0;
                }

            #chat-dlc-container > div.history > div.message-item > div.message.inbound {
                float: left;
            }

            #chat-dlc-container > div.history > div.message-item > div.message.outbound > div.content {
                background-color: #0078d7;
                background-color: #838b93;
                color: #ffffff;
                text-align: right;
            }

            #chat-dlc-container > div.history > div.message-item > div.message > div.content {
                background-color: #eceff1;
                color: #000000;
                border-radius: 2px;
                box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
                padding: 8px;
                word-break: break-word;
            }

        #chat-dlc-container > div.history > div.message > div.meta {
            clear: both;
            color: #767676;
            font-size: 11px;
            margin-top: 5px;
        }

    #chat-dlc-container > div.footer {
        clear: both;
        height: 100px;
    }

        #chat-dlc-container > div.footer > form > span.dlc-busy {
            background-color: deepskyblue;
            width: 100%;
            color: white;
            padding: 1rem;
            display: block;
        }

        #chat-dlc-container > div.footer > form > input#input-text {
            width: 100%;
            height: 60px;
            padding: 4px;
            font-size: 95%;
        }

        #chat-dlc-container > div.footer > form > button#send-msg {
            width: 100%;
        }

#qna-trainer-container {
    height: 500px;
    background-color: #fcfcfc;
    width: 920px;
}

    #qna-trainer-container > div.qna-trainer-col {
        width: 220px;
        float: left;
    }

        #qna-trainer-container > div.qna-trainer-col.qna-trainer-sep {
            float: left;
            width: 30px;
            height: 500px;
        }

        #qna-trainer-container > div.qna-trainer-col.qna-trainer-dlc {
            width: 380px !important;
            float: left;
        }

    #qna-trainer-container > * > div.qna-trainer-question-container > div.qna-trainer-question {
        margin-top: 10px;
        margin-bottom: 10px;
        border: solid 1px #000;
        background-color: white;
        padding: 8px;
        font-size: 85%;
    }

        #qna-trainer-container > * > div.qna-trainer-question-container > div.qna-trainer-question.highlight {
            background-color: #0078d7;
            color: white;
        }


        #qna-trainer-container > * > div.qna-trainer-question-container > div.qna-trainer-question > span.alternative-question-text-remover {
            padding: 3px;
            color: black;
            cursor: hand;
            cursor: pointer;
            font-weight: bold;
            font-size: 15px;
        }

.hover-hand:hover {
    cursor: hand;
    cursor: pointer;
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-menu.hidden {
    display: none !important;
}

span.personalise-another {
    font-weight: bold;
    display: inline-block;
}

    span.personalise-another.ll-invert {
        color: white;
        background-color: #1ab394;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

div.has-multi ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    div.has-multi ul li {
        margin: 0;
        padding: 0;
        cursor: hand;
        cursor: pointer;
        display: inline-block;
        margin-right: 1rem;
    }




div.context-col {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    display: inline-block;
}

div.context-col {
    margin-bottom: 15px;
}

    div.context-col > span.context-item-label {
        font-weight: bold;
        background-color: #2F4050;
        color: white;
        display: block;
        padding: 0.25rem;
    }

    div.context-col > span.context-item-label {
        font-weight: bold;
        background-color: #2F4050;
        color: white;
        display: block;
        padding: 0.25rem;
    }

span.context-item-label.pers-link {
    background-color: #18a689 !important;
}

div.context-col > span.context-item-label > a {
    color: white !important;
}

div.context-col > span.context-item-value {
    display: block;
    padding: 0.25rem;
    background-color: white;
}

div.context-col > div.context-item-switch {
    line-height: 17pt;
}


    div.context-col > div.context-item-switch > a > span {
        display: block;
    }

div.context-container {
}

/*





div.silo-context-header {
    margin-bottom: 2rem;
}

div.silo-context-header > ul {
    list-style-type: none;
    margin:0;
    padding:0
}

div.silo-context-header > ul > li {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    display: inline-block;
    margin-right: 1.5rem;
}


div.silo-context-header > ul > li.context-item {
    border: 2px solid #2F4050;
    width: 150px;
}

div.silo-context-header > ul > li.context-item-switch {
    border: 2px solid #2F4050;
    width: 150px;
}

div.silo-context-header > ul > li.context-item > span.context-item-label {
    font-weight: bold;
    background-color: #2F4050;
    color: white;
    display: block;
    padding: 0.25rem;
}

div.silo-context-header > ul > li.context-item > span.context-item-value {
    display: block;
    padding: 0.25rem;
}
*/

ul.silo-ctx-list {
    margin: 0;
    padding: 0;
}

    ul.silo-ctx-list > li {
        margin: 0;
        padding: 0;
        list-style-type: none
    }

.clickable {
    cursor: pointer;
}

.fa-star.silo-favorite.highlight {
    color: orange;
}

.fa-star.silo-favorite {
    color: silver;
    font-size: 125%;
}

span.toggle-spinner {
    width: 30px;
    height: 30px;
}

/* --- error handling --- */
.error-message {
    color: red;
}

.help-block {
    color: red;
}

.success-message {
    color: green;
}


/* -- maps -- */
#map-results {
    position: relative;
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
}

.map-with-directions {
    position: relative;
    border: 1px solid #ddd;
    overflow: auto;
}

    .map-with-directions #map {
        float: left;
        width: calc(100% - 360px);
        height: 600px;
    }

    .map-with-directions .directionsContainer {
        width: 360px;
        height: 600px;
        overflow-y: auto;
        float: left;
    }

/* -- service finder -- */
div.page-header.search .row.header-inputs {
    margin-left: -30px;
    margin-right: -30px;
}

div.service-search-container div.services-searching {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    opacity: 0.4;
}

    div.service-search-container div.services-searching .updating-splash {
        position: absolute;
        width: 80px;
        height: 80px;
        top: 50%;
        left: 50%;
        margin: -40px 0 0 -40px;
        text-align: center;
        color: #F3F3F3;
        font-size: 64pt;
        color: #000;
    }

div.service-search-container div.search-results div.header h3 {
    display: inline-block;
}

div.service-search-container div.search-results div.header .paging-info {
    margin-left: 10px;
}

div.service-search-container div.search-results .list-group {
    margin-top: 10px;
    border-radius: 0px;
}

.list-group-item.service-summary {
    padding-left: 0px;
    border-style: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    min-height: 115px;
}

    .list-group-item.service-summary .thumbnail {
        width: 160px;
        height: 90px;
        background-color: #F0F0F0;
        float: left;
        border: none;
    }

    .list-group-item.service-summary div.about {
        display: inline-block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 180px;
    }

    .list-group-item.service-summary h4 {
        font-weight: bold;
    }

    .list-group-item.service-summary h5 {
    }

    .list-group-item.service-summary p {
        position: absolute;
        bottom: 0;
    }

div.service-search-container div.search-filters div.header h3 {
    display: inline-block;
}

div.service-search-container div.search-filters div.header .filter-info {
    margin-left: 10px;
    padding-top: 26px;
}

div.service-search-container div.search-filters li.filter:hover {
    cursor: pointer;
    background-color: #F3F3F3;
}

div.service-search-container div.search-filters li.filter i {
    float: none;
    display: inline-block;
    margin-right: 10px;
}

.tiny-replica {
    min-height: 240px;
    border-radius: 1px;
    width: 100%;
    resize: vertical;
}

.matrix-body {
}

.matrix-col-header {
    display: none;
}

@media (min-width: 993px) {

    .matrix-col-header {
        display: block;
    }

    .matrix-col-item-header label {
        display: none;
    }
}

.notification-summary-row-item {
    border-top: solid 1px #ddd;
}

    .notification-summary-row-item .row {
        padding: 10px;
    }

    .notification-summary-row-item .summary:hover {
        background: #f5f5f5;
    }

    .notification-summary-row-item .detail {
        padding: 0px;
    }

.notification-item-inner-detail {
    padding: 0px;
    margin-left: 20px;
    float: right;
    width: 90%;
}

    .notification-item-inner-detail .row {
        padding: 0px;
        border-bottom: solid 1px #ddd;
    }

    .notification-item-inner-detail p {
        padding: 10px 0;
        margin: 0;
    }

.notification-item-inner-summary {
    border-bottom: solid 1px #ddd;
    border-top: solid 1px #ddd;
}

    .notification-item-inner-summary span, .notification-item-inner-detail span {
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
        overflow: hidden
    }

.timeline-event {
    border-left: 2px grey solid;
    padding-left: 40px;
    position: relative
}

.timeline-event-item {
    position: absolute;
    top: 17%;
    left: -10px;
}

.timeline-event:last-child {
    border: 0;
}

    .timeline-event:last-child .timeline-event-item {
        bottom: 0;
        top: -3px;
    }

.timeline-page-body {
    padding: 0px 53px;
}

.timeline-event-item .created {
    color: #60D836;
}

.timeline-event-item .notification {
    color: #1CC5CA;
}

.timeline-event-item .call-started {
    color: #EF5EA7;
}

.timeline-event-item .call-finished {
    color: #EF5EA7;
}

.timeline-event-item .note-added {
    color: #F8BA00;
}

.timeline-event-item .form-completed {
    color: #00A1FF;
}

.timeline-event-item .facebook-started {
    color: #00A1FF;
}

.timeline-event-item .facebook-finished {
    color: #00A1FF;
}

.timeline-event-item .broadcast-article-sent {
    color: #309cfc;
}

/* landlords */

div.ll-container {
    
}

div.ll-container h1, h2, h3, h4 {
    margin-left: 0 !important;
}

 h2 {
    font-size: 21px;
}

div.list-group-item h3 {
    font-size: 16px;
}

div.ll-container p {
    margin: 0;
}

div.ll-container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

div.ll-container-inline-flex {
    display: inline-flex;
}

div.grid-item > ul, li {
    margin: 0;
    padding: 0 !important;
    list-style: none;
}

div.ll-container > ul.fixed-height {
    max-height: 400px;
    overflow-x: scroll;
}

    div.ll-container > ul, li.ll-invert {
        background-color: #2b4972;
    }

div.ll-container > ul, li.ll-invert > span {
    color: white;
}

div.ll-container-grid li {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 15px;
    padding-left: 5px;
}

div.ll-claimant-container {
    padding: 10px;
}

div.ll-container-grid li.ll-invert > i.ll-drill {
    color: white;
}

    div.ll-container-grid li > i.ll-drill {
        font-size: 200%;
        float: right;
        position: relative;
        right: 10px;
        top: 6px;
    }

div.ll-container-grid li > span.ll-label {
    font-weight: 800;
}

div.ll-container-grid li > span.ll-value {
    font-size: 120%;
    display: block;
    padding-right: 30px;
}

div.ll-container-grid li > button.ll-value {
    display: block;
}

span.ll-label-name {
    font-size: 115% !important;
}

span.ll-label-ref {
    font-size: 95% !important;
}





span.ll-payment-amount {
    font-size: 150%;
    float: right;
    font-weight: 800;
}

span.ll-data-date {
    
}




div.ll-container .form-control {
    font-size: inherit;
    height: auto;
}

div.ll-container label {
    font-size: inherit;
}

section.ll-section {
    margin-top: 20px;
    border-left: 5px solid #2b4972;
    padding-left: 10px;
}

.ll-hover:hover {
    cursor: hand;
    cursor: pointer;
}

section.ll-section table {
    margin-left: 0;
}

p.tenant-not-found {
    color: red;
}

div.row.notification-preference-item span.context-item {
    margin-right: 10px;
}

/* left and right modals */
.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 520px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

    .modal.left .modal-dialog.wide,
    .modal.right .modal-dialog.wide {
        width: 1024px;
    }

@media (max-width: 768px) {
    .modal.left .modal-dialog,
    .modal.right .modal-dialog {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .modal.left .modal-dialog.wide,
    .modal.right .modal-dialog.wide {
        width: 100%;
    }
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 15px 35px 15px 35px;
}

/*Left*/
.modal.left.fade .modal-dialog {
    left: -320px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
    left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
    right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    border-bottom-color: #2C373E;
    background-color: #2C373E;
    padding: 14px 35px 14px 35px;
    color: #fff;
}

    .modal-header .close {
        margin-top: 8px;
        color: #fff;
        opacity: .8;
    }

        .modal-header .close:hover {
            opacity: 1;
        }

.modal-title {
    font-size: 14pt;
    line-height: 40px;
}

.privacy-statement-popup {
    background: rgba(0,0,0,.6);
    display: none;
    height: 100%;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.privacy-statement-popup .helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.privacy-statement-popup > div {
    background-color: #fff;
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    height: auto;
    max-width: 65%;
    min-height: 100px;
    vertical-align: middle;
    width: 60%;
    position: relative;
    border-radius: 8px;
    padding: 15px 5%;
}

.privacy-statement-silo-popup {
    display: none;
    height: 100%;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 10000;
}

    .privacy-statement-silo-popup .helper {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

    .privacy-statement-silo-popup > div {
        background-color: #fff;
        box-shadow: 10px 10px 60px #555;
        display: inline-block;
        height: auto;
        max-width: 65%;
        min-height: 100px;
        vertical-align: middle;
        width: 60%;
        position: relative;
        border-radius: 8px;
        padding: 15px 5%;
    }

.privacy-statement-silo-popup-close-button {
    background-color: #fff;
    border: 3px solid #999;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-family: arial;
    font-weight: bold;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 25px;
    line-height: 25px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.privacy-statement-silo-popup-close-button:hover {
    background-color: #DC143C;
}
}

.broadcast-article {
    padding-top: 20px;
    padding-bottom: 20px;
}

.table tr td.selectable.highlight {
    background-color: lightgoldenrodyellow;
}

.list-group > .list-group-item.selectable i {
    visibility: hidden;
}

.list-group > .list-group-item.selectable.highlight i {
    visibility: visible;
}

.list-group > .list-group-item.selectable > span {
    margin-left: 10px;
}

.list-group-item .heading {
    float: left;
    margin-top: 6px;
}





.open-button {
    background-color: #2F4050;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    font-size: xx-large;
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
/*    border: 3px solid #f1f1f1;*/
    z-index: 9;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}


    .form-container textarea {
        width: 100%;
        padding: 15px;
        margin: 5px 0 22px 0;
        border: none;
        background: #f1f1f1;
        resize: none;
        min-height: 200px;
    }


        .form-container textarea:focus {
            background-color: #ddd;
            outline: none;
        }


    .form-container .btn {
        background-color: #04AA6D;
        color: white;
        padding: 16px 20px;
        border: none;
        cursor: pointer;
        width: 100%;
        margin-bottom: 10px;
        opacity: 0.8;
    }


    .form-container .cancel {
        background-color: red;
    }


    .form-container .btn:hover, .open-button:hover {
        opacity: 1;
    }



.chat-container {
    /*    max-width: 300px;*/
    /*    width: 80%;*/
    width: 400px;
    /*    margin: auto;*/
    /*margin: 1rem;*/
    /*    margin-top: 2rem;*/
    letter-spacing: 0.5px;
    /*    height: 80%;*/
    height: 500px;
}

.chat-header {
    border: 1px solid #ccc;
    width: 100%;
    height: 10%;
    border-bottom: none;
    background-color: #efefef;
    margin: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.chat-header-container {
    width: 100%;
    height: auto;
    float: left;
    margin: 0;
}

.chat-header-title {
    width: 150px;
    float: left;
    color: black;
    padding-left: 2%;
    margin-bottom: 0px;
}

.chat-header-button {
    margin: 10px 2% 0px 2%;
    float: right;
}



.chat-page {
    height: 500px;
/*    padding: 10px 0px;*/
}

.chat-inbox {
    overflow: hidden;
    /*    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;*/
    height: -webkit-fill-available;
    border: 1px solid #ccc;
}

.chats {
/*    padding: 30px 0px 0 0px;*/
}


.chat-messages {
    max-height: 500px;
    overflow-y: auto;
    padding-top: 10px;
    scroll-behavior: smooth
}

.msg-bottom {
    border-top: 1px solid #ccc;
    position: relative;
    height: 11%;
    background-color: rgb(239 239 239);
    height: 60px;
    padding: 10px;
}

.input-group {
    float: right;
    outline: none !important;
    border-radius: 20px;
    width: 100% !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .input-group > .form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        margin-bottom: 0;
        height: 40px;
/*        font-size: unset;*/
    }

.form-control {
    border: none !important;
    border-radius: 20px !important;
    display: block;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
/*    font-size: 1rem;*/
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-group-text {
    background: transparent !important;
    border: none !important;
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: b;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-weight: bold !important;
    cursor: pointer;
}

input:focus {
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

.send-icon {
    font-weight: bold !important;
}

.received-msg {
    display: inline-block;
    padding: 0 0 0 10px;
    vertical-align: top;
    width: 92%;
}

.received-msg-inbox {
    width: 80%;
}

    .received-msg-inbox p {
        background: #efefef none repeat scroll 0 0;
        border-radius: 10px;
        color: #646464;
        font-size: 14px;
        margin-left: 1rem;
        padding: 1rem;
        width: 100%;
        box-shadow: rgb(0 0 0 / 25%) 0px 5px 5px 2px;
    }

p {
    overflow-wrap: break-word;
}

/* Styling the msg-sent time  */
.time {
    color: #777;
    display: block;
    font-size: 12px;
    margin: 8px 0 0;
}

.outgoing-chats {
    overflow: hidden;
    margin: 10px 20px;
}

.outgoing-msg-inbox p {
    background-color: #383581;
    background-image: linear-gradient(45deg, #73659e 0%, #383581 25%, #383581 70%, #73659e 100%);
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    padding: 5px 10px 5px 12px;
    width: 100%;
    padding: 1rem;
    box-shadow: rgb(0 0 0 / 25%) 0px 2px 5px 2px;
}

.outgoing-msg-inbox {
    float: right;
    width: 80%;
}

@media only screen and (max-device-width: 850px) {
    *,
    .time {
        font-size: 28px;
    }

    img {
        width: 65px;
    }

    .msg-header {
        height: 5%;
    }

    .msg-page {
        max-height: none;
    }

    .received-msg-inbox p {
        font-size: 28px;
    }

    .outgoing-chats-msg p {
        font-size: 28px;
    }
}

@media only screen and (max-device-width: 450px) {
    *,
    .time {
        font-size: 28px;
    }

    .msg-header {
        height: 5%;
    }

    .msg-page {
        max-height: none;
    }

    .received-msg-inbox p {
        font-size: 28px;
    }

    .outgoing-chats-msg p {
        font-size: 28px;
    }
}

.chat-bot-input-container {
    position: relative;
    height: 11%;
    background-color: rgb(239 239 239);
    height: 60px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.chat-bot-input-group {
    outline: none !important;
    border-radius: 20px;
    width: 95% !important;
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    padding: 0px 15px;
}

.chat-bot-input-form-control {
    border: none !important;
    flex: 1 1 auto;
    height: 40px;
    color: black;
}


/*Full Screen Chat Bot*/

.chat-bot-input-container-full-page {
    outline: black;
    border-radius: 20px;
    width: 100%;
    height: 50px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-bot-input-group-full-page {
    outline: none !important;
    border-radius: 20px;
    width: 95% !important;
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    padding: 0px 15px;
}

.chat-bot-input-form-control-full-page {
    border: none !important;
    flex: 1 1 auto;
    height: 40px;
    color: black;
}

.input-group-text-full-page {
    background: transparent !important;
    border: none !important;
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: b;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-weight: bold !important;
    cursor: pointer;
}

.chat-page-full-page {
    /*    height: 500px;*/
    padding: 10px 0px;
}

.chat-inbox-full-page {
    border: 1px solid #ccc;
    overflow: hidden;
    border-radius: 20px;
}

.chat-tile {
    border-radius: 20px;
    border: 1px solid #ccc;
    margin: 10px;
}

.chat-tile-header {
    padding: 5px 10px;
    background: #2F4050;
    color: white;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.chat-tile-body {
    padding: 10px;
}

.input-group-append-full-page {
    display: inline-flex;
}

.custom-picture-upload {
    cursor: pointer;
}

input[type="file"] {
    display: none;
}