/* src/css/styles.css */
/*
.legend__container__desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legend__container__onmap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    margin: 0 0 15px 15px;
    padding: 5px 5px;
    border-radius: 4px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 10%);
}

.legend__container__mobile {
    background-color: white;
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.legend__mobile__wrapper {
    max-width: 250px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.key__field {
    margin: 0 4px;
    font-size: 12px;
}
.key__title {
    font-size: 14px;
    color: lightslategray;
    margin-right: 5px;
}

.key__bar {
    margin-top: 2px;
    height: 6px;
    width: 100%;
}

.key--bar--1 {
    background-color: rgb(0,43,255);
}
.key--bar--2 {
    background-color: rgb(0,102,255);
}
.key--bar--3 {
    background-color: rgb(1,149,255);
}
.key--bar--4 {
    background-color: rgb(102,194,255);
}
.key--bar--5 {
    background-color: #7BDFFF;
}*/







/*@media screen and (max-width: 1024px) {
    .legend__container__desktop {
        display: none;
    }
    !* set dynamically in JS
    #plowops-map {
      height: calc(100vh - 108px - 70px);
    }
    *!
    !*.plowops-logo {
      bottom: 90px;
    }*!
}

@media screen and (min-width: 1024px) {
    .legend__container__mobile {
        display: none;
    }
    !* set dynamically in JS
      #plowops-map {
        height: calc(100vh - 108px);
      }
    *!
    !*.plowops-logo {
      bottom: 20px;
    }*!
}*/


