
@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/poppins/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}


*,
*:after,
*::before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body, form,
.st-container,
.st-pusher,
.st-content, st-content-inner {
    height: 100%;
    top: 0px;
    bottom: 0px;
    font-size: 12px;
    font-family: Poppins, Poppins-Regular, sans-serif;
}

.st-content {
    overflow-y: hidden;
    background: #f3efe0;
}

.st-content,
.st-content-inner {
    position: relative;
    height: 100%;
}

.st-container {
    position: relative;
    overflow: hidden;
}

.st-pusher {
    position: relative;
    left: 0;
    z-index: 99;
    height: 100%;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

    .st-pusher::after {
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        background: rgba(0,0,0,0);
        content: '';
        opacity: 0;
        -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
        transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    }

.st-menu-open .st-pusher::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.st-menu {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    width: 30%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    color: #82B621;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

    .st-menu::after {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.2);
        content: '';
        opacity: 1;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
    }

.st-menu-open .st-menu::after {
    width: 0;
    height: 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

.st-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.st-menu h2 {
    margin: 0;
    padding: 1em;
    color: rgba(0,0,0,0.4);
    text-shadow: 0 0 1px rgba(0,0,0,0.1);
    font-weight: 300;
    font-size: 2em;
}

.st-menu ul li a {
    display: block;
    padding: 1em 1em 1em 1.2em;
    outline: none;
    box-shadow: inset 0 -1px rgba(0,0,0,0.2);
    color: #f3efe0;
    text-transform: uppercase;
    text-shadow: 0 0 1px rgba(255,255,255,0.1);
    letter-spacing: 1px;
    font-weight: 400;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
}

.st-menu ul li:first-child a {
    box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.st-menu ul li a:hover {
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 -1px rgba(0,0,0,0);
    color: #fff;
}

/* Effect 1: Slide in on top */
.st-effect-1.st-menu {
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.st-effect-1.st-menu-open .st-effect-1.st-menu {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.st-effect-1.st-menu::after {
    display: none;
}

/* Effect 3: Push*/
.st-effect-3.st-menu-open .st-pusher {
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
}

.st-effect-3.st-menu {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.st-effect-3.st-menu-open .st-effect-3.st-menu {
    visibility: visible;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.st-effect-3.st-menu::after {
    display: none;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
    padding-left: 30%;
}

/* others */
.icon-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    border: 0;
    background: transparent;
}

.button {
    width: 40px;
    height: 40px;
    background-color: crimson;
    border: none;
    color: white;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 10px;
    margin: 2px 2px;
}

.button5 {
    border-radius: 50%;
}

.defBtn {
    font-size: 12px;
    width: 100%;
}

#txtSearch[type=text] {
    width: 38px;
    height: 38px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 20px;
    font-size: 12px;
    background-color: white;
    padding: 10px 10px 10px 25px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    position: absolute;
    top: 50px;
    left: 5px;
    background-image: url('../img/searchIcon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
}

#txtSearch:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.pad1 {
    padding: 2px;
}

.pad2 {
    padding: 2px;
    margin-top: 5px;
}

.padTop10 {
    padding-top: 10px;
}


.textInline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family:Poppins;
}

.tooltip {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    color: white;
    padding: 4px 8px;
    opacity: 0.7;
    white-space: nowrap;
}

.tooltip-measure {
    opacity: 1;
    font-weight: bold;
}

.tooltip-static {
    background-color: #ffcc33;
    color: black;
    border: 1px solid white;
}

    .tooltip-measure:before,
    .tooltip-static:before {
        border-top: 6px solid rgba(0, 0, 0, 0.5);
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        content: "";
        position: absolute;
        bottom: -6px;
        margin-left: -7px;
        left: 50%;
    }

    .tooltip-static:before {
        border-top-color: #ffcc33;
    }

/* Ajax */
.AjaxModal {
    position: fixed;
    top: 100%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    z-index: 2;
    height: 100px;
    width: 100%;
    background-color: transparent;
    filter: alpha(opacity=90);
    opacity: 1;
    -moz-opacity: 1;
}

.AjaxCenter {
    z-index: 3;
    padding: 0px;
    height: 100px;
    width: 100%;
    background-color: transparent;
    filter: alpha(opacity=100);
    text-align: center;
    opacity: 0.9;
}


#error-msg {
    color: red;
}

#valid-msg {
    color: #00C900;
}

input.error {
    border: 1px solid #FF7C7C;
}

.hide {
    display: none;
}

.show {
    display: block;
}


/* multiTab */

.tab__header {
    display: block;
    clear: both;
}

    .tab__header > div {
        display: inline-block;
        vertical-align: top;
        float: left;
        padding: 10px;
        background: white;
        color: rgba(0, 0, 0, 0.75);
        border: none;
    }

        .tab__header > div.tab__header--active {
            background: white;
            border-bottom: 1px solid green;
        }

.tab__content {
    display: block;
    background: white;
    color: crimson;
    width: 100%;
    height: inherit;
    overflow: hidden;
    padding: 0 0 20px 0;
}

    .tab__content.p {
        color: crimson;
    }

    .tab__content > div {
        display: inline-block;
        vertical-align: top;
        float: left;
        display: none;
        width: 100%;
    }

        .tab__content > div.tab__content--active {
            display: block;
        }

.tab__header > div.tab__header--active {
    display: block;
    color: green;
}


/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid maroon;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

.chart-container {
    position: relative;
    margin: auto;
    height: 100%;
    width: 100%;
}

.aref {
    color: Highlight;
}

.textDef {
    font-size: 12px;
    color: black;
}

.list-group-item:hover {
    background-color: lightsalmon;
}

.list-group-item-success:hover {
    background-color: lightcyan !important;
    color:black !important;
}
.list-group-item-success {
    background-color :white !important;
}

.MaskActive {
    background-color: green !important;
    color: white !important;    
}

.active {
    background-color: red !important;
}

.spImage {    
    cursor: pointer;
    font-size:12px;
    padding-top:5px; padding-bottom:5px;
    margin-top:5px;
}
    .spActive {
        color:green;
        background-color: white;
    }


    .res{
        color:black;
    }

.mousePos {
    position: fixed;
    bottom: 60px;
    left: -20px;
    z-index: 20;
    width: 200px;
    color: white;
    font-size: small;
    text-shadow: 0 0 3px gray, 0 0 5px gray;
}

.btnActive {
    border-color: #268BD2;
    color: #268BD2;
    background-color: aliceblue !important;
    border-radius: 20px;
}
.btnInActive {
    border-color: grey;
    color: grey;
    background-color: white;
    border-radius: 20px;
}




.tree {
    min-height: 20px;
    padding: 0px;
    margin-bottom: 20px;
    background-color: #fbfbfb;
    border: 0px none #999;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
}

    .tree li {
        list-style-type: none;
        margin: 0;
        padding: 10px 5px 0 5px;
        position: relative
    }

        .tree li::before, .tree li::after {
            content: '';
            left: -20px;
            position: absolute;
            right: auto
        }

        .tree li::before {
            border-left: 1px solid #999;
            bottom: 50px;
            height: 100%;
            top: 0;
            width: 1px
        }

        .tree li::after {
            border-top: 1px solid #999;
            height: 20px;
            top: 25px;
            width: 25px
        }

        .tree li span {
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            border: 1px solid #999;
            border-radius: 5px;
            display: inline-block;
            padding: 3px 8px;
            text-decoration: none
        }

        .tree li.parent_li > span {
            cursor: pointer
        }

    .tree > ul > li::before, .tree > ul > li::after {
        border: 0
    }

    .tree li:last-child::before {
        height: 30px
    }

  
    .pld{
        padding-left:30px !important;
    }
    .pldTextSel{
        color:white;
        background-color:darkblue;
        
    }

.unclickable {
    pointer-events: none;
}



#txtSearch2[type=text] {
    width: 38px;
    height: 38px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 20px;
    font-size: 12px;
    background-color: white;
    padding: 10px 10px 10px 25px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    position: absolute;
    top: 250px;
    left: 5px;
    background-image: url('../img/searchIcon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
}

#txtSearch2:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}






.menu-item,
.menu-open-button {
    background: #007FFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 0px;
    position: absolute;
    top: 0px;
    right: 225px;
    color: #FFFFFF;
    text-align: center;
    line-height: 37px;    
}

.menu-open {
    display: none;
}

.menu {
    margin: auto;
    position: absolute;
    top: 7px;
    right: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 12px;
}


.menu-item {
    transition: all 0.1s ease 0s;
    width: 39px;
    height: 39px;
    font-size:12px;
} 

.menu-item:hover {
    background: #EEEEEE;
    color: #3290B1;
}

.menu-item:nth-child(3) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item:nth-child(4) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item:nth-child(5) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item:nth-child(6) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item:nth-child(7) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item:nth-child(8) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item:nth-child(9) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-open-button {
    z-index: 2;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    cursor: pointer;
}

/*    .menu-open-button:hover {
        -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
        transform: scale(1, 1) translate3d(0, 0, 0);
    }

.menu-open:checked + .menu-open-button {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
}
*/
.menu-open:checked ~ .menu-item {
    -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
    transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
}

    .menu-open:checked ~ .menu-item:nth-child(3) {
        transition-duration: 180ms;
        -webkit-transition-duration: 180ms;
        -webkit-transform: translate3d(0px, 60px, 0);
        transform: translate3d(0px, 60px, 0);
    }

    .menu-open:checked ~ .menu-item:nth-child(4) {
        transition-duration: 280ms;
        -webkit-transition-duration: 280ms;

        -webkit-transform: translate3d(45px, 55px, 0);
        transform: translate3d(45px, 55px, 0);
    }

    .menu-open:checked ~ .menu-item:nth-child(5) {
        transition-duration: 380ms;
        -webkit-transition-duration: 380ms;
        -webkit-transform: translate3d(45px, 55px, 0);
        transform: translate3d(90px, 50px, 0);
    }

    .menu-open:checked ~ .menu-item:nth-child(6) {
        transition-duration: 480ms;
        -webkit-transition-duration: 480ms;
        -webkit-transform: translate3d(-45px, 55px, 0);
        transform: translate3d(-45px, 55px, 0);
    }

    .menu-open:checked ~ .menu-item:nth-child(7) {
        transition-duration: 580ms;
        -webkit-transition-duration: 580ms;
        -webkit-transform: translate3d(-90px, 50px, 0);
        transform: translate3d(-90px, 50px, 0);
    }

    .menu-open:checked ~ .menu-item:nth-child(8) {
        transition-duration: 680ms;
        -webkit-transition-duration: 680ms;
        -webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
        transform: translate3d(-91.03006px, -52.33095px, 0);
    }

    .menu-open:focus ~ .menu-item:nth-child(9) {
        transition-duration: 780ms;
        -webkit-transition-duration: 780ms;
        -webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
        transform: translate3d(-0.25084px, -104.9997px, 0);
    }

.wa {
    background-color: #ffcc33;
}

    .wa:hover {
        color: #ffcc33;
        text-shadow: none;
    }

.nsw {
    background-color: skyblue;
}

    .nsw:hover {
        color: skyblue;
        text-shadow: none;
    }

.vic {
    background-color: navy;
}

    .vic:hover {
        color: navy;
        text-shadow: none;
    }

.sa {
    background-color: red;
}

    .sa:hover {
        color: red;
        text-shadow: none;
    }

.qld {
    background-color: maroon;
}

    .qld:hover {
        color: maroon;
        text-shadow: none;
    }


.disable-div {
    pointer-events: none;
    opacity: 0.5;
}

.disable-div1 {
    pointer-events: none;
}

.disable-div7 {
    pointer-events: none;
    opacity: 0.7;
}

.disable-div2 {
    pointer-events: none;
    opacity: 0.2;
}


.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .slider:hover {
        opacity: 1;
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #04AA6D;
        cursor: pointer;
    }

    .slider::-moz-range-thumb {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #04AA6D;
        cursor: pointer;
    }