html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
#map {
    height: 100%;
}
.percentageTextBox {
    background: transparent;
    position: absolute;
    font-weight: normal;
    color: #cccccc;
    z-index:1;
}
.percentageOver {
    color: orangered;
}
/** details control **/
.csi-ctrl {
    background:green;
    opacity: 0.4;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin: 5px 0 0 10px;
    /*width: 100px;*/
    width: auto;
    /*min-width: 0px;*/
    /*max-width: 100px;*/
    height: auto;
    min-height: 0;
    cursor: pointer;
}
.csi-ctrl hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
.csi-ctrl:hover {
    opacity: 1;
}
.csi-ctrl > div {
    padding: 4px;
    width: 100%;
    white-space: normal;
    background: #ffffff;
    color: #000;
    font-size: 14px;
    opacity: 1.0 !important;
    border: 2px solid orange;
}
/** search control **/
.search-ctrl {
    padding-top: 10px;
    padding-left: 50%;
    /*display: inline-block;*/
    /*margin-left: 50%; !* From parent width *!*/
    /*transform: translateX(-50%); !* use self width which can be unknown *!*/
    /*-ms-transform: translateX(-50%);*/
    /*width: 300px;*/
    margin: 0 auto;
    /*margin: 10px 0 0 10px;*/
    /*left: 300%;*/
    position: relative;
}
.search-ctrl > div {
    border-radius: 6px;
    background:#ffffff;
    color: orange;
}
.search-ctrl input {
    border-radius: 4px;
    border-width: 1px;
    background:#ffffff;
    color: #000000;
    width: 300px;
    padding: 10px;
}

