/* body {
	font-family: 'Fira Sans', sans-serif;
	font-size: 12px;
	margin: 0px;
} */

html,
body {
    width: 100%;
    /* height: 100%; */
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;

    overflow: hidden;

}
.active-icon{
    color:white;
}

.form-label {
    font-size: 14px;
}

.titleBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6%;
    z-index: 2;
    background-color: #37b1c2;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.layoutcontainer {
    display: flex;
    flex-direction: column;
}


.layoutcontent {
    /* display: flex; */
    flex-direction: row;

    /* flex: 1;
    position: relative; */
}

#app>div.layoutcontent>div.layoutfloating {

    position: absolute;
    padding-top: 10px;
    right: 20px;
    width: 800px;
    z-index: 45;


}

#app>div.layoutcontent>div.layoutfloatingsec {

    position: absolute;
    padding-top: 400px;
    right: 20px;
    width: 800px;
    z-index: 10;


}

.layoutmap {
    display: flex;

    height: 900px;

    /* border: 1px solid red; */
}

.header {
    width: 100%;
    padding: 5px;
    z-index: 2;
    display: flex;
    align-items: center;
    background-color: #37b1c2;
    /* border: 2px solid #d2b656; */
    font-family: arial, sans-serif;
}

.header img {
    max-height: 55px;
    border-radius: 8px;
}

.active {
    background-color: rgba(255, 0, 0, 0.1);
    color: black;
}

.searchBox {
    padding: 3px;
    /* top: 130px; */
    top: 18%;
    position: absolute;
    right: 10px;
    z-index: 2;
    font-size: 12px;
    border-radius: 5px;
    outline: none;
    border: none;
    text-align: center;
    background-color: rgba(255, 255, 255, 1);

    -webkit-box-shadow: 0px 0px 3px rgba(70, 70, 70, 0.35);
    -moz-box-shadow: 0px 0px 3px rgba(70, 70, 70, 0.35);
    box-shadow: 0px 0px 3px rgba(70, 70, 70, 0.35);
}

.searchBoxAddress {
    padding: 3px;
    /* top: 160px; */
    top: 22%;
    position: absolute;
    right: 10px;
    z-index: 2;
    font-size: 12px;
    border-radius: 5px;
    outline: none;
    border: none;
    text-align: center;
    background-color: rgba(255, 255, 255, 1);

    -webkit-box-shadow: 0px 0px 3px rgba(70, 70, 70, 0.35);
    -moz-box-shadow: 0px 0px 3px rgba(70, 70, 70, 0.35);
    box-shadow: 0px 0px 3px rgba(70, 70, 70, 0.35);
}

.vedasLogo {
    position: absolute;
    z-index: 5;
    right: 1%;
    float: right;
    top: 2px;
    /* bottom: 6px; */

}

.sacLogo {
    float: left;
    position: absolute;
    left: 5px;
    z-index: 5;
    top: 2px;
    height: 10px;
}

/* .sidebar{
    position:relative;
    top:0;
    width:380px;
    height:810px;
    
    box-shadow: 1px 1px 2px 2px #9d9a9a;
    box-sizing:border-box;
    padding:20px 10px;
    background:white;
    overflow: auto;
    z-index: 1;
  }
  .sidebar .ftree{
    display:flex;
    margin-bottom:10px;
    font-size:1.2rem;
    text-decoration:none;
    color:black;
    min-height: 400px;
    
    
  }

  .sidebar .closebtn {
    position: absolute;
    top: -16;
    right: 25px;
    font-size: 38px;
    margin-left: 50px;
    cursor: pointer;
} */

.sidebar {
    height: 88%;
    width: 400px;
    position: fixed;
    z-index: 1;
    top: 7%;
    left: 0;
    background-color: white;
    overflow-x: scroll;
    border: 1px solid gray;
}

.sidebar .header {
    display: block;
    height: 6%;
    /* background-color: rgb(99 95 95); */
    background-color: rgb(44 124 161);
    color: white;
}

.sidebar a {
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: -16;
    right: 25px;
    font-size: 38px;
    margin-left: 50px;
    cursor: pointer;
}

.sidebar .header-label {
    position: absolute;
    top: 1%;
    font-size: 21px;
    cursor: pointer;
}

.close-icon {
    position: absolute;
    right: 15px;
    /* right:15px; */
    top: 10px;
    text-decoration: none;
    font-size: 1.4rem;
}

.open-icon {
    position: fixed;
    left: 10px;
    top: 86px;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 5px 5px;
    color: white;
    /* box-shadow:1px 1px 1px 1px #ccc; */
    z-index: 1;
    background-color: #17a2b8;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.open-icon:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;

}

.hide {
    transition: left 0.5s linear;
    left: -450px;
}

.show {
    transition: left 0.5s linear;
    left: 0px;
}

.btn-group-sm>.btn,
.btn-sm {
    padding: 0.20rem 0.4rem;
    font-size: .875rem;
    line-height: 1.2;
    border-radius: 0.2rem;
}

button.lightblue {
    outline: none;
    border: 1px solid #33A9B7;
    background-color: #33A9B7;
    width: 40px;
    height: 40px;
    border-radius: 25px;
}

.toolBtn {
    z-index: 1;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    bottom: 60px;
}

/* .sidebar {
    height: 100%;
    width: 400px;
    position: fixed;
    z-index: 1;
    top: 7%;
    left: 0;
    
    background-color: white;
    overflow-x: scroll;

    border: 1px solid gray;
}
.sidebar .header{
    display: block;
    height: 5%;
    background-color: rgb(99 95 95);
    color: white;
}

.sidebar a {
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: -16;
    right: 25px;
    font-size: 38px;
    margin-left: 50px;
    cursor: pointer;
}

.sidebar .header-label {
    position: absolute;
    top: 0;
    font-size: 21px;
    cursor: pointer;
} */

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #37b1c2;
    color: white;
    padding: 5px 5px;
    border: none;
    position: absolute;
    top: 95px;
    left: 5px;
    /* z-index: 2; */
}

.openbtn:hover {
    background-color: #444;
}

#main {
    transition: margin-left .5s;
    /* padding: 16px; */
}

img {
    vertical-align: middle;
}

#map {
    /* display: flex;
    flex-flow: column;
    position: relative;
    border: none;
   
   overflow: hidden; */
    width: 100%;
}



.select-option {
    background-color: rgba(33, 150, 243, 1);
    border-radius: 5px;
    color: white;
    border: none;
}

/* popup styles */
.ol-popup h1 {
    font-size: 1em;
    background-size: 2em;
    padding-left: 3em;
}

.ol-popup {
    position: absolute;
    background-color: white;
    -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    min-width: 280px;

}

.ol-popup:after,
.ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}

.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: -2px;
    right: 8px;
}

.ol-popup-closer:after {
    /* content: "âœ–"; */
    content: "CLOSE";
}

.ol-scale-line {
    top: 4%;
    right: 10px;
    bottom: auto;
    left: auto;
    opacity: 1.0;
    background-color: rgba(0, 60, 136, 1);
}

.ol-mouse-position {
    top: 7%;
    right: 15px;
    position: absolute;
    text-shadow: 1px 1px 12px black;
    /*color:#003fb5;*/
    color: #0000ff;
    font-weight: bold;
    background-color: rgb(255, 255, 255);
    /* border-radius: 4px; */
    padding: 1px 2px;
    font-size: 12px;
    z-index: 9999;
}

ul.fancytree-container {
    border: 1px solid lightgrey !important;
    /* overflow: scroll; */
    min-height: 0 !important;
}

span.fancytree-title {
    font-family: sans-serif;
    font-size: 11px;
}

.autocomplete-items {
    position: absolute;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 560px;
    overflow: scroll;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    border: 1px solid #0e2292;
    background-color: #e4f7cf;
    border-bottom: 1px solid #0e2292;
    font-size: 12px;
    text-align: left;

}

.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

.autocomplete-active {
    background-color: rgb(62, 182, 233) !important;
    color: #ffffff;
}

.modal-content {
    border-radius: 1.3rem !important;
}

.modal-dialog {
    max-width: 339px;
    margin: 1.75rem auto;
}

.modal-header {
    padding: 10px;
    background-color: #37b1c2;
    color: white;

    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

label {
    padding: 7px !important;
}

/*Measure Distance & Area*/
.tooltip {
    position: relative;
    /* background: rgba(0, 0, 0, 0.5); */
    background: rgba(20, 20, 20, 0.5);
    border-radius: 4px;
    color: white;
    padding: 4px 8px;
    opacity: 1;
    white-space: nowrap;
    font-size: 12px;
    cursor: default;
    user-select: none;
}

.tooltip-measure {
    opacity: 1;
    font-weight: bold;
}

.tooltip-static {
    background-color: #09f3e7;
    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; */
    border-top-color: #47ece4;
}

/* end popup styles */


.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgb(43 169 187 / 28%)  !important;
    border-bottom: 1px solid rgba(43, 168, 187, 0.137) !important ;
}