@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;531;600;700;800;900&display=swap');

:root {
    --header-bg-color: #262a41;
    --chrome-bg-color: #ffffff;
    --canvas-bg-color: #eff1f4;
    --sidebar-bg-color: #dfe0e7;
    --accent-light: #11a94d;
    --header-color: #00A873;
    --darken10: rgba(0, 0, 0, 0.1);
    --lighten10: rgba(255, 255, 255, 0.1);
    --dark-text: #262a41;
    --light-text: #ffffff;
    --small-text: 11px;
    --medium-text: 14px;
    --normal-text: 15px;
    --nearly-normal-text: 12px;
    --header-text: 28px;
    --header-big-text: 38px;
    --header4-text: 24px;
    --module: 15px;
    --thumbBG: rgba(81, 178, 183, 0.6);
    --thumbBGhover: rgba(81, 178, 183, 0.9);
    --thumbBGactive: rgba(81, 178, 183, 0.6);
    --scrollbarBG: transparent;
    --scrollbarBGhover: rgba(255, 255, 255, 0.3);
    --scrollbarBGactive: rgba(255, 255, 255, 0.3);
    --sidebar-width: 300px;
    --header-dashboard: 120px;
    --footer-dashboard: 40px;
    --model-icon: 12px;
    /* --main-theme-color: #003A80; */
    --main-theme-color: #0A3368;
    --main-theme-light-color: #3E7AC2;
    --main-theme-dark-color: #032046;
    --main-theme-headerbar-text-color: #a4bdda;
    --main-theme-deep-dark-color: #04212E;
    --main-theme-page-header-text-color: #00C2FF;
}

* {
    box-sizing: border-box;
    color: var(--dark-text);
}

body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Inter, sans-serif;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
    display: flex;
    align-items: center;
    justify-content: center;
}

select,
input,
button {
    font-family: inherit;
    border-width: 0;
    border-style: solid;
    background-color: transparent;
}

button:focus {
    outline: none;
}

p,
ul,li,em {
    color: rgb(104 104 104) !important;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    text-align: justify;
}

p strong {
    font-weight: 600;
}

h1 {
    color: var(--header-color);
    font-size: var(--header-big-text);
    font-weight: 800;
    text-align: center;
}

h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 100;

}

h3 {
    color: #d45046;
    font-size: 22px;
    font-weight: 200;
}

h4 {
    color: #de8f89;
    font-size: 18px;
    font-weight: 200;
}
h4 sub {
    color: #de8f89;
    font-size: 18px;
    font-weight: 200;
}
hr {
    /* dominant-baseline: hanging; */
    opacity: 0.2;
    margin: 2px;
}

#container {
    width: 100%;
    height: 100%;
}


/* width */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f100;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #d45046;
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #d45046;
}













.yAxisChart {
    stroke: rgb(227, 229, 233);
}

.xWeekAxisChart {
    stroke: rgba(0, 0, 0, 0);
}

.yAxisLabel {
    stroke: unset;
    font-size: var(--normal-text);
    font-weight: 400;
    fill: rgb(144, 144, 148);
    text-anchor: start;
    pointer-events: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.xAxisLabel {
    stroke: unset;
    font-size: var(--normal-text);
    font-weight: 400;
    fill: rgb(90, 90, 95);
    text-anchor: start;
    dominant-baseline: hanging;
    pointer-events: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.xWeekAxisLabel {
    stroke: unset;
    font-size: var(--normal-text);
    font-weight: 400;
    fill: #a69494;
    /* text-anchor: start; */
    dominant-baseline: hanging;
    pointer-events: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
    margin-left: 3px;
    display: none;
}



.confidenceArea {
    stroke: unset;
    /* fill: rgba(249, 148, 139, 0.33); */
}

.pastSurveillancePoints {
    stroke: unset;
    fill: #a69494;
}

.futureSurveillancePoints {
    stroke: rgb(212, 80, 70);
    fill: white;
}

.hiddenSurveillancePoints {
    fill: rgba(0, 0, 0, 0);
    stroke: unset;
}
.oldSurveillancePoints {
    stroke: unset;
    fill: rgba(166, 148, 148, 0.394);
}

.timeSelector {
    /* transform: translate(17px, 0px); */
}

.timeSelectorLine {
    stroke: unset;
    fill: rgb(249, 124, 114);
    width: 3px;
}

.timeSelectorLabelRect {
    stroke: unset;
    fill: rgba(0,0,0,0);
    width: 90px;
    height: 24px;
}

.timeSelectorLabel {
    stroke: unset;
    fill: rgba(0,0,0,0);
    background-color: rgba(0,0,0,0);
    font-size: var(--normal-text);
    font-weight: 400;
    dominant-baseline: hanging;
    /* pointer-events: none; */

}
/* .timeSelectorLabelRect{
    fill: rgb(249, 124, 114);
        }
.timeSelectorLabel{
    fill: rgb(255,255,255);
} */
.timeSelectorAdditionalDataLabel {
    stroke: unset;
    fill: rgb(249, 124, 114);
    font-size: var(--normal-text);
    padding-bottom: 4px;
    /* pointer-events: none; */

    /* dominant-baseline: hanging; */
}

.futureAreaRect {
    fill: rgb(252, 244, 240);
}

.appLayout {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.dashboardLayout {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.dashboardLayout.menu {
    /* width: 90%; */
}

.fluChart {
    min-width: 400px;
    height: 100%;
    background-color: rgb(249, 124, 114);
}

.sidebarContainer {
    min-width: 400px;
    height: 100%;
}



.svg-container {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    /* justify-content: center; */
    /* padding-bottom: 100%;
    vertical-align: top;
    overflow: hidden; */
    height: 100%;
    min-height: 450px;
    /* margin-bottom: 20px; */
    overflow: hidden;
    cursor: ew-resize;
}

.svg-content {
    display: inline-block;
    /* max-height: 600px; */
    /* position: absolute;
    top: 0;
    left: 0; */
}









.sidebar {
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    /* height: 100%; */
    background-color: rgb(249, 124, 114);
    margin: 15px;
    border-radius: 8px;
    padding: 16px 20px;
    overflow: hidden;
    /* display: flex; */
    flex-direction: column; 
    z-index: 100;
    transition: box-shadow 0.5s;
    /* box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4); */
    /* box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.4); */
    box-shadow: 4px 4px 11px 0px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
}

.sidebar.popup{
    /* box-shadow: 10px 0px 12px -10px rgba(0, 0, 0, 0.4); */
}
.sidebarLogo {
    /* margin-bottom: 15px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* gap: 40px; */
}
.sidebarButton.mobile{
    display: flex;
}
.sidebarLogo img {
    width: 150px;

}

.sidebarDescription {
    color: white;
    font-size: var(--normal-text);
    /* margin-bottom: 22px; */
    line-height: 1.5;
    font-weight: 100;
    user-select: text;
}

.sidebarSelectorContainer {
    display: flex;
    flex-direction: column;
    margin: 4px 0px;
}

.customComboBox {
    background-color: white;
    height: 38px;
    padding: 10px;
    padding-left: 15px;
    font-size:14px;
    font-weight: 500;
    /* margin: 10px; */
    margin-bottom: 6px;
    color: rgb(212, 80, 70);
    border-radius: 8px;
    border: 2px solid rgb(252, 188, 183);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../media/down-arrow.svg");
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
    cursor: pointer;
}

.listContainer {
    /* overflow: auto; */
    /* margin-top: 12px; */
}

.modelList {
    /* height: 4000px; */
    /* background-color: red; */
    position: relative;
}


/* advanced check box */
.acbCheckBox {
    position: relative;
    height: 42px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    border-radius: 4px;
}

/* .acbCheckBox:hover{
    background-color: #f07166
}

.acbCheckBox:hover .acbOptions{
    visibility: visible;
} */


.acbBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 5px;
    width: 24px;
    height: 24px;
}
.acbBox svg {
    width: 24px;
    height: 24px;
}

.acbBox img {
    width: 24px;
}

.acbText {
    color: white;
    font-size: var(--normal-text);
    font-weight: 400;
    /* filter: brightness(1.5) */
    
}

.acbTextBold {
    color: white;
    font-weight: bold;
    font-size: var(--normal-text);
}


.modelCheckBox {
    position: relative;
    height: 42px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    border-radius: 4px;
}

.modelCheckBox:hover {
    /* background-color: #f07166 */
    background-color: #0000000d;
}

.modelCheckBox:hover .modelCheckBoxDetails {
    visibility: visible;
}

.modelCheckBoxDetails {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 5px;
    margin-left: auto;
    visibility: hidden;
    height: 100%;
}

.modelCheckBoxDetails img {
    width: 12px;
    height: 100%;
}






.chartSection {
    width: 100%;
    display: none;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    padding: 15px;
    padding-left: 56px;
    padding-right: 56px;
    overflow-y: auto;
    overflow-x: hidden;
}

.chartTop {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    position: relative;
    width: 100%;
    /* height: 0%; */
    /* height: 10%; */
    /* min-height: var(--header-dashboard);
    max-height: var(--header-dashboard); */
    /* padding: 38px 0px; */
    padding-top: 18px;
    min-width: max-content;
    gap:20px;
}

.chartTitle {
    color: rgb(212, 80, 70);
    font-size: 26px;
    /* font-weight: bold; */
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 10px;
}
.chartTitleDesc {
user-select: text;
}
.chartDesc {
    color: rgb(166, 148, 148);
    /* letter-spacing: 1px; */
    font-size: var(--normal-text);
}

.chartBottom {
    display: flex;
    flex-direction: column;
    /* margin: 20px 0px; */
    margin-top: auto;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
    /* min-height: var(--footer-dashboard); */
    /* max-height: var(--footer-dashboard); */
    /* height: 10%; */
    align-items: center;
}

.forecastInfo {}

.forecastInfoTitle {
    margin-bottom: 10px;
    color: #d45046;
    font-weight: 600;
}

.ciSelectors {
    /* margin-left: auto; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.ciSelectors .acbCheckBox {
    height: unset;
    margin: 0px 4px;
}

.ciSelectorsTitle {
    margin-right: 10px;
    color: #d45046;
    font-weight: 600;
    font-size: var(--normal-text);
}

.ciSelectorsInner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    user-select: text;
}

/* width */
.chartSection::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.chartSection::-webkit-scrollbar-track {
    background: #f1f1f100;
}

/* Handle */
.chartSection::-webkit-scrollbar-thumb {
    background: #f97c72;
    border-radius: 4px;
}

/* Handle on hover */
.chartSection::-webkit-scrollbar-thumb:hover {
    background: #bd5e57;
}




.headerBar {
    position: relative;
    /* width: 300px; */
    /* height: 40px; */
    margin-left: auto;
    /* background-color: red; */
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 8px;
}

.headerLink {
    position: relative;
    /* width: 40px; */
    /* height: 40px; */
    /* background-color: green; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.headerLink:hover {
    cursor: pointer;
}

.headerLink:hover .headerLinkText {
    text-decoration: underline;
}


.headerLinkIcon {
    position: relative;
    display: flex;
    /* width: 16px; */
    /* background-color: blue; */

}

.headerLinkIcon svg {
    position: relative;
    width: 18px;
    height: 18px;
}

.headerLinkIcon svg #icon {
    fill: #a69494;
    stroke: #a69494;
}

.headerLinkIcon.selected svg #icon {
    fill: #d45046;
    stroke: #d45046;
}


.headerLinkIcon i {
    position: relative;
    /* width: 18px; */
    /* height: 18px; */
    color: #a69494;
    font-size: 18px;
}

.headerLinkIcon.selected i  {
    color: #d45046;
}

.headerLinkText {
    color: #a69494;
    font-size: var(--medium-text);
    text-decoration: none;
}

.headerLinkText.selected {
    color: #d45046;
}


.chartIcon {
    background-image: url("../media/chart.svg");
}


.baselineRect{
    stroke-dasharray: 10;
    stroke: #c3c6ca;
    /* stroke: rgb(144, 144, 148); */
    /* height: 2px; */
    stroke-width: 1px;
}

.modelPopup {
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    height: calc(100% - 30px);
    /* background-color: rgb(249, 124, 114); */
    /* background-color: #f07166; */
    /* background-color: #db675d; */
    background-color: #e3675c;
    margin: 15px;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    left: calc(var(--sidebar-width) - 20px);
    top:0;
    transition: opacity 0.5s, left 0.5s;
    opacity: 0;
    box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.4);
    user-select: text;
}

.modelPopup.enabled{
    opacity: 1;
    left: calc(var(--sidebar-width) - 10px);
}

.modelPopup div{
    color: white;
    font-size: var(--normal-text);
    font-weight: 100;
}

/* .modelPopup .header{
    font-size: var(--small-text);
} */
/* .modelPopup .header{
    
} */
.modelPopup .name{
    margin-top: 10px;
    font-size: var(--header-text);
}

.modelPopup .description{
    margin-top: 20px;
    line-height: 1.5;
    font-size: var(--medium-text);
}

.modelPopup .team{
    margin-top: auto;
    margin-left: auto;
    text-align: right;
}

.modelPopup .longTeam{
    font-size: var(--small-text);
    margin-left: auto;
    text-align: right;
}

.content{
    user-select:text;
    width: 100%;
    max-width: 800px;
}

.content .image{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.image img{
    width: 100%;
    max-width: 750px;
}


.projectTop
{
    height: unset;
    min-height: unset;
    max-height: unset;
}

.pageIcon svg{
    width: 32px;
    height: 32px;
}

.pageIcon svg #icon{
    fill: white;
}

.content p{
    margin: 12px 0px;
}


/* .content p a{
    color: rgb(104 104 104) !important;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    text-align: justify;
    text-decoration: none;
    border-left: 0px solid #00000000;
    padding: 8px;
    transition: border-left 0.4s;
}

.content p a:hover {
    border-left: 8px solid #f2928a;
} */

.line {
    border: 1px solid #f2928a;
}
/* .pageTitle{

}
.pageTitleIcon{

} */



.insightCaption {
    color: #b0b0b0;
    font-size: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    /* border: 1px solid #b0b0b0; */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 40px;
}
.insightCaption i{
    color: #b0b0b0;
    font-size: 16px;
}

.insightDisclaimer {
    color: #d45046;
    font-size: 14px;
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border: 1px solid #d45046;
    padding: 10px;
    border-radius: 8px;
}

.insightDisclaimer i{
    color: #d45046;
    font-size: 26px;
}


.contributorsList{
    padding: 6px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contributorsList h3{
    margin: 20px 0px;
    /* margin-bottom: 20px; */
    border-left: 4px solid;
    padding-left: 30px;
    color: #d45046;
    font-weight: 600;
}

.contributorsList h4{
    /* margin: 0px 10px; */
    margin-top: 0px;
    /* margin-bottom: 20px; */
    font-size: 20px;
    color: #d45046;
    font-weight: 100;
    /* border: 1px solid #d4504654; */
    /* border-radius: 8px; */
    padding: 18px 0px;
    /* border-right: 4px solid; */
    border-bottom: 1px solid;
    font-weight: 400;
}

.contributorsList h5{
    margin: 20px 0px;
    /* margin-bottom: 20px; */
    /* border-left: 4px solid; */
    /* padding-left: 30px; */
    font-size: 18px;
    color: #d45046;
    font-weight: 100;
    margin-bottom: 10px;
}

.contributorsList p{
    margin: 0px 0px;
    font-size: 14px;

}

.contributorsList ul{
    /* column-gap: 50px;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2; */
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

.contributorsList.main ul{
    column-gap: 50px;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}


.contributorsList li{
    color: rgb(212 80 70) !important;
    font-size: 14px;
    font-weight: 300;
    /* line-height: 27px; */
    text-align: justify;
    text-decoration: none;
    border-left: 0px solid #00000000;
    /* padding-left: 8px; */
    transition: border-left 0.4s;
    padding: 0px;
    margin: 0px;
    border: 1px solid #f2928a;
    text-align: center;
    padding: 6px;
    border-radius: 6px;
    /* margin: 10px; */
    margin-bottom: 10px;
}

.contributorsList li:hover {
    /* border-left: 8px solid #f2928a; */
}

.contributorsList.main li{
    color: rgb(104 104 104) !important;
    font-size: 16px;
    font-weight: 300;
    /* line-height: 27px; */
    text-align: justify;
    text-decoration: none;
 
 
    transition: border-left 0.4s;
    padding: unset;
    margin: unset;
    border: unset;  
     border-left: 0px solid #00000000;
    text-align: unset;
    padding: unset;
    border-radius: unset;
    /* margin: 10px;*/
    margin-bottom: 10px;  
     padding-left: 8px;
}

.contributorsList.main li:hover {
    border-left: 8px solid #f2928a;
}


.teamContrib{
    padding: 10px 40px;
    border-radius: 8px;
    /* margin-bottom: 60px; */
    border: 1px solid #d4504642;
    margin-bottom: 60px;
    padding-bottom: 20px;
    /* border-right: 0px solid; */
    /* border-bottom: 0px solid; */
    color: #d45046;
    box-shadow: 0px 0px 90px #00000008;
    transition: box-shadow 0.4s;
}

.teamContrib:hover{
    box-shadow: 0px 0px 50px #0000001f;
}

.modelContrib{
    /* padding: 6px 20px;
    border-radius: 8px;
    /* margin-bottom: 60px; */
    /* border: 1px solid #d45046;
    margin-bottom: 20px;
    padding-bottom: 20px;  */
    color: rgb(104 104 104) !important;
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
    text-align: justify;
}

.news{
    position: relative;
    /* border: 1px solid #d4504638; */
    /* border-radius: 8px; */
    padding: 10px;
    /* margin-bottom: 20px; */
    border-bottom: 1px solid #d4504630;
}

.innerNews{
    position: relative;
    display:none;
}

.newsTitle{
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

/* .newsTitle:before{
    content:">";
    width:fit-content;
} */

input[type=checkbox]:checked+.news .innerNews {
    display: block;
}

/* input[type=checkbox]:checked+.news .newsTitle:before{
    content:"";
} */



.insight-season-list{
    position: relative;
    display: flex;
    flex-direction: column;
}

.insight-season{
    display: flex;
    flex-direction: column;
    background-color: #ff928a;
    color: white;
    margin: 6px 0px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.4s, border-left 0.4s;
    text-decoration: none;

}
.insight-season.selected{
    background-color: #fab5b0;
    /* border-left: solid 4px white; */
}
.insight-season:hover{
    background-color: #ffa49d;
}







.locationMap{
    height:230px;
    min-height:230px
}

.locationContainer{
    /* min-height: 300px; */
    position: relative;
}
.locationReturnButton{
    position: absolute;
    width: 50px;    padding: 6px;
    /* height: 100px; */
    border: 1px solid #ffffff66;
    border-radius: 8px;
    opacity:0.5;
    /* background-color: #ff928a66; */
    /* background-color: red; */
    /* filter: drop-shadow(0px 0px 4px #000000); */
}
.locationReturnButton:hover{
    filter: drop-shadow(0px 0px 4px #00000055);
    opacity:1.0;
    /* background-color: #ffa49d; */
}

.locationReturnButton.active{
    filter: drop-shadow(0px 0px 4px #00000077);
    border: 1px solid white;
    opacity:1.0;
    /* background-color: #ffa49d; */
}

.locationMapSvgContainer {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* padding-bottom: 100%;
    vertical-align: top;
    overflow: hidden; */
    height: 220px;
    min-height: 220px;
    /* margin-bottom: 20px; */
    overflow: hidden;
    cursor: pointer;
    margin-top: 2px;

}

.sidebarButtons{
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 8px;

}

.sidebarButton{
    display: flex;
    background-color: #ff928a;
    color: white;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 6px;
    cursor: pointer;
    height: fit-content;
    transition: background-color 0.4s;
}
.sidebarButton:hover{
    background-color: #ffa49d;
}




.surveillanceLegend{
    display: flex;
        flex-direction: row;
        gap: 30px;
        align-items: center;
        /* border: 1px solid #a59393; */
        border-radius: 8px;
        padding: 8px;
}
.surveillanceLegendInfo{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.surveillanceLegendInfoIcon{
    border-radius: 50%;
    background-color: rgb(166, 148, 148);
    width: 12px;
    height: 12px;
}
.surveillanceLegendInfoIconOld{
    border-radius: 50%;
    background-color: rgba(166, 148, 148, 0.394);;
    width: 12px;
    height: 12px;
}
.surveillanceLegendInfoText{
    color:black;
    font-size: 13px;
}


.weekSelectorLine {
    stroke-dasharray: 10;
    stroke: #c3c6ca;
    stroke-width: 1px;
}


.detailDataPopup{
    position: absolute;
    min-width: 300px;
    max-height: calc(25%);
    /* max-height: 200px; */
    /* max-height: 30px; */
    background-color: #ffffffd9;
    /* margin-left: 40px; */
    /* pointer-events: none; */
    /* box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4); */
    border-radius: 8px;
    opacity: 0;
    /* visibility: hidden; */
    transition: opacity 0.4s;
    text-transform: capitalize;
    margin-left: 0px;
    margin-top: 0px;
    z-index: 100;
    display: flex;
    /* flex-flow: wrap; */
    flex-direction: column;
    margin-right: 10px;
    margin-left: 30px;
    border: 1px solid #c0c0c0;
    overflow: auto;
}

.detailDataPopup.show{
    /* visibility: visible; */
    opacity: 1;
}

.detailDataPopupDate{
    /* margin-left: 10px; */
    display: flex;
    flex-direction: row;

    color: var(--dark-text);
    font-size: var(--nearly-normal-text);
    /* margin-top: 6px; */
    padding: 6px;
}
.popup-close{
    height: 15px;
    margin-left: auto;
}

.detailDataPopup.show{
    /* visibility: hidden; */
    opacity: 1;
}


.detailDataPopupItem{
    position: relative;
    /* background-color: red; */
    margin-bottom: 10px;
    /* pointer-events: none; */
    /* box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4); */
    display: flex
;
    flex-direction: row;
    align-items: center;
    margin: 4px;
    gap: 5px;
}

.detailDataPopupItemIconContainer{
    position: relative;
    width: 12px; 
    min-width: 12px;
    /* background-color: green; */
    display: flex;
    flex-direction: row;
    /* align-items: flex-start; */
    /* justify-content: center;*/
}

.detailDataPopupItemIcon{
    position: relative;
    width: var(--model-icon);
    height: var(--model-icon);
    border-radius: 50%;
}

.detailDataPopupItemTextContainer{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.detailDataPopupItemTopTextContainer{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.detailDataPopupItemName{
    position: relative;
    color: var(--dark-text);
    font-size: var(--nearly-normal-text);
    margin-right: 4px;

}

.detailDataPopupItemMedian{
    position: relative;
    color: var(--dark-text);
    font-size: var(--nearly-normal-text);
}

.detailDataPopupItemCI{
    position: relative;
    color: var(--dark-text);;
    font-size: var(--small-text);
    display: flex;
    gap: 5px;
    margin-top: 2px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.detailDataPopupItemCIBox{
    position: relative;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 2px;
    
}
.detailDataPopupItemCIRing{
    position: relative;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    /* border-color: red; */
    border: solid 2.5px;
}


.detailPopupTeam {
    position: relative;
    display: flex;
    flex-direction: row;
    /* background-color: #ededed57; */
    border-radius: 8px;
    margin: 4px;
    padding: 2px;
    border: 1px solid #c0c0c047;
}

.detailPopupTitle {
    position: relative;
    margin-left: 10px;
    color: var(--dark-text);
    font-size: var(--nearly-normal-text);;
    margin-top: 6px;
    font-weight: bolder;
    max-width: 90px;
    min-width: 90px;
    word-break: break-all;
    
}

.detailPopupDataContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    /* width: 100%; */
    padding: 2px 0px;
    padding-left: 10px;
    /* padding-top: 6px; */
    /* width: 70%; */
    border-left: 1px solid #c0c0c047;
}















.headerbar-separator {
    margin-left: auto;
    margin-right: 10px;
}

.visibilitynone{
    display: none;
}

.menu-buttons{
    position: relative;
    display: flex;
    gap:40px;
}
.menu-buttons-mobile{
    position: relative;
    display: flex;
    width: 50px;
    cursor: pointer;
}
.open-menu{
    display: flex;
    height: 35px;
}
.close-menu{
    display: none;
    height: 35px;
}

input[type=checkbox]:checked+.menu-buttons-mobile +.menu-buttons {
    display: flex;
}
input[type=checkbox]:checked+.menu-buttons-mobile .close-menu {
    display: flex;
}
input[type=checkbox]:checked+.menu-buttons-mobile .open-menu {
    display: none;
}



.menu-buttons{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    background-color: white;
    width: 100%;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    /* border-radius: 20px; */
    backdrop-filter: blur(30px);
    margin-left: auto;
    z-index: 1000;
    border-bottom: 1px solid;
}
.menu-buttons-mobile{
    display: flex;
    margin-left: auto;
}
.sidebar{
    display: none;
    max-width: unset;
    width: 100%;
        margin: unset;
    border-radius: unset;
     padding: unset;
     /* margin: 15px;
     border-radius: 8px;
      padding: 16px 20px; */
}

.sidebar.staticPage
{
    display: none;
}


.chartSection{
    display: none;
    padding: 5px;
    /* padding-left: 0px;
    padding-right: 0px; */
}

.chartSection.staticPage{
    display: flex;
}

.headerBar{
    width: 100%;
    align-items: center;
    margin-top: 0px;
}

.contributorsList.main ul{
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
}


.contributorsList {
    padding: 0px;
}



.team-logo{
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin: 25px 0px;
}


.insight-season-list-master{
    display: flex;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

h2{
    color:rgb(212, 80, 70);
}
.content{
    max-width: unset;
}

.project-logo{
    width:100%;
    max-width: 400px;
}
.mobile-dash{
    display: none;
    height: 100%;
}
#container{
    display: flex;
}
.chartTop{
    min-width: unset;
    padding-top: 0px;
}
.headerbar-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80%;
    /* padding: 8px; */
}

.headerbar-logo img {
    width: 150px;
}

.chartSection.show{
    display: flex;
}

.sidebar.show{
    display: flex;
}

.modelPopup{
    z-index: 100;
    max-width: unset;
}
.modelPopup.enabled{
    left: unset;
}







.message{
    /* margin-top: auto; */
    position: absolute;
    display: flex;
    flex-direction: column;
    /* margin-bottom: auto; */
    /* top: 40px; */
    /* left: 0px; */
    /* right: 0px; */
    background-color: #ffffff;
    border-radius: 8px;
    padding: 14px;
    opacity: 0;
    transition: top 0.4s, right 0.4s, opacity 0.4s;
    /* border-left: 8px solid #78a2ca; */
    /* box-shadow: 0px 0px 14px #00000069; */
    /* margin: 20px; */
    max-width: 1000px;
    /* justify-content: center; */
    z-index: 1000;
    margin: 100px;
    border: 1px solid hsl(3 72% 79% / 1);
    box-shadow: 0px 0px 50px #000000a3;
    padding: 60px;
    min-width: 350px;
}
.message.show{
    /* top: 65px; */
    /* left: 0px; */
    /* right: 0px; */
    opacity: 1;
}
.message p{
    margin: 0px;
    padding: 0px;
    line-height: unset;
    color: #cee7ff;
    font-size: 18px;
    text-align: left;
}
.message strong{
    color: white;
    /* -webkit-text-stroke: 0.3px; */
    font-size: 16px;
}
.message a{
    color: #d25047;
    /* -webkit-text-stroke: 0.3px; */
    font-size: 18px;
    text-decoration: none;
}
.message a:hover{
    text-decoration: underline;
}
.messageTitle{
    font-size: 28px;
    color: #d35047;
    margin-bottom: 5px;
    font-size: 22px;
}
.messageIcon{
    /* display: none; */
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
       padding: 20px;
    padding-left: 0px;
    display: flex
;
}
.messageIcon i{
    font-size: var(--header-text);
    color:  #d35047;
}

.messageTextSection{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.messageContent{
}
.messageButton{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 26px; */
    margin-left: auto;

}
.messageButton i{
    font-size: 16px;
    color: #000000;
    cursor: pointer;
}






@media only screen and (min-width: 768px)  {
    .menu-buttons{
        display: flex;
        flex-direction: row;
        position: relative;
        top: unset;
        background-color: unset;
        width: unset;
        align-items: unset;
        padding-top: unset;
        border-radius: unset;
        backdrop-filter: unset;
        border-bottom: unset;
        padding-bottom: 0px;
        gap:20px;
    }
    .menu-buttons-mobile{
        display: none;
    }
    .sidebar{
        /* display: flex; */
        max-width: unset;
        margin: unset;
     border-radius: unset;
      padding: unset;
    }  

    .sidebar.staticPage
    {
        display: none;
    }

    .chartSection.staticPage{
        display: flex;
    } 


    .chartSection{
        padding: 10px;
        /* padding-left: 0px;
        padding-right: 0px; */
    }
    .headerBar{
        width: 100%;
        margin-top: 0px;
    }
    .contributorsList.main ul{

        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    
    }
    .contributorsList {
        padding: 6px 20px;
    }
    .insight-season-list-master{
        display: flex;
    }
    h2{
        color:rgb(212, 80, 70);
    }
    .content{
        max-width: unset;
    }
    .mobile-dash{
        display: none;
    }
    #container{
        display: flex;
    }
    .chartTop{
        min-width: unset;
        padding-top: 0px;
    }
    .modelPopup{
        z-index: 100;
        max-width: unset;
    }
    .modelPopup.enabled{
        left: unset;
    }
    .chartBottom{
        flex-direction: row;
        align-items: flex-start;
    }
    .xWeekAxisLabel{
        display: unset;
    }
    .sidebarButton.mobile{
        display: flex;
    }
    .dashboardLayout.menu {
        width: 100%;
    }
    .detailDataPopup{
        /* max-height: unset; */
        max-height: calc(40%);
    }
    .ciSelectors{
        margin-left: auto;
    }
    
}


@media only screen and (min-width: 970px)  {
    .menu-buttons{
        display: flex;
    }
    .menu-buttons-mobile{
        display: none;
    }
    .sidebar{
        display: flex;
        max-width: var(--sidebar-width);
        margin: 15px;
     border-radius: 8px;
      padding: 16px 20px;
        
    }

    .chartSection{
        display: flex;
        padding: 15px;
        padding-left: 56px;
        padding-right: 56px;
    }
    .headerBar{
        width: unset;
        margin-top: 8px;
    }
    .contributorsList.main ul{

        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    
    }
    .contributorsList {
        padding: 6px 20px;
    }
    .insight-season-list-master{
        display: none;
    }
    h2{
        color:white;
    }
    .content{
        max-width: 800px;
    }
    .mobile-dash{
        display: none;
    }
    #container{
        display: flex;
    }
    .chartTop{
        min-width: max-content;
        padding-top: 18px;
    }
    .headerbar-logo {
        display: none;
    }
    .chartSection.show{
        display: flex;
    }
    
    .sidebar.show{
        display: flex;
    }
    
    .modelPopup{
        z-index: 2;
        max-width: var(--sidebar-width);
    }
    .modelPopup.enabled{
        left: calc(var(--sidebar-width) - 10px);
    }
    .chartBottom{
        flex-direction: row;
        align-items: flex-start;
        min-height: var(--footer-dashboard);
        max-height: var(--footer-dashboard);
        height: 10%;
    }

    .xWeekAxisLabel{
        display: unset;
    }
    .sidebarButton.mobile{
        display: none;
    }
    .dashboardLayout.menu {
        width: 100%;
    }
    .detailDataPopup{
        /* max-height: unset; */ 
        max-height: calc(100% - 100px);
        overflow: hidden;
    }
    .detailDataPopup.show{
       
        /* overflow: auto; */
        opacity: 1;
    }
    .sidebar.staticPage
    {
        display: flex;
    }

    .chartSection.staticPage{
        display: flex;
    } 
    .popup-close{
        display: none;
    }
    .timeSelectorLabelRect{
fill: rgb(249, 124, 114);
    }
    .timeSelectorLabel{
        fill: rgb(255,255,255);
    }
}
