@charset "UTF-8";

/* 1.1 Root Code Variables */
:root {
    /* Main color */
    --primary: #17a2b8;
    --primary-hover: #0b7a8b;
    --secondary: #081f2c;
    --secondary-hover: rgba(8, 31, 44, 0.2);
    /* text color */
    --white-color: #ffffff;
    --white-color-hover: rgba(255, 255, 255, 0.14);
    --black-color: #000000;
    /* background Color */
    --color-light: #C0C0C0;
    --body-bg: #f5f5f5;
    /* Fonts */
    --font-family-base: 'Cabin', sans-serif;
    --font-family-title: 'Cabin', sans-serif;
    /* transition and transform */
    --transition: all 300ms ease;
    /* Primary RGBA */
    --rgba-primary-1: rgb(23, 164, 186, 0.1);
    --rgba-primary-2: rgba(23, 164, 186, 0.2);
    --rgba-primary-3: rgba(23, 164, 186, 0.3);
    --rgba-primary-4: rgba(23, 164, 186, 0.4);
    --rgba-primary-5: rgba(23, 164, 186, 0.5);
    --rgba-primary-6: rgba(23, 164, 186, 0.6);
    --rgba-primary-7: rgba(23, 164, 186, 0.7);
    --rgba-primary-8: rgba(23, 164, 186, 0.8);
    --rgba-primary-9: rgba(23, 164, 186, 0.9);
    /* Secondary RGBA */
    --rgba-secondary-1: rgba(8, 31, 44, 0.1);
    --rgba-secondary-2: rgba(8, 31, 44, 0.2);
    --rgba-secondary-3: rgba(8, 31, 44, 0.3);
    --rgba-secondary-4: rgba(8, 31, 44, 0.4);
    --rgba-secondary-5: rgba(8, 31, 44, 0.5);
    --rgba-secondary-6: rgba(8, 31, 44, 0.6);
    --rgba-secondary-7: rgba(8, 31, 44, 0.7);
    --rgba-secondary-8: rgba(8, 31, 44, 0.8);
    --rgba-secondary-9: rgba(8, 31, 44, 0.9);
    /* black RGBA */
    --rgba-black-1: rgba(0, 0, 0, 0.1);
    --rgba-black-2: rgba(0, 0, 0, 0.2);
    --rgba-black-3: rgba(0, 0, 0, 0.3);
    --rgba-black-4: rgba(0, 0, 0, 0.4);
    --rgba-black-5: rgba(0, 0, 0, 0.5);
    --rgba-black-6: rgba(0, 0, 0, 0.6);
    --rgba-black-7: rgba(0, 0, 0, 0.7);
    --rgba-black-8: rgba(0, 0, 0, 0.8);
    --rgba-black-9: rgba(0, 0, 0, 0.9);
    /* extra color */
    --star-color: #ffa200;
    --red-color: #ff0000;
    --color-1: #84C225;
    --bg-color-1: rgba(131, 194, 37, 0.20);
}

/* 1.2 Theme Reset */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}

/* 1.3 Global Elements */
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
}

body {
    font-family: var(--font-family-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black-color);
    background: var(--body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

p {
    color: var(--black-color);
    margin: 0;
}

button {
    outline: none !important;
    cursor: pointer;
}

button:focus,
button:active {
    outline: none;
}

button,
a:hover,
a:focus,
a:visited,
a:active,
button:active {
    text-decoration: none;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: var(--font-family-title);
    font-weight: 400;
    margin-top: 0;
    /*     text-transform: capitalize;
 */
    margin-bottom: 15px;
    line-height: initial;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

input,
select,
button {
    font-family: var(--font-family-base);
}

textarea {
    overflow: hidden;
    resize: none;
}

iframe {
    border: none !important;
    display: block;
    width: 100%;
}

section {
    position: relative;
}

main {
    position: relative;
    width: 100%;
    display: block;
}


/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

/* :: Font h2 */
h2 {
    font-size: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 26;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 26;
    }
}

/* :: Font h4 */
h4 {
    font-size: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}

/* :: Font h5 */
h5 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

/* :: Font h6 */
h6 {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}



/* :: button style */
.button-style {
    display: inline-block;
    vertical-align: top;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white-color);
    font-size: 14px;
    font-weight: normal;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.button-style:hover {
    background: var(--primary-hover);
    color: var(--white-color);
}

/* >> Helper Class */
/* # color */
.primary-color {
    color: var(--primary) !important;
}

.secondary-color {
    color: var(--secondary) !important;
}

.white-color {
    color: var(--white-color) !important;
}

.black-color {
    color: var(--black-color) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}


.color-yellow {
    color: var(--star-color) !important;
}

.color-green {
    color: var(--color-1) !important;
}

.color-red {
    color: var(--red-color) !important;
}

/* grid */
.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
}



/*---------------------------------------------------------------------------
2. main area
----------------------------------------------------------------------------*/
main.main-page-area {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.left-bar {
    width: calc(100% - 450px);
}

div#map {
    width: 100%;
    height: 100%;
    flex: 1;
}

.chart-area {
    height: 100%;
}

.chart-item {
    background: var(--white-color);
    margin-bottom: 10px;
    box-shadow: 2px 2px 52px 6px rgb(255 255 255 / 1%);
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--rgba-black-1);
}

.chart-list .chart-item:nth-last-child(1) {
    margin-bottom: 0;
}

.chart-item .chart-title {
    position: relative;
    border-bottom: 1px solid #d3d3d369;
    margin-bottom: 5px;
    padding: 15px;
    text-align:center;
}

.chart-item .chart-title h2 {
    margin-bottom: 0;
}

.apexcharts-toolbar {
    display: none !important;
}

.legend-area {
    display: none;
    position: fixed;
    left: 20px;
    bottom: 70px;
    max-height: 100%;
    min-height: 1px;
    height: auto;
    background: var(--white-color);
    z-index: 999;
    padding: 15px 0 15px 15px;
    max-width: 1100px;
    width: auto;
    min-width:200px;
    background-color: #fff8;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0.5rem #8888;
    border: 1px solid #8888;
    border-radius: 0.75rem;
}

.show-data .legend-area {
    left: 360px;
}

.legend-item .legend-title {
    position: relative;
    border-bottom: 1px solid #d3d3d369;
    margin-bottom: 15px;
}

.legend-content li p {
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 2px;
}

.legend-list .legend-item:not(:nth-last-child(1)) {
    margin-bottom: 30px;
}

.legend-content .color {
    border: 1px solid var(--black-color);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
}

.legend-content .rainfall .color {
    border-radius: 0%;
    opacity: 0.7;
}

.map-area {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
}

/* .information {
    width: 300px;
    padding: 15px;
    position: relative;
    display: none;
} */

.information-wapper {
    height: 100%;
}

.show-data .map-area .information {
    display: block;
}

/* ############# New Slider Start */
.information-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

canvas {
    display: block;

}

.information {
    width: 330px;
    padding: 15px;
    position: relative;
    display: none;
  }

/* ############# New Slider End */

/* .information-image {
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.property-image {
    width: 190px;
    position: relative;
    height: 190px;
    border-radius: 15px;
    overflow: hidden;
} */

.property-image img {
    max-width: 190px;
    width: auto;
    height: auto;
    max-height: 190px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.property-level {
    position: relative;
}

.property-level ul,
.property-level ul li {
    position: relative;
}

.property-level ul {
    padding-left: 15px;
}

.property-level ul:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 10px;
    background: var(--rgba-black-1);
    left: 0;
    border-radius: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.property-level ul li span.level-dots {
    background-color: var(--white-color);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    position: absolute;
    cursor: pointer;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    left: -17px;
    bottom: 0;
    top: 0;
    margin-top: 3px;
}

.property-level ul li.active span.level-dots {
    background-color: var(--primary);
}

.property-level p {
    font-size: 12px;
    padding: 0 0 24px 0;
}

.property-level ul li:nth-last-child(1) p {
    padding-bottom: 0;
}

.information-close {
    position: absolute;
    right: -10px;
    top: 5px;
    background: var(--primary);
    height: 25px;
    width: 25px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.information-close .close svg path {
    stroke: var(--white-color);
}

.content-item {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--rgba-black-2);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.content-item p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.20px !important;
}

.content-left p {
    /*color: var(--primary);*/
    color: #017689;
}

.content-right p {
    text-align: right;
}

.dashboardcontain {
    display: none;
}

.dashboardcontain.dashboardcontain-show {
    display: block;
}

.dashboard_leftAccount {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

    .dashboard_leftAccount li a {
        background: var(--rgba-primary-1);
        display: inline-block;
        padding: 2px 10px;
        font-size: 13px;
        border-radius: 50px;
        color: #017689;
    }

.dashboard_leftAccount li a.dashboard_menu_active,
.dashboard_leftAccount li a:hover {
    background: var(--primary);
    color: var(--white-color);
}


.filter-btns-area {
    position: fixed;
    right: 460px;
    top: 20px;
    z-index: 999;
}

.filter-list {
    display: flex;
    gap: 15px;
}

.filter-list .filter-item a {
    background: var(--primary);
    color: var(--white-color);
    padding: 5px 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: normal;
    display: inline-block;
    border-radius: 50px;
    border: 1px solid var(--rgba-black-1);
    box-shadow: 2px 2px 52px 6px rgb(255 255 255 / 1%);
}

.filter-list .filter-item a:hover {
    background: var(--primary-hover);
}

.filter-list .filter-item a svg {
    margin-left: 5px;
}

.filter-list .filter-item a svg path {
    stroke: var(--white-color);
}

.right-bar {
    flex: 1;
    padding: 15px 15px 15px 15px;
    width: 450px;
}


/* INFO-BAR */

.info-bar {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.info-backdrop {
    position: fixed;
    right: -440px;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--rgba-black-8);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    cursor: url(../../assets/images/icon/icon-zoom-out.png), zoom-out;
}

.side-content-visible .info-bar.filters-bar.show,
.side-content-visible .info-bar.layers-bar.show,
.side-content-visible .info-bar.settings-bar.show,

.side-content-visible .info-bar.filters-bar.show .info-backdrop,
.side-content-visible .info-bar.settings-bar.show .info-backdrop,
.side-content-visible .info-bar.layers-bar.show .info-backdrop {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.side-content-visible .info-container {
    right: 460px;
}

.info-container {
    position: fixed;
    top: 60px;
    height: calc(100% - 72px);
    width: 500px;
    max-width: 100%;
    overflow: auto;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    background: var(--white-color);
    z-index: 99999;
}

.info-container .info-heading {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    background: var(--primary);
}

.info-title h2 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--white-color);
}

.close-bar {
    cursor: pointer;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.close-bar:hover {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-bar .close-icon {
    width: 25px;
    height: 25px;
    border: 1px solid var(--white-color);
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.close-bar .close-icon::after,
.close-bar .close-icon::before {
    position: absolute;
    left: 0;
    content: "";
    height: 12px;
    width: 1px;
    background-color: var(--white-color);
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.close-bar .close-icon::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.close-bar .close-icon::before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}

.info-container .info-content {
    padding: 0px 10px;
    height: calc(100vh - 190px);
    overflow-y: auto;
}

.filters-list {
    padding: 5px;
}

.info-footer {
    padding: 15px;
    border-top: 1px solid var(--rgba-black-1);
    box-shadow: 2px 2px 52px 6px rgb(255 255 255 / 1%);
}

.info-footer-item {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.filter-list .filter-item a.active svg {
    transform: rotate(-180deg);
}

.layers-item, .settings-item {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--rgba-black-2);
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}


.layers-item-simulator {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.layers-title, .settings-title {
    width: calc(100% - 50px);
    position: relative;
}

.layers-content, .settings-content {
    display: inline-block;
    position: relative;
}

.toggle-control {
    position: relative;
}

.switch input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    display: none;
}

.ui-top-text {
    text-align: center;
    margin-bottom: 10px;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.ui-bottom-text span {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.switch label {
    cursor: pointer;
    text-indent: -9999px;
    width: 48px;
    height: 24px;
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
}

.switch label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.switch input:checked+label {
    background: var(--primary);
}

.switch input:checked+label:after {
    left: calc(100% - 3px);
    transform: translateX(-100%);
}

.filters-numbers {
    margin-bottom: 10px;
}
.filters-numbers h7 {
    font-size: 14px;
    font-weight: 600;
}
.filters-numbers ul li {
    display: flex;
    align-items: center;
    justify-content: left;
}

.filters-numbers ul li p {
    font-size: 12px;
    padding-left:10px;
}

.filters-title {
    border-bottom: 1px solid var(--rgba-black-1);
    background: var(--rgba-primary-1);
    height: 30px;
}

.filters-item {
    border: 1px solid var(--rgba-black-1);
    border-radius: 15px;
    margin-bottom: 8px;
    overflow: hidden;
}

.filters-item:nth-last-child(1) {
    margin-bottom: 0;
}

.filters-title h2 {
    position: relative;
    text-align:center;
    align-items: center;
    gap: 10px;
    padding:8px 15px;
}

.filters-title1 {
    border-top: 1px solid var(--rgba-black-1);
    height: 35px;
}
.filters-title1 h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
}
.filters-content {
    padding: 8px 15px;
}

.filters-content ul {
    grid-gap: 5px;
}

.filters-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.filters-content p {
    font-size: 12px;
}

#map.crosshair-cursor {
    cursor: default;
}

#slider .ui-slider-range {
    display: none;
}

.number-with-dollar::before {
    content: "$";
    float: left;
}

.ui-slider {
    margin: 0 15px 0 15px;
}
.angled-lines {
    background-image: url(../../assets/images/Group-2.png);
    width: 15px !important;
    height: 15px !important;
    border: none !important;
}
#info-popup {
    position: absolute;
    top: 8px;
    left: 218px;
    z-index: 99999;
    padding: 12px;
    padding-right: 45px;
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(7,47,75,0.3);
}
#info-popup {
    display: initial;
    opacity: 1;
}
    
        #info-popup ul li .precipitation-name {
            margin: 0 25px 12px;
            color: var(--text-strong);
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.1px;
            text-transform: uppercase;
        }
        #info-popup ul .gradient {
            float: left;
            width: 16px;
            height: 204px;
            margin-right: 8px;
            border-radius: 12px;
            box-shadow: 0 0 2px 1px rgba(0,0,0,0.2) inset;
        }
.color-s3 .color-rain-gradient {
    background: linear-gradient(180deg, #01b714, #01b714, #088915, #11651a, #064307, #ffee07, #f8bb08, #f38b08, #f07108, #ea5e09, #df370a, #d3100c);
}
#info-popup .color-scheme {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 85%;
}
#info-popup ul {
    display: flex;
    justify-content: center;
    margin: 0;
    list-style: none;
}
 
    #info-popup .color-scheme li {
        display: flex;
        align-items: center;
        margin: 0;
        color: var(--text-medium);
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        white-space: nowrap;
    }
#info-popup .color-scheme div {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border-radius: 50%;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.2) inset;
}
.color-s3 .color-overcast {
    background-color: #01b714ff;
}
.color-s3 .color-drizzle {
    background-color: #088915ff;
}
.color-s3 .color-light-rain {
    background-color: #064307ff;
}
.color-s3 .color-moderate-rain {
    background-color: #f8bb08ff;
}
.color-s3 .color-shower {
    background-color: #f07108ff;
}
.color-s3 .color-hail {
    background-color: #df370aff;
}
.color-s3 .color-light-snow {
    background-color: #8fffffff;
}
.color-s3 .color-medium-snow {
    background-color: #5fcfffff;
}
.color-s3 .color-heavy-snow {
    background-color: #0f6fffff;
}
.padding-right {
 padding-right:50px;
}
.legend-area1 {
    position: fixed;
    left: 590px;
    bottom: 20px;
    max-height: 100%;
    min-height: 1px;
    height: auto;
    background: var(--white-color);
    z-index: 999;
    padding: 15px 0 15px 15px;
    max-width: 300px;
    width: 100%;
    background-color: #fff8;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0.5rem #8888;
    border: 1px solid #8888;
    border-radius: 0.75rem;
}

.disabled {
    color: #808080; /* Use a lighter gray color */
    filter: grayscale(100%); /* Apply a grayscale filter to desaturate the color */
    opacity: 0.5; /* Adjust the opacity to visually indicate the more disabled state */
}
.whater-depth {
    background-image: linear-gradient(to right, #a3bfcd 0%, #7eaec5 34%, #11098f 100%);
    text-align: center;
    color: #fff;
    width: 95%;
    margin-top: 15px;
}
.whater-depth h2 {
    margin-bottom: 0;
    padding: 10px;
}
.legend-list{
    overflow: initial;
    display:flex;
}
.legend-item{
    margin-right:30px;
}
.layers-list, .settings-list{
    margin-top:10px;
}
.close-icon-legend{
    top:10px;
    right:5px;
}
.btn-legend {
    background-color: #17a2b8;
    position: fixed;
    left: 20px;
    bottom: 10px;
    font-size: 14px;
    max-height: 100%;
    min-height: 1px;
    height: auto;
    z-index: 9999999;
    padding: 5px 20px;
    cursor: pointer;
    width: auto;
    box-shadow: 0 0 0.5rem #8888;
    border: 1px solid #8888;
    border-radius: 50px;
}

.leaflet-control-attribution    
{
    display: none !important;
}