
#leftpanel {
    width: auto;
    height: calc(100% - 80px);
    display: flex;
}


#panel{
    width: 340px;
    height: 100%;
    background-color: white;
    overflow-y: auto;
}

#mapoptions{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.mapoptions-title {
    width: 90%;
    height: 68px;
    min-height: 68px;
    margin-top: 8px;
    text-align: left;
}

.mapoptions-title p:first-child {
    font-size: 23px;
    font-weight: 600;
}

#mapsettings{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    padding-bottom: 15px;
    box-shadow: rgba(174, 174, 174, 0.587) 0px 0px 2px 1px;
    border-radius: 5px;
}

#mapsettings label {
    margin-right: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #4caf50;
  border-radius: 999px;
  transition: background-color 0.25s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  left: 3px;
  top: 2px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.25s;
}

input:checked + .slider {
  background-color: #f35454;
}

input:checked + .slider::before {
  transform: translateX(34px);
}

#mapsettings hr{
    width: 88%;
    height: 1px;
    background-color: rgba(168, 168, 168, 0.447);
    margin: 0px;
    border: none;
}

.mapsettings-options{
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mapsettings-options p{
    font-size: 16px;
    margin-left: 20px;
    font-weight: 500;
    color: rgb(49, 49, 49);
}

.mapsettings-options select {
    width: 140px;
    height: 30px;
    margin-right: 20px;
    border-radius: 3px;
    text-align: center;
}

.mapsettings-options input {
    width: 140px;
    margin-right: 45px;
}

.resetcustom {
    width: 25px;
    height: 25px;
    position: absolute;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    right: 14px;
}

.resetcustom img{
    width: 20px;
    height: 20px;
}

.filterbars {
    width: 90%;
    min-height: 55px;
    height: 55px;
    background-color: #5c7951;
    margin-top: 5px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    transition: height ease 0.6s;
}

.filterbars-toggle{
    width: 80px;
    height: 100%;
    max-height: 55px;
    background-color: #76946a;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.filterbars-toggle img{
    width: 24px;
    height: 24px;
    filter: drop-shadow(rgba(0, 0, 0, 0.369) 0px 0px 2px);
}

.filterbars-select{
    height: 100%;
    max-height: 55px;
    background-color: var(--colonial);
    flex: 1;
    display: flex;
    justify-content: left;
    align-items: center;
    cursor: pointer;
}

.filterbars-select p{
    margin-left: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: rgb(236, 236, 236);
    font-size: 20px;
}

#filterbar-container{
    width: 100%;
    height: 440px;
    min-height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 30px;
}

.iconpanel{
    width: 100%;
    height: calc(310px - 65px);
    background-color: rgb(240, 240, 240);
    display: flex;
    justify-items: left;
    align-content: start;
    flex-wrap: wrap;
    overflow-y: scroll;
    padding-bottom: 10px;
}

.icon-poi {
    width: 42px;
    height: 42px;
    background-color: rgb(245, 245, 245);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.197) 0px 0px 0px 1px;
    transition: filter ease-in-out 0.2s;
    margin-left: 5px;
    margin-top: 5px;
}

.icon-poi:hover {
    filter: brightness(0.9);
}

.icon-poi img{
    width: 82%;
    height: 82%;
}

.icon-structures {
    width: 42px;
    height: 42px;
    background-color: rgb(245, 245, 245);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.197) 0px 0px 0px 1px;
    transition: filter ease-in-out 0.2s;
    margin-left: 5px;
    margin-top: 5px;
}

.icon-structures:hover {
    filter: brightness(0.9);
}

.icon-structures img{
    width: 82%;
    height: 82%;
}

.icon-resources {
    width: 42px;
    height: 42px;
    background-color: rgb(245, 245, 245);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.197) 0px 0px 0px 1px;
    transition: filter ease-in-out 0.2s;
    margin-left: 5px;
    margin-top: 5px;
}

.icon-resources:hover {
    filter: brightness(0.9);
}

.icon-resources img{
    width: 82%;
    height: 82%;
}

#poitoggle{
    height: 310px;
}

#groupspanel{
    width: 100%;
    height: 100%;
    display: none;
}

#toolspanel {
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: none;
    justify-content: left;
    align-items: center;
    flex-direction: column;
}

#weboptions{
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 60px;
    height: 100%;
    background-color: rgb(241, 241, 241);
    display: flex;
}



#searchfeature{
    width: 100%;
    min-height: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color ease 0.4s;
}

#searchfeature:hover{
    background-color: rgb(220, 220, 220);
}

#searchfeature img{
    width: 28px;
    height: 28px;
}

#accountlogin{
    width: 100%;
    min-height: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color ease 0.4s;
}

#accountlogin:hover{
    background-color: rgb(220, 220, 220);
}

#accountlogin img{
    width: 32px;
    height: 32px;
}

#donatebutton{
    width: 100%;
    min-height: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color ease 0.4s;
}

#donatebutton:hover{
    background-color: rgb(220, 220, 220);
}

#donatebutton img{
    width: 28px;
    height: 28px;
    filter: drop-shadow(rgba(0, 0, 0, 0.525) 0px 0px 1px);
}

#settingsbutton{
    width: 100%;
    min-height: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color ease 0.4s;
}

#settingsbutton:hover{
    background-color: rgb(220, 220, 220);
}

#settingsbutton img{
    width: 28px;
    height: 28px;
}

#notepad{
    width: 100%;
    min-height: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color ease 0.4s;
}

#notepad:hover{
    background-color: rgb(220, 220, 220);
}

#notepad img{
    width: 28px;
    height: 28px;
}

#modelviewer{
    width: 100%;
    min-height: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color ease 0.4s;
}

#modelviewer:hover{
    background-color: rgb(220, 220, 220);
}

#modelviewer img{
    width: 28px;
    height: 28px;
}

.weboptions-div {
    position: relative;
}

.menutooltip {
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    
    background: #323232;
    color: white;
    height: 30px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

.weboptions-div:hover .menutooltip {
    opacity: 1;
}

#statspanel{
    background-color: white;
    display: none;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

#hourlychart{
    width: 90%;
    height: 150px;
    padding-top: 8px;
    padding-bottom: 50px;
    background-color: rgb(245, 245, 245);
    box-shadow: rgba(0, 0, 0, 0.158) 0px 0px 2px 1px;
    margin-top: 14px;
}

#statspanel-title{
    width: 100%;
    height: 60px;
    display: flex;
    background-color: #5c7951;
    justify-content: center;
    align-items: center;
}

#statspanel-title p{
    font-size: 28px;
    color: rgb(235, 235, 235);
    font-weight: 500;
    margin-bottom: 3px;
}

#hourlychart p{
    font-size: 20px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

#statboxes{
    width: 100%;
    height: 400px;
    background-color: rgba(225, 225, 225, 0);
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
}

.statbox{
    width: 90%;
    height: auto;
    min-height: 65px;
    border-radius: 0px;
    overflow: hidden;
    margin-top: 18px;
    border-radius: 3px;
}

.statbox-title{
    width: 100%;
    height: 35px;
    background-color: rgb(120 146 110);
    display: flex;
    justify-content: left;
    align-items: center;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 15px;
    text-shadow: black 0px 0px 1px;
}

.statbox-title p{
    margin-left: 10px;
}

.statbox-value{
    width: 100%;
    height: 45px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    background-color: rgb(244, 244, 244);
    box-shadow: rgba(0, 0, 0, 0.056) inset 0px 0px 2px 1px;
}

.statspanel-title {
    width: 90%;
    height: 50px;
    margin-top: 8px;
    text-align: left;
}

.statspanel-title p:first-child {
    font-size: 23px;
    font-weight: 600;
}

#arrowfooter{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding-bottom: 20px;
    position: absolute;
    bottom: 0px;
}

#arrowfooter img{
    width: 15px;
    height: 15px;
    margin-top: 4px;
    margin-left: 5px;
    cursor: pointer;
}

#warnumber{
    font-size: 24px;
}

#searchpanel{
    width: 100%;
    height: 100%;
    min-height: 800px;
    background-color: rgb(255, 255, 255);
    display: none;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
}

.searchpanel-title {
    width: 90%;
    height: 68px;
    min-height: 68px;
    text-align: left;
    margin-top: 10px;
}

.searchpanel-title p:first-child {
    font-size: 23px;
    font-weight: 600;
}

#searchsection{
    width: 90%;
    height: 85%;
    box-shadow: rgba(0, 0, 0, 0.276) 0px 0px 0px 1px;
    border-radius: 3px;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: column;
}

#search {
    width: 90%;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    margin-top: 20px;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.318) 0px 0px 1px 1px;
    overflow: hidden;
    background-color: rgb(248, 248, 248);
}

#search input{
    height: 90%;
    flex: 1;
    border: none;
    font-size: 15px;
    background-color: transparent;
}

#search input:focus {
    border: none;
    outline: none;
}

#search img{
    width: 20px;
    height: 20px;
}

#search-img{
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#search-results{
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    position: relative;
}

#searchhr {
    width: 100%;
    height: 1px;
    margin-top: 20px;
    background-color: rgb(214, 214, 214);
    border: none;
    margin-bottom: 0px;
}

.location{
    width: 100%;
    height: 55px;
    min-height: 55px;
    padding-bottom: 2px;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    cursor: pointer;
}

.location:hover{
    background-color: rgb(242, 242, 242);
}

.location-icon{
    width: 40px;
    height: 40px;
    margin-left: 15px;
}

.location p{
    width: auto;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 8px;
    font-size: 16px;
}

.location hr{
    width: 90%;
    margin-top: 0px;
    margin-bottom: 0px;
    border: none;
    height: 1px;
    background-color: rgba(128, 128, 128, 0.459);
}

.locationchevron {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 20px;
}

#search-empty {
    position: absolute;
    top: 40px;
    font-size: 16px;
    color: rgb(99, 99, 99);
}

.toolspanel-title {
    width: 90%;
    height: 55px;
    min-height: 55px;
    margin-top: 8px;
    text-align: left;
}

.toolspanel-title p:first-child {
    font-size: 20px;
    font-weight: 600;
}

#freetools{
    width: 90%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    box-shadow: rgba(126, 126, 126, 0.315) 0px 0px 0px 1px;
    border-radius: 5px;
    overflow: hidden;
}

#freetools-title{
    width: 100%;
    height: 40px;
    background-color: #677f5e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#freetools-title img{
    width: 18px;
    margin-right: 10px;
    filter: drop-shadow(rgba(0, 0, 0, 0.486) 0px 0px 1px);
}

#freetools-title p{
    font-size: 14px;
    width: 150px;
    color: #f3f3f3;
    margin-bottom: 1px;
    margin-left: 10px;
    font-weight: 600;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.557);
}

#freetools-select{
    width: 100%;
    flex: 1;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
}

.tool{
    width: 100%;
    height: 45px;
    background-color: rgb(245 245 245);
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
    box-shadow: rgba(174, 174, 174, 0.34) 0px 0px 0px 1px;
    transition: filter ease 0.1s;
    cursor: pointer;
}

.tool:hover{
    filter: brightness(0.95);
}

.tool-free-img{
    width: 20px;
    margin-left: 10px;
}

.tool p{
    margin-left: 20px;
    font-size: 14px;
    margin-bottom: 1px;
    font-weight: 400;
    color: rgb(39, 39, 39);
}

.tool-arrow{
    width: 25px;
    position: absolute;
    right: 0px;
}




#toolspanel hr{
    width: 90%;
    height: 1px;
    border: none;
    background-color: rgba(48, 46, 46, 0.187);
    margin-top: 20px;
    margin-bottom: 5px;
}


#premiumtools{
    width: 90%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    box-shadow: rgba(126, 126, 126, 0.315) 0px 0px 0px 1px;
    border-radius: 5px;
    overflow: hidden;
}

#premiumtools-title{
    width: 100%;
    height: 40px;
    background-color: #677f5e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#premiumtools-title img{
    width: 18px;
    margin-right: 10px;
    filter: drop-shadow(rgba(0, 0, 0, 0.486) 0px 0px 1px);
}

#premiumtools-title p{
    font-size: 14px;
    width: 150px;
    margin-bottom: 1px;
    margin-left: 10px;
    font-weight: 600;
    color: #f3f3f3;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.557);
}

#premiumtools-select{
    width: 100%;
    flex: 1;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
}

#premiuminfo{
    width: 90%;
    font-size: 14px;
    margin-top: 10px;
    padding-bottom: 30px;
}

#premiuminfo a {
    text-decoration: none;
    font-weight: 600;
    color: rgb(67, 142, 40);
}

#toolselection {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#distanceAzimuthPanel{
    display: none;
    width: 100%;
    height: 100%;
    justify-content: left;
    align-items: center;
    flex-direction: column;
}

#distanceAzimuthPanel hr{
    width: 100%;
    height: 1px;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

#distancetitle{
    font-size: 18px;
    width: 90%;
    margin-top: 10px;
    font-weight: 600;
    text-align: left;
}

#distancedesc{
    width: 90%;
    font-size: 14px;
}


.tooloptions{
    height: 35px;
    background-color: rgb(239, 239, 239);
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.171) 0px 0px 0px 1px;
}

.tooloptions-button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 35px;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.195) 0px -1px 0px 1px;
}

.tooloptions-button:hover{
    filter: brightness(0.90);
}

.tooloptions-button img{
    width: 22px;
}

#distancelist{
    width: 90%;
    height: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    padding-bottom: 40px;
}

#distancelist-totaldistance{
    width: 100%;
    height: 30px;
    background-color: rgb(244, 244, 244);
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.272) 0px 0px 0px 1px;
}

.totalmeasuredtext{
    font-size: 12px;
    margin-left: 10px;
}

.totalmeasuredvalue {
    font-size: 12px;
    margin-right: 20px;
}


#distancelist-totalazimuth{
    width: 100%;
    height: 30px;
    background-color: rgb(244, 244, 244);
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.272) 0px 0px 0px 1px;
    margin-bottom: 10px;
}

#distancelist-title{
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 8px;
}

#distancelist-title b{
    color: #222222;
    font-weight: 500;
}

#distancepoints{
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 500px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    overflow-y: auto;
    box-shadow: #00000033 0px 0px 0px 1px;
    background-color: #e4e4e4;
}

.distancevalue-title{
    font-size: 14px;
    width: 100%;
    font-weight: 600;
    color: rgb(71, 71, 71);
}

#createpoint{
    width: 100%;
    height: 42px;
    min-height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    background-color: rgb(108 134 98);
    transition: filter ease 0.2s;
    color: rgb(245, 245, 245);
    font-weight: 500;
}

#createpoint img{
    width: 20px;
    filter: invert(1);
    margin-right: 5px;
    margin-top: 2px;
}

#createpoint:hover{
    filter: brightness(0.95);
}

.measurement{
    width: 100%;
    height: 94px;
    background-color: rgb(245, 245, 245);
    margin-top: 2px;
}

.measurement-title{
    width: 100%;
    height: 30px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.measurement-title p{
    width: 90%;
    height: 30px;
    margin-left: 5px;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 13px;
}

.deletemeasurement{
    width: 38px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 1px;
}

.deletemeasurementicon{
    width: 18px;
    height: 18px;
}


.measurement-value{
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.measurement-valuename{
    margin-left: 5px;
    font-size: 12px;
}

.measurement-valuenumber{
    margin-right: 5px;
    font-size: 12px;
}

#resetdistancetool img{
    width: 19px;
}

#weboptions-top{
    display: flex;
    flex-direction: column;
    width: 100%;
}

#weboptions-top div{
    border-bottom: 1px solid #ccc;
}

#weboptions-bottom{
    display: flex;
    flex-direction: column;
    width: 100%;
}

#weboptions-bottom div{
    border-top: 1px solid #ccc;
}

.gotomeasurement{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    cursor: pointer;
}

.gotomeasurementicon{
    width: 18px;
}

#notespanel{
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: left;
    align-items: center;
}

.noteslarge{
    width: 90%;
    font-size: 23px;
    font-weight: 600;
    margin-top: 10px;
}

.notessmall{
    width: 90%;
    font-size: 14px;
}

#notestext{
    width: 88%;
    height: 665px;
    min-height: 665px;
    margin-top: 10px;
    margin-right: 8px;
}

#notespanel hr{
    width: 90%;
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.154);
}

#notestext textarea{
    width: calc(100% - 2px);
    height: 100%;
    border-radius: 4px;
    resize: none;
    outline: none;
    font-size: 14px;
    padding: 4px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


#notesfootnote{
    width: 90%;
    font-size: 12px;
    margin-top: 14px;
    padding-bottom: 20px;
}