﻿/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on October 5, 2021 */

@import url('global.css');
@font-face {
    font-family: 'montserrat';
    src: url('../Fonts/montserrat-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('../Fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('../Fonts/montserrat-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('../Fonts/montserrat-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('../Fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('../Fonts/montserrat-extrabold-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}


/*Reset*/
*, *::before, *::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


:root {
    --background-colour: white;
    --primary-colour: #040489;
    --active-colour: #020258;
    --hover-colour: #2828F9;
    --shadow: rgba(4, 4, 137, 0.1) 0px 5px 20px;
    --primary-font-family: "montserrat", sans-serif;
}





body {
    font-family: var(--primary-font-family);
    font-size: 16px;
    font-weight: 400;
    color: #212529;
    background: #fafafa;
    padding: 0px;
    margin: 0px;
    left: 5px;
}

p {
    font-family: inherit;
    font-size: inherit;
    font-weight: 300;
    line-height: 1.7em;
}


/* ---------------------------------------------------
    TOP NAVBAR STYLE
----------------------------------------------------- */

header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: white;
}

#top-navbar .navbar {
    padding: 0 !important; /*overrides bootstrap padding on the navbar*/
    background-color: white;
    border: none;
    border-radius: 0;
    /*margin-bottom: 40px;*/
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#top-navbar .container-fluid {
    width: 100%;
    padding: 0 20px 0 0;
    margin-right: auto;
    margin-left: auto;
    background-color: white;
}

#top-navbar .navbar-brand {
    background-color: var(--primary-colour);
    padding: 10px 20px;
    width: 250px;
    margin: 0;
}

.logo {
    height: 45px;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #E4E3E8;
    margin: 40px 0;
}

.menu-button {
    outline: none !important;
    border: none;
    background: none;
    padding: 0;
    padding-left: 20px;
    cursor: pointer;
}

/* ---------------------------------------------------
    Icons
----------------------------------------------------- */

.icon,
.sidebar-icon {
    width: 25px;
    Height: 25px;
    stroke: #ffff;
    margin-right: 5px;
}

.menu-icon {
    width: 50px;
    Height: 50px;
    stroke: var(--primary-colour);
    stroke-width: 6;
    margin-right: 5px;
}

    .menu-icon:hover {
        width: 50px;
        Height: 50px;
        stroke: var(--hover-colour);
        stroke-width: 6;
        margin-right: 5px;
        transition: ease-in-out 0.3s;
    }


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

/* Works on Chrome, Edge, and Safari */
.scroll-bar::-webkit-scrollbar {
    width: 12px; /* width of the entire scrollbar */
}

.scroll-bar::-webkit-scrollbar-track {
    background: var(--primary-colour); /* color of the tracking area */
}

.scroll-bar::-webkit-scrollbar-thumb {
    background-color: white; /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid var(--primary-colour);
    /* creates padding around scroll thumb */
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 65px; /* Top position is height ot the Header*/
    left: 0;
    height: 100%;
    z-index: 999;
    background: var(--primary-colour);
    color: #fff;
    transition: ease-in-out 0.5s;
}

    #sidebar.active {
        margin-left: -250px;
    }

    #sidebar .nav-heading {
        padding-left: 15px;
        padding-top: 15px;
    }


    #sidebar ul.components {
        /* padding: 20px 0;*/
        border-bottom: 1px solid #47748b;
        overflow-y: scroll;
        height: calc(100vh - 140px);
    }

    #sidebar ul p {
        color: #fff;
        padding: 10px;
    }

    #sidebar ul li a {
        padding: 12px 15px;
        font-size: 0.88em;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        color: #fff;
    }

        #sidebar ul li a:hover {
            color: #fff;
            background: var(--hover-colour);
            font-weight: 600;
        }

    #sidebar ul li.active > a,
    a[aria-expanded="true"] {
        color: #fff;
        background: #040489;
        font-weight: 700;
    }

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 55px !important;
    background: #020258
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    queryFilter color: #fff !important;
}



/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    min-height: calc(100vh - 65px);
    transition: all 0.3s;
    position: absolute;
    top: 65px; /* Top position is height ot the Header*/
    right: 0;
    transition: ease-in-out 0.5s;
}

    #content.active {
        width: 100%;
    }


/* ---------------------------------------------------
    FILTER SECTION
----------------------------------------------------- */

#filter {
    padding: 10px 20px;
    box-shadow: var(--shadow);
    /*position:fixed;
     top: 75px;*/ /* Top position is height ot the Header*/
    width: calc(100% - 250px);
    width: 100%;
    z-index: 99;
    background-color: white;
    transition: ease-in-out 0.5s;
}

    #filter .filter-container {
        margin-top: 10px;
    }

    #filter .filter-label {
        font-weight: 500;
    }


    /* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
    @media (max-width: 768px) {
        
        #sidebar {
        margin-left: -250px;
        }

        #sidebar.active {
            margin-left: 0;
        }

        #content, #filter {
            width: 100%;
        }

        #content.active, #filter.active {
            width: calc(100% - 250px);
        }

        #sidebarCollapse span {
            display: none;
        }

        #main .gauge-flexbox-container {
            flex-wrap: wrap;
        }

        #main .gauge-flexbox-content {
            width: 50%;
        }

    }



/* ---------------------------------------------------
    MAIN CONTENT
----------------------------------------------------- */
#main {
    padding-top: 10px
}

#main .row {
    margin: 10px 0;
}

    #main .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 10px;
    top: 0px;
    left: 0px;
}

    #main .gauge-flexbox-container {
        display: flex;
        justify-content: center;
        flex-wrap:wrap;
        width:100%;
    }

    #main .gauge-flexbox-content {
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 10px;
        flex: 1 1 250px;
    }


#main .card {
    background-color: white;
    padding: 10px;
    box-shadow: var(--shadow);
    border: none !important;
    border-radius: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#main .card-b {
    background-color: white;
    padding: 10px;
    box-shadow: var(--shadow);
    border: none !important;
    border-radius: 5px;
    margin-bottom: 10px;
    height: auto;
}

#main .text-container {
        flex: 1;
        margin-bottom:10px;
    }

    #main .visual {
        flex: 1;
        min-width: 100px;
    }


#main h1 {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.3em;
    margin: 0;
}

    #main h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.5em;
        margin: 0;
        padding: 0;
        color: var(--primary-colour);
    }

#main p {
    font-size: 0.88em;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0;
}

#main .form-label {
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1em;
    margin-top: 1em;
    margin-bottom: 0.7em;
    display: inline-block;
    color: #212529;
}

#main .form-control {
    border-width: 2px;
    font-weight: 500;
}

.button, .rbButton, .button:hover {
    color: white !important;
    display: inline-block !important;
    font-weight: 500 !important;
    text-align: center !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
    user-select: none !important;
    border: none !important;
    padding: 0.4rem 1.5rem !important;
    font-family: var(--primary-font-family) !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border-radius: 50rem !important;
    margin-right: 10px !important;
}

    .button:focus, .rbButton:focus {
        outline: none !important;
    }

.button, .rbButton {
    background-color: var(--primary-colour) !important;
}


    .button:hover, .rbButton:hover {
        background-color: var(--hover-colour) !important;
        transition: ease-in-out 0.3s;
    }





/* ---------------------------------------------------
   Map Overview Page
----------------------------------------------------- */
#map-summary h2 {
    font-size: 1.5em;
    line-height: 1em;
}

    #map-summary h1 {
        font-size: 0.9em;
    }

    #map-summary p {
        font-size: 0.7em;
    }

meter {
    width: 100%;
    height: 17px;
}

.meter-top-row::-webkit-meter-optimum-value {
    background: blue; /* Green */
}

.meter-top-row::-webkit-meter-suboptimum-value {
    background: blue; /* Green */
}


.meter-top-row::-webkit-meter-even-less-good-value {
    background: blue; /* Green */
}



.meter-bottom-row::-webkit-meter-optimum-value {
    background: cyan; /* Green */
}

.meter-bottom-row::-webkit-meter-suboptimum-value {
    background: cyan; /* Green */
}


.meter-bottom-row::-webkit-meter-even-less-good-value {
    background: cyan; /* Green */
}

.card-header {
    padding: 0 0;
    margin-bottom: 0;
    background-color: white !important;
    border-bottom: 0;
}


/* ---------------------------------------------------
    Floor Plan Page
----------------------------------------------------- */
.floor-plan-filter-container {
    overflow-y: scroll;
    background: white;
    height: 700px;
    line-height: 1.2;
    padding-right: 10px;
}

.form-space {
    margin-bottom: 10px;
}


/* ---------------------------------------------------
   Contact Page
----------------------------------------------------- */
.RadMap_Bootstrap.k-tooltip {
    width: auto !important;
    height: auto !important;
}

.contact-address {
    margin: 10px 0 !important;
}

.contact-number-type {
    font-weight: 700;
}

.content-container-description {
    margin-bottom: 10px;
}


/* ---------------------------------------------------
    Login Screen
----------------------------------------------------- */
.parent {
    display: grid;
    grid-template-columns: minmax(800px, 25%) 1fr;
    height: 100vh
}

.login-container {
    background: white;
    display: grid;
    place-items: center;
}

.login-section {
    margin-top: 20px;
}

    .login-section h3 {
        margin-top: 60px;
        margin-bottom: 20px;
        color: var(--primary-colour);
        font-weight: 600;
        font-family: var(--primary-font-family);
    }

    .login-section .form-group {
        margin-bottom: 20px;
    }

        .login-into-text p,
        .login-section .form-group label {
            font-size: 1.3em;
            font-family: var(--primary-font-family);
        }


        .login-section .form-group label {
            font-weight: 600;
            margin-bottom: 10px;
        }



.login-into-text {
    max-width: 500px;
    margin: 20px 0;
    font-family: var(--primary-font-family);
}


.login-bg-image {
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../Images/pexels-fauxels-3183197a.jpg');
}


/* ---------------------------------------------------
    Table Styling
----------------------------------------------------- */

.rgHeader {
    background: var(--primary-colour) !important;
    border-color: #beccde !important;
}

    .rgHeader a {
        color: #ffffff !important;
        font-weight: 600 !important;
    }

.rgAltRow {
    background: #EDF2F7 !important;
}

    .rgAltRow > td, .rgRow > td {
        border-color: #beccde !important;
    }


.rgHoveredRow > td {
    background: #D3E3F7 !important;
}

.rgSelectedRow > td {
    color: #333 !important;
    background: #a9b6c6 !important;
}














/* --------------------------------------------------------------------------*/






/* This wrapper denotes the grid column width of the left nav menu and the right container*/
/*.wrapper {
    display: grid;
    grid-template-columns: minmax(250px, 12%) 1fr;
    height: 100vh;
}*/

.nav-container {
}

/* Denotes the grid row height of the right container contents*/
.main-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    /*height: 100vh;*/
}

/*
#header {
    width: 100%;
    background-color: white;
    border-bottom: 2px solid #E4E3E8;
    z-index: 100;
}*/

#page-title {
    color: var(--primary-colour);
    font-weight: 700;
    padding-left: 20px;
    line-height: 60px;
    margin: 0;
    font-size: 20px;
}






.chart-container{
    height:300px;
    background-color: moccasin;
}




/*.parent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}*/

.chart-box {
    box-shadow: rgba(4, 4, 137, 0.1) 0px 8px 24px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 600px; /*  Stretching: */
    margin: 20px;
}










#content-container {
    /* padding-left: 250px;*/
}







.sign-out {
    color: var(--primary-colour);
    font-weight: 700;
    line-height: 60px;
    text-decoration: none;
    /*position: absolute;
    right: 20px;
    top: 0;*/
}


#side-nav {
    background-color: var(--primary-colour);
   /* position: absolute;
    left: 0;*/
    height: 100%;
}


/*.button {
    background-color: var(--primary-colour);
}

.button:hover {
    background-color: var(--active-colour);
}

.button, .button:hover {
    color: white;
    font-weight: 600;
    font-size: inherit;
    text-decoration: none;
    padding: 0.5em 1.2em;
    border-radius: 50em;
    cursor: pointer;
}*/

















.footer-cont {
    margin: 130px;
}
.footer {
    margin: 0;
    padding-left: 130px;
    padding-top: 30px;
    /*text-align: center;*/
    background: #f0f2f3;
}




.contentSingleCenter table {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.style1
        {
            display: inline-table;
           

        }



td.myFilter
{
    width:105px;
    height:43px;
    background-image: url('/images/button.png');
    background-repeat:no-repeat;
    text-align:center;
    
}

#dividgoeshere {
position: fixed;
top: 500px;
left: 50px;
width: 200px;
color: red;

}
#banner { 
background-image: url(http://example.typepad.com/folder/banner.jpg); 
height: 100px; 
background-position:0px 0px; 
}

#banner-header a { 
height: 200px; 
}
.menuLHOld {
    position:relative;
    top:63px;
    background-color:#F2F2EA;
}

.menuCol {

    padding-left: 20px;
    float: left;
    background:#F2F2EA;
}
.menuItemTop {
    font-family: 'Lucida Sans Unicode';
    font-size: 14px;
    color: #6c6c6c;
    height: 80px;
    padding: 20px;
    border-top:Solid;
    border-top-width: 50px;
    border-top-color:red;
}
.menuItemInner {
    font-family: 'Lucida Sans Unicode';
    font-size: 14px;
    color: #6c6c6c;
    height: 80px;
    padding: 20px;
    border-bottom:solid 1px #e5e7d3;
}
.menuItemBottom {
    font-family: 'Lucida Sans Unicode';
    font-size: 14px;
    color: #6c6c6c;
    height: 80px;
    padding: 20px;
    border-bottom:solid 1px #e5e7d3;
}
.menuItemSelected {
    color: #6c6c6c;
}
.tblRow {
    height: 50px;
}

.menuItemHover
{
    background:#E15C37;
}

.main_label 
{
     font-family: 'Lucida Sans Unicode', sans-serif;
    font-size: 16px;
       Color: #6c6c6c;
}
.chartLabel
{
    font-family: 'Lucida Sans Unicode', sans-serif;
    font-size: 12px;
    Color: #6c6c6c;
}
.filterLabel 
{
     font-family: 'Lucida Sans Unicode', sans-serif;
     font-size: 12px;
     Color: #E15C37;
}

.lblCenter {
    font-family: 'Lucida Sans Unicode', sans-serif;
    font-size: 12px;
    Color: #000000;
    width:50px;
}

#banner {

 width: 100%;
 
 height: 300px;
 
 Border: #ff0000 solid 1px;

 Background: #ffffff;

 Color:#ff0000;

 Font-size:10px;

 Text-align: right;

 Padding-right: 10px;
}


#right_columnOld {
	background-color: #EFF7E8;
	text-align: justify;
	line-height: 1.5em;
	margin: 0 0 0 15em;
	padding-right:25px;
	padding-left:25px;
	/*padding-top:10px;*/
	padding-bottom:10px;
	border-left: 1px solid #cccccc;
}

#right_column {
	padding: 20px;
    overflow: auto;
    background: #f0f1f2
}

.login input[type="text"] {} /*username*/
.login input[type="password"] {} /*password*/
.login input[type="submit"] {} /*submit button*/




.dropdownContainer {
    background-color: white;
    display: inline-block;
    margin: 10px;
}

.dropdownContainer select, .dropdownContainer input {
    border: none;
    padding: 10px;
    width: 200px;
}

.legend {
    text-align: left;
    height: 133px;
    display: block;
}

.legend ul {
    list-style-type: none;
    line-height: 18px;
    font-size: 12px;
}

.legend ul li {
    height: 18px;
    margin: 1px 0;
    padding: 1px;
}

.legend ul>li>span.key {
    border: 1px solid grey;
    width: 22px;
    height: 10px;
    display: inline-block;
    position: relative;
    top: 1px;
    left: -3px;
}

/*https://www.telerik.com/forums/clear-button-on-radcombobox-input*/
.combo-clear-btn {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    right: 25px;
    top: 8px;
    z-index: 2;
    width: 30px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease 0s,visibility 0s linear .2s;
    font-family: "WebComponentsIcons";
    text-align: center;
}

.combo-clear-btn:before {
    display: block;
    content: "\e11b";
}

.RadComboBox:hover .combo-clear-btn {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: opacity .2s ease 0s,visibility 0s linear 0s;
}


.multipleRowsColumns .rcbItem,
.multipleRowsColumns .rcbHovered {
    float: left;
    margin: 0 1px;
    min-height: 13px;
    overflow: hidden;
    padding: 2px 19px 2px 6px;
    width: 125px;
}
/** Columns */
.rcbHeader ul,
.rcbFooter ul,
.rcbItem ul,
.rcbHovered ul,
.rcbDisabled ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-block;
    list-style-type: none;
}
.rcbTemplate li {
    display: inline-block;
}


.subRoomTypeComboBox.RadComboBoxDropDown .rcbHeader

{
    padding: 5px 27px 4px 7px;
}


.col1,
.col2,
.col3 {
    margin: 0;
    padding: 0 5px 0 0;
    width: 50%;
    line-height: 14px;
    float: left;
}

.hidden {
    display: none !important;
}