
/* STATIC PAGES STYLES -------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

:root {
    --header-bg-color: #262a41;
    --chrome-bg-color: #ffffff;
    --canvas-bg-color: #eff1f4;
    --sidebar-bg-color: #dfe0e7;
    --accent-light: #11a94d;
    --header-color: #579BB0;
    --darken10: rgba(0, 0, 0, 0.1);
    --lighten10: rgba(255, 255, 255, 0.1);
    --dark-text: #262a41;
    --light-text: #ffffff;


    --small-text: 9px;
    --medium-text: 12px;
    --nearly-normal-text: 12px;
    --normal-text: 13px;
    --subtitle-text: 16px;
    --chart-desc-text: 12px;
    --chart-title-text: 21px;
    --header-text: 28px;
    --header-big-text: 38px;
    --header4-text: 24px;
    --model-icon: 16px;
    --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);
    --headerbar-height: 60px;
    --sidebar-width: 350px;
    --footer-dashboard: 40px;
    /* --main-theme-color: #003A80; */
    --main-theme-color: #073C53;
    --main-theme-light-color: #3E7AC2;
    --main-theme-dark-color: #04212E;
    --main-theme-headerbar-text-color: #87b0bc;
    --main-theme-deep-dark-color: #04212E;
    --main-theme-page-header-text-color: #00C2FF;


    --text-color: #adc2c8;
    --selected-back-color:#032046;
    --bb:#b4d3f9;
    --gg:#315c94;
    --jj:#0e2c51;
     /* #00295b; */
    /* --disease-panel-color: #235da4 */
    /* --disease-panel-color: #3E7AC2 */
    --disease-panel-color: #23508c
}

* {
    box-sizing: border-box;
    /* color: var(--dark-text); */
    /* font-size: var(--medium-text); */
    /* scrollbar-width: thin;
    scrollbar-color: white; */
}






body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Didact Gothic, sans-serif;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    /* -webkit-user-select: none; */
    /* Safari */
    /* -ms-user-select: none; */
    /* IE 10 and IE 11 */
    /* user-select: none; */
    /* Standard syntax */
    background-color: var(--main-theme-color);
}

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

button:focus {
    outline: none;
}

p,
ul {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    text-align: justify;
}

p strong {
    font-weight: 800;
}

h1 {
    color: #c6d1d5;
    font-size: 30px;
    font-weight: 800;
    /* text-align: center; */
}

h2 {
    color: #c6d1d5;
    font-size: 26px;
    font-weight: 800;
}

h3 {
    color: #c6d1d5;
    font-size: 24px;
    font-weight: 800;
}

h4 {
    color: #c6d1d5;
    font-size: 18px;
    /* var(--header4-text); */
    font-weight: 800;
    line-height: 36px;
}

hr {
    /* dominant-baseline: hanging; */
    opacity: 0.2;
    margin: 2px;
}

a{
    color: var(--main-theme-headerbar-text-color);
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

figcaption {
    color: var(--text-color);
    max-width: 700px;
    font-size: 13px !important;
}
figcaption a{
    font-size: 13px !important;
}

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

/* Track */
::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey; 
    border-radius: 10px; */
  }

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

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

:target{
    background-color: rgb(4 22 38 / 62%);
}

/* @media print {
    @page {
      size: 210mm 297mm;
      margin: 5mm;
    }
    .container {
      width: 1170px;
    }
} */





/* HeaderBar */

.headerbar {
    position: relative;
    height: var(--headerbar-height);
    min-height: var(--headerbar-height);
    display: flex;
    flex-direction: row;
    gap: 40px;
    background-color: var(--main-theme-color);
    align-items: center;
}

.headerbar-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    margin-right: 10px;
}

.headerbar-logo img {
    height: 100%;
}

.headerbar-link {
    position: relative;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-decoration: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    /* border-bottom: 2px solid var(--main-theme-color); */
    color: var(--main-theme-headerbar-text-color);
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.headerbar-link.selected {
    /* border-color: var(--text-color); */
    color: white;
    text-decoration: none;
}

.headerbar-link:hover {
    color: white;
    border-color: white;
    text-decoration: none;
}

.headerbar-link ul {
    /* padding: 20px; */
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    left: 0;
    top: unset;
    height: auto;
    width: 100%;
    min-width: max-content;
    background-color: #191919;
    transition: opacity 0.2s, top 0.2s, visibility 0.1s;
    /* border: 1px solid rgb(86 86 86); */
    opacity: 1;
    text-align: left;
    visibility: visible;
    margin-top: 15px;
    /* border-bottom: 1px solid white; */
    border-top: 1px solid white;
    z-index: 10;
    position: absolute;
    top: calc(100% - 6px);
    visibility: hidden;
    opacity: 0;
    margin-top: 0px;
    background-color: #1c272d;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.42);
    border-top: 0px solid white;
    padding: 10px;
    border-radius: 8px;
}

.headerbar-link:hover ul {
    visibility: visible;
    opacity: 1;
    /* top: unset; */
  }

.headerbar-link.arrow{
    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%;
}

.github-button{
    /* margin-left: auto; */
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* opacity: 0.5; */
    text-decoration: none !important;
}

.github-button i{
    margin-left: auto;
    font-size: 30px;
    color: #86b0bc;
    text-decoration: none !important;
}

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


/* Base Styles */

.content{
    position: relative;
    display: flex;
    flex-direction: column;
    /* height: 3000px; */
    background-color: var(--main-theme-dark-color);
    /* overflow-y: auto; */
    /* overflow-x: hidden; */
    width: 100%;
    height: calc(100vh - var(--headerbar-height));
}

/* .footer{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 300px;
    background-color: var(--main-theme-deep-dark-color);
} */


.page-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #052a3b;
    /* height: 300px; */
    /* overflow: hidden; */
}

.top-container{
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    width: 100%;
    /* background-color: red; */
    height: 100%;
}

.enveloper{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.page-header{
    background-color: var(--main-theme-deep-dark-color);
    width: 100%;
}




/* Derived Styles */

.page-section.home{
    /* background-color: red; */
    height: calc(90vh - var(--headerbar-height));
    min-height: 600px;
    background-image: url(./media/respicompass_bcklogo2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -20vw;
    background-attachment: fixed;
    background-color: #053042;
}

.page-section.projects{
    /* background-color: blue; */
    /* height: calc(100vh); */
}

.page-section.footer{
    /* background-color: var(--main-theme-deep-dark-color); */
    background-color: #053042;
    /* height: 300px; */
    background-image: url(./media/respicompass_bcklogo2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -20vw;
    background-attachment: fixed;
}

.page-section.header{
    /* background-color: var(--main-theme-deep-dark-color); */
    background-color: #053042;
    padding: 80px 0px;
    background-image: url(./media/respicompass_bcklogo2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -20vw;
    background-attachment: fixed;
}

.top-container.home{
    justify-content: center;
    align-items: center;
}

.top-container.header{
    gap: 6px;
}

.top-container.footer{
    gap: 20px;
    margin-bottom: 20px;
}

.top-container.text-content{
    padding: 40px 0px;
    padding-bottom: 80px;
}

.top-container.text-content p{
    margin: 4px
}
.top-container.text-content p{
    font-size: 16px;
 }
 .top-container.text-content ul{
    font-size: 16px;
 }
 .top-container.text-content ul li{
    font-size: 16px;
 }
 .top-container.text-content ol li{
    font-size: 16px;
 }

.top-container.text-content a{
   /* font-size: 16px; */
   color: white;
}
.top-container.text-content strong{
    font-size: 16px;
    -webkit-text-stroke: 0.5px;
    color: white;
}
/* Indipendent Styles */

.home-splash-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-splash-logo img{
    width: 100%;
    max-width: 706px;
}

.home-splash-logo-mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-splash-logo-mobile img{
    width: 100%;
    max-width: 306px;
}


.home-splash-desc{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #3a4e68;
    width: 100%;
    max-width: 636px;
    margin-top: 16px;
    color: #ffffff;
    font-size: 16px;
    opacity: 0.75;
    text-align: center;
    margin-bottom: 40px;
}  

.home-splash-bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #c2c8d2;
    /* margin-top: 20px; */
    position: absolute;
    bottom: 0;
    margin-bottom: 20px;
}


.page-header-title{
    font-size: var(--header-big-text);;
    color: white;
    
    text-align: center;
}

.page-header-title-separator{
    background-color: white;
    height: 3px;
    width: 100px;
}

.page-header-desc{
    font-size: 16px;
    color: var(--text-color);
    margin-top: 10px;
}










.footer-top{
    display: flex;
    flex-direction: row;
    padding: 40px 0px;
    padding-bottom: 20px;
}
.footer-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-logo img{
    height:150px
}
.footer-logo-mobile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-logo-mobile img{
    height:200px
}
.footer-indices{
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    justify-content: center;
}
.footer-indices ul{
    list-style-type: none;
    padding: 0px;
    columns: 1;
    -webkit-columns: 1;
}
.footer-indices ul li a{
    font-size: 16px;
}
.footer-indices-title{
    color: white;
    font-size: 22px;
    margin-bottom: 16px;
}


.footer-partners{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-left: auto;
}
.footer-partners-logos{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.footer-partners-logos img{
    height: 80px;
}
.footer-separator{
    background-color: var(--main-theme-headerbar-text-color);
    height: 1px;
    width: 100%;
}

.footer-copyright{
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    color: var(--main-theme-headerbar-text-color);
    font-size: 14px;
}






.homePageContainer{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(./Media/respicast_img_logo2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -20vw;
    background-attachment: fixed;
}

.homePageContent{
    position: relative;
    /* background-color: red; */
    /* height: 467px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homePageContentLogo{
    display: flex;
    flex-direction: column;
    align-items: center;
}



.pageContainer{
    position: relative;
   height: 3000px;
   background-color: #0a2633;
}







.visibilitynone{
    display: none;
}

.menu-buttons{
    position: relative;
    display: flex;
    gap:40px;
    z-index: 1;
    z-index: 1000;
}
.menu-buttons-mobile{
    position: relative;
    display: flex;
    width: 50px;
    cursor: pointer;
}
.open-menu{
    display: flex;
    width: 35px;
}
.close-menu{
    display: none;
    width: 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;
}

.note{
    font-size: 13px !important;
}
.reference {
    position: relative;
    bottom: 1ex;
    font-size: 80% !important;
}

.homepage-button {
    color: white;
    font-size: 16px;
    background-color: #225f79;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background-color 0.2s;
}
.homepage-button:hover {
    background-color: #51879f;
}





.communityTeamList{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 60px;
    /* padding: 20px;*/
}

.communityTeamItem{
    display: flex;
    flex-direction: column;
    background-color: #073c53;
    /* margin-bottom: 20px; */
    /* padding: 20px; */
    padding-top: 0px;
    border-radius: 8px;
    transition: background-color 0.4s;
    /* border: 1px solid #ffffff3d; */
    /* box-shadow: 0px 0px 34px #00000069;*/
}

.communityTeamItem:hover{
    /* background-color: #061a34d4; */
}



.communityTeamItemTitle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    /* margin-top: 30px; */
    /* gap: 20px; */
    /* padding: 20px; */
    background-color: #135b7a;
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}


.communityModelList{
    display: flex;
    flex-direction: column;
    /* margin-left: 40px; */
    padding-bottom: 10px;

}

.communityModelItem{
    display: flex;
    flex-direction: column;
    /* border-left: 10px solid #6787af00; */
    margin: 0px 20px;
    margin-bottom: 10px;
    padding-left: 30px;
    transition: border 0.4s,background-color 0.4s;
    /* gap: 40px; */
    /* border-bottom: 2px solid #6788af1c; */
    /* padding-bottom: 20px; */
    /* align-items: center; */
    border: 1px solid #6787af78;
    border: 1px solid transparent;
    margin: px;
    padding: 20px;
    border-radius: 8px;
    background-color: #135b7a52;
    /* border-top: 1px solid transparent; */
    /* border-right: 1px solid transparent; */
    /* border-left: 1px solid transparent;*/
}






.communityModelItemTitle{
    display: flex;
    flex-direction: column;
    flex: 1;
    color: #cee7ff;
    font-size: 16px;
}

.communityModelItemInfo{
    display: flex;
    flex-direction: column;
    /* flex: 1; */
    /* width: 70%; */
    color: #cee7ff96;
    font-size: 13px;
    /* border-left: 1px solid #213b5c; */
    /* padding-left: 20px; */
    transition: border-left 0.4s;
    /* background-color: #6788af;*/
}

.communityModelItemInfoContributors{
    display: flex;
    /* flex-direction: row; */
    color: #cee7ff;
    font-size: 16px;
    gap: 10px;
    align-items: baseline;
    margin-top: 4px;
    flex-wrap: wrap;

}

.communityModelItemInfoContributor{
    display: flex;
    flex-direction: row;
    color: #cee7ff;
    font-size: 13px;
    gap: 10px;
    align-items: center;
    /* border:1px solid #274971; */
    border-radius: 4px;
    padding: 4px 10px;
    transition: background-color 0.4s;
    cursor: pointer;
    text-decoration: none;
    background-color: #135b7a;
}


.communityModelItemInfoContributor:hover{
    background-color: #327896;
}



.communityModelItemInfoExtended{
    display: none;
    flex-direction: column;
    /* flex: 1; */
    /* width: 70%; */
    color: #cee7ff;
    font-size: 13px;
    /* margin-top: 20px; */
    /* padding-left: 20px; */
    border-top: 1px solid #135b7a;
    margin-top: 20px;
    padding-top: 20px;
    
}

.communityModelItemInfoExtendedButton{
    display: flex;
    flex-direction: row;
    /* flex: 1; */
    color: #cee7ff;
    font-size: 12px;
    /* margin-top: 40px; */
    align-items: center;
    gap: 10px;
    /* background-color: #244167; */
    padding: 5px 10px;
    width: fit-content;
    border-radius: 4px;
    cursor: pointer;
    background-color: #135b7a;
    transition: background-color 0.4s;
    margin-left: auto;
    margin-top: 10px;

}

.communityModelItemInfoExtendedButton:hover{
    background-color: #2a7494;
}
.communityModelItemInfoExtendedButton:before{
content:"Show more";
width:fit-content
}
.communityModelItemContent{
    display: flex;
    flex-direction: column;
    /* flex: 1; */
    color: #cee7ff;
    font-size: 16px; 
}

.communityModelItemInfo h5{
    font-size: 16px;
    margin: 0px;
}





.communityTeamItemTitleGroup{
    color: #cee7ff;
    font-size: 18px;
    /* margin-top: 50px; */
    min-width: fit-content;
    padding: 20px;
    /* margin-right: 40px; */
    padding-left: 40px;
}
.communityTeamItemMainTitle{
    font-size: 22px;
}
.communityTeamItemSubTitle{
    color: #7fa2bc;
    font-size: 16px;
}






.communityTeamItemSeparator{
    width: 100%;
    /* height: 2px; */
    background-color: #6788af47;
}

.communityModelItemTitleRow{
    display: flex;
    flex-direction: row;
    /* flex: 1; */
    color: #cee7ff;
    font-size: 18px;
    align-items: center;
    gap: 16px;
}

.communityDisease{
    display: flex;
    flex-direction: row;
    color: #7fa2bc;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    /* gap: 16px; */
    margin: 20px;
    /* border-bottom: 1px solid #203d64; */
    /* padding-bottom: 20px; */
    margin-bottom: 10px;
}


input[type=checkbox]:checked+.communityModelItem .communityModelItemInfo .communityModelItemInfoExtended{
    display: flex;
}
input[type=checkbox]:checked+.communityModelItem .communityModelItemInfo .communityModelItemInfoExtendedButton:before{
    content:"Show less";
    width:fit-content
}

.explanation-box-dark{
    background-color: #073c53;
    padding: 20px;
    border-radius: 8px;
    /* border-top: 1px solid white; */
    /* border-bottom: 1px solid white; */
    /* margin-top: 20px; */
    margin: 20px 20px;
}

.explanation-box-dark p{
    font-size: 18px !important;
}

.explanation-box-dark p+p{
    font-size: 13px !important;
    line-height: 19px;

}



@media only screen and (min-width: 1550px)  {
    /* For mobile phones: */
:root {
    --small-text: 11px;
    --medium-text: 13px;
    --normal-text: 15px;
    --nearly-normal-text: 14px;
    --subtitle-text: 18px;
    --chart-desc-text: 15px;
    --chart-title-text: 24px;
    --header-text: 30px;
    --model-icon: 20px;
}

.homePageContentDescription{
    gap: 49px;
}

.homePageContentDescriptionDesc{
    font-size: 18px;
}

.homePageContentDescriptionRow{
    margin-top: 38px;
}

.homePageButton{
    font-size: 18px;
}

}








/* MOBILE VERSION STYLE RULES -----------*/
/* smartphone -----------*/

.top-container{
    align-items: center;
}
.home-splash-logo{
    display: none;
}
.home-splash-logo-mobile{
    display: flex;
}
.page-section.home{
    height: unset;
    min-height: 800px;
}
.headerbar{
    position: relative;
    gap: unset;
}
.page-header-desc{
    text-align: center;
}
/* .headerbar-link:hover{
    background-color: #deeef6;
} */
 .headerbar-link{
    font-size: 15px;
 }
.headerbar-separator-first{
    margin-right: 0px;
}
.headerbar-separator{
    display: none;
}
.menu-buttons{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    background-color: var(--main-theme-color);
    width: 100%;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    /* border-radius: 20px; */
    backdrop-filter: blur(10px);
}
.menu-buttons-mobile{
    display: flex;
}
.github-button{
    margin-right: unset;
}
.footer-top{
    flex-direction: column;
    width: unset;
    max-width: 400px;
    align-items: center;
    padding: 20px;
    gap: 20px;
}
.footer-indices{
    padding-left: unset;
    width: 100%;
}
.page-section.footer{
    width: 100%;
}
.top-container.footer{
    width: 100%;
}
.page-section.footer{
    width: 100%;
}
.footer-copyright{
    text-align: center;
}
.footer-partners{
    margin-left: unset;
}
.footer-indices-title{
    display: none;
}
.footer-logo{
    display: none;
}
.footer-logo-mobile{
    display: flex;
}
.top-container.text-content{
    padding: 40px 20px;
    align-items: unset;
}


/*print -----------*/

@media print  {
    @page {
        size: 210mm 297mm;
        margin: 5mm;
      }

  
      .top-container{
        align-items: unset;
    }
    .home-splash-logo{
        display: flex;
    }
    .home-splash-logo-mobile{
        display: none;
    }
    .page-section.home{
        height: calc(100vh - var(--headerbar-height));
        min-height: 600px;
    }
    .page-header-desc{
        text-align: unset;
    }

    .headerbar{
        /* gap: 40px; */
    }
.headerbar-separator-first{
   margin-right: 40px;
}
.headerbar-separator{
    display: flex;
}


.menu-buttons{
    display: flex;
    flex-direction: row;
    position: relative;
    top: unset;
    background-color: unset;
    width: 100%;
    align-items: unset;
    padding-top: unset;
    padding-bottom: unset;
    border-radius: unset;
    backdrop-filter: unset;
}
.menu-buttons-mobile{
    display: none;
}
.github-button{
    margin-right: 10px;
}
.footer-top{
    flex-direction: row;
    width: unset;
    max-width: unset;
    align-items: unset;
    padding: 40px 0px;
    gap: unset;
}
.footer-indices{
    padding-left: 30px;
    width: unset;
}
.top-container.footer{
    width: 100%;
}
.page-section.footer{
    width: unset;
}
.footer-copyright{
    text-align: unset;
}
.footer-partners{
    margin-left: auto;
}
.footer-indices-title{
    display: flex;
}
.footer-logo{
    display: flex;
}
.footer-logo-mobile{
    display: none;
}
.top-container.text-content{
    padding: 40px 20px;
}
.page-header-title{
    text-align: left;
}
.headerbar-link{
    font-size: 12px;
 }

    .top-container{
        align-items: unset;
    }
    .home-splash-logo{
        display: flex;
    }
    .home-splash-logo-mobile{
        display: none;
    }
    .page-section.home{
        height: calc(100vh - var(--headerbar-height));
        min-height: 600px;
    }
    .page-header-desc{
        text-align: unset;
    }

.headerbar{
    /* gap: 40px; */
}
.headerbar-separator-first{
    margin-right: 40px;
}
.headerbar-separator{
    display: flex;
}
.menu-buttons{
    display: flex;
    width: 100%;
}
.menu-buttons-mobile{
    display: none;
}
.github-button{
    margin-right: 10px;
}
.footer-top{
    flex-direction: row;
    width: unset;
    max-width: unset;
    align-items: unset;
    padding: 40px 0px;
    gap: unset;
}
.footer-indices{
    padding-left: 30px;
    width: unset;
}
.top-container.footer{
    width: 100%;
}
.page-section.footer{
    width: unset;
}
.footer-copyright{
    text-align: unset;
}
.footer-partners{
    margin-left: auto;
}
.footer-indices-title{
    display: flex;
}
.footer-logo{
    display: flex;
}
.footer-logo-mobile{
    display: none;
}
.top-container.text-content{
    padding: 40px 0px;
}
.page-header-title{
    text-align: left;
}
.headerbar-link{
    font-size: 13px;
 }
      


}

/* tablet -----------*/

@media only screen and (min-width: 970px)  {
   
    .top-container{
        align-items: unset;
    }
    .home-splash-logo{
        display: flex;
    }
    .home-splash-logo-mobile{
        display: none;
    }
    .page-section.home{
        height: calc(100vh - var(--headerbar-height));
        min-height: 600px;
    }
    .page-header-desc{
        text-align: unset;
    }

    .headerbar{
        /* gap: 40px; */
    }
.headerbar-separator-first{
   margin-right: 40px;
}
.headerbar-separator{
    display: flex;
}


.menu-buttons{
    display: flex;
    flex-direction: row;
    position: relative;
    top: unset;
    background-color: unset;
    width: 100%;
    align-items: unset;
    padding-top: unset;
    padding-bottom: unset;
    border-radius: unset;
    backdrop-filter: unset;
}
.menu-buttons-mobile{
    display: none;
}
.github-button{
    margin-right: 10px;
}
.footer-top{
    flex-direction: row;
    width: unset;
    max-width: unset;
    align-items: unset;
    padding: 40px 0px;
    gap: unset;
}
.footer-indices{
    padding-left: 30px;
    width: unset;
}
.top-container.footer{
    width: 100%;
}
.page-section.footer{
    width: unset;
}
.footer-copyright{
    text-align: unset;
}
.footer-partners{
    margin-left: auto;
}
.footer-indices-title{
    display: flex;
}
.footer-logo{
    display: flex;
}
.footer-logo-mobile{
    display: none;
}
.top-container.text-content{
    padding: 40px 20px;
}
.page-header-title{
    text-align: left;
}
.headerbar-link{
    font-size: 12px;
 }
}


/*desktop -----------*/
@media only screen and (min-width: 1100px)  {
 
    .top-container{
        align-items: unset;
    }
    .home-splash-logo{
        display: flex;
    }
    .home-splash-logo-mobile{
        display: none;
    }
    .page-section.home{
        height: calc(100vh - var(--headerbar-height));
        min-height: 600px;
    }
    .page-header-desc{
        text-align: unset;
    }

.headerbar{
    /* gap: 40px; */
}
.headerbar-separator-first{
    margin-right: 40px;
}
.headerbar-separator{
    display: flex;
}
.menu-buttons{
    display: flex;
    width: 100%;
}
.menu-buttons-mobile{
    display: none;
}
.github-button{
    margin-right: 10px;
}
.footer-top{
    flex-direction: row;
    width: unset;
    max-width: unset;
    align-items: unset;
    padding: 40px 0px;
    gap: unset;
}
.footer-indices{
    padding-left: 30px;
    width: unset;
}
.top-container.footer{
    width: 100%;
}
.page-section.footer{
    width: unset;
}
.footer-copyright{
    text-align: unset;
}
.footer-partners{
    margin-left: auto;
}
.footer-indices-title{
    display: flex;
}
.footer-logo{
    display: flex;
}
.footer-logo-mobile{
    display: none;
}
.top-container.text-content{
    padding: 40px 0px;
}
.page-header-title{
    text-align: left;
}
.headerbar-link{
    font-size: 13px;
 }
}




/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */





/* APP STYLES -------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */


.mainLayout{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background-color: var(--disease-panel-color); */
    border-radius: 4px;
-webkit-user-select: none; 
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
     user-select: none; 
}

.diseasePanel{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* padding-top: 10px; */
    padding: 10px;
    /* gap: 6px; */
    /* background-color: var(--disease-panel-color); */
}


#container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.app{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}


.yAxisChart {
    stroke: var(--main-theme-light-color);
    opacity: 0.3;
}

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

.yAxisLabel {
    stroke: unset;
    /* font-size: var(--medium-text); */
    font-weight: 400;
    fill: var(--main-theme-light-color);
    /* text-anchor: start; */
    pointer-events: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    text-overflow: ellipsis;
    /* Standard syntax */
}

.xAxisLabel {
    stroke: unset;
    /* font-size: var(--medium-text); */
    font-weight: 400;
    fill: var(--main-theme-light-color);
    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;
    text-overflow: ellipsis;
    /* Standard syntax */
}

.xAxisTableLabel {
    stroke: unset;
    /* font-size: var(--medium-text); */
    font-weight: 400;
    fill: var(--main-theme-light-color);
    text-anchor: center;
    dominant-baseline: hanging;
    /* pointer-events: none; */
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    text-overflow: ellipsis;
    /* Standard syntax */
}
.yAxisTableLabel {
    stroke: unset;
    /* font-size: var(--medium-text); */
    font-weight: 400;
    fill: var(--main-theme-light-color);
    /* text-anchor: start; */
    /* pointer-events: none; */
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    text-overflow: ellipsis;
    /* Standard syntax */
}
.xWeekAxisLabel {
    stroke: unset;
    /* font-size: var(--normal-text); */
    font-weight: 400;
    fill: var(--main-theme-light-color);
    /* 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;
    text-overflow: ellipsis;
    /* Standard syntax */
    margin-left: 3px;
}

.horizonRect {
    transition: fill-opacity 0.4s;
    /* filter: drop-shadow( 2px 2px 1px rgba(0, 0, 0, 0.3)); */
}
.confidenceAreaMaster {
    stroke: unset;
    /* fill: rgba(249, 148, 139, 0.33); */
    transition: opacity 0.4s;
    /* filter: drop-shadow( 0px 4px 2px rgba(0, 0, 0, 1.0)); */
    /* filter: drop-shadow( -2px 0px 4px rgba(0, 0, 0, 0.4)); */
}
.confidenceArea {
    stroke: unset;
    /* fill: rgba(249, 148, 139, 0.33); */
    transition: opacity 0.4s;
    /* filter: drop-shadow( 0px 4px 2px rgba(0, 0, 0, 1.0)); */
    /* filter: drop-shadow( -2px 0px 4px rgba(0, 0, 0, 1.0)); */
}
.confidenceAreaLine {
    stroke-width: 2px;
    filter: drop-shadow(0px 0px 1px rgba(128, 128, 128, 0.691));

}
.pastSurveillancePoints {
    stroke: unset;
    fill: var(--main-theme-color);
}

.futureSurveillancePoints {
    stroke: var(--main-theme-color);
    fill: white;
}

.hiddenSurveillancePoints {
    fill: rgba(0, 0, 0, 0);
    stroke: unset;
}

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

.timeSelectorLine {
    stroke: unset;
    fill: var(--main-theme-color);
    width: 3px;
}

.weekSelectorLine {
    stroke-dasharray: 10;
    stroke: var(--main-theme-color);
    stroke-width: 1px;
}

.timeSelectorLabelRect {
    stroke: unset;
    fill: var(--main-theme-color);
    width: 90px;
    height: 24px;
}

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

}

.timeSelectorAdditionalDataLabel {
    stroke: unset;
    fill: var(--main-theme-color);
    font-size: var(--normal-text);
    padding-bottom: 4px;
    /* pointer-events: none; */

    /* dominant-baseline: hanging; */
}

.futureAreaRect {
    fill: var(--main-theme-light-color);
    opacity: 0.1;
}

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

.dashboardLayout {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
    border-radius: 8px;
    /* border-top-left-radius: 0px;
    border-bottom-left-radius: 0px; */
}

.dashboardViewMode {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
    border-radius: 4px;
}


.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%;
    /* margin-bottom: 20px; */
    overflow: hidden;
    cursor: ew-resize;
}

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





.innerSidebar {
    display: flex;
    flex-direction: column;
    /* overflow: auto; */
    overflow: hidden;
}



.sidebar {
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    /* height: 100%; */
    /* background-color: var(--main-theme-color); */
    background-color: #D3E6EE;
    /* margin: 15px; */
    /* border-radius: 8px; */
    /* padding: 15px; */
    /* padding-top: 15px; */
    overflow: hidden;
    display: flex;
    flex-direction: column; 
    z-index: 100;
    transition: box-shadow 0.5s;
    border-radius: 8px;
    /* border-top-right-radius: 0px;
    border-bottom-right-radius: 0px; */
    /* 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); */
}

.sidebar.popup{
    /* box-shadow: 10px 0px 12px -10px rgba(0, 0, 0, 0.4); */
}


.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;
}

.customComboBox {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    background-color: var(--main-theme-color);
    height: 34px;
    min-height: 34px;
    max-height: 34px;
    /* padding: 10px; */
    padding-left: 15px;
    padding-right: 40px;
    /* font-size: var(--normal-text); */
    font-weight: 100;
    /* margin: 10px; */
    /* margin: 0px 8px; */
    /* margin-bottom: 8px; */
    color: white;
    border-radius: 4px;
    /* 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 {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    /* margin-right: 4px; */
    /* margin-top: 4px; */
    /* margin-bottom: 4px; */
    gap: 18px;
    /* padding-top: 12px; */
    /* padding: 8px 6px; */
    padding: 8px;
}

.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;
    height: 100%;
}

/* .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;
}

.divBox {
    position: relative;
    height: 100%;
    text-transform: capitalize;
}

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

.acbTextBold {
    color: white;
    font-weight: bold;
    /* font-size: var(--normal-text); */
    padding-top: 4px;
}


.modelCheckBox {
    position: relative;
    /* height: 42px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    /* min-height: 42px; */
    border-radius: 4px;
    padding: 8px 0px;
    transition: background-color 0.4s;

}

.modelCheckBox:hover {
    /* background-color: #f07166 */
    background-color: var(--selected-back-color);
}

.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%;
}

.modelCheckBoxLoading i {
    font-size: 16px;
    color: #7da4e7;
}

.modelCheckBoxLoading {
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    height: 100%;
    transition: opacity 0.05s;
}

.modelCheckBoxLoading.enabled {
    visibility: visible;
    opacity: 1;
}

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


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

.evalChartSection {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    /* padding: 20px; */
    overflow-y: auto;
    overflow-x: hidden;
    gap: 20px;
    margin-top: 12px;

}

.chartTop {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    position: relative;
    width: 100%;
    /* height: 0%; */
    /* height: 10%; */
    /* min-height: var(--header-dashboard); */
    /* max-height: var(--header-dashboard); */
    /* margin: 16px 0px; */
    /* min-width: max-content;*/
    /* margin-bottom: 20px; */
}
.chartMode {
    color: var(--main-theme-color);
    font-size: var(--header-text);
    /* font-weight: bold; */
    letter-spacing: 1px;
    font-weight: bold;
    /* margin-bottom: 10px; */
}
.chartTitle {
    color: var(--main-theme-color);
    font-size: var(--subtitle-text);
    /* font-weight: bold; */
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 6px;
    /* margin-bottom: 10px; */
    display: flex;
    flex-direction: row;
}

.chartModeDesc {
    color: var(--thumbBGhover);
    font-size: var(--nearly-normal-text);
    /* font-weight: bold; */
    /* letter-spacing: 1px; */
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}


.chartTitleDesc {
user-select: text;
}
.chartDesc {
    /* color: #B3D0F3; */
    color: var(--main-theme-light-color);
    /* letter-spacing: 1px; */
    font-size: 14px;
    /* display: none; */
    text-transform: capitalize;
}

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

.forecastInfo {}

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

.ciSelectors {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    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;
}





.questionPage {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    /* padding-left: 40px; */
    user-select: text;
}

.innerQuestionPage {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insightTitle{
    font-size: 24px;
    /* display: flex; */
    align-items: center;
    -webkit-text-stroke: 1.5px;
    /* margin-bottom: 20px; */
}

.questionHeader{
    margin-top: 20px;
    /* display: flex; */
    /* flex-direction: row; */
    font-size: 22px;
    /* display: flex; */
    align-items: center;
    stroke: 1px;
    /* stroke-width: 1px; */
    -webkit-text-stroke: 1.5px;
    color: var(--dark-text);
    margin: 10px 0px;
    /* font-style: italic; */
    /* gap: 20px; */
}

.answerHeader{
    margin-top: 20px;
    /* display: flex; */
    /* flex-direction: row; */
    font-size: 20px;
    /* display: flex; */
    align-items: center;
    stroke: 1px;
    /* stroke-width: 1px; */
    -webkit-text-stroke: 1.0px;
    color: var(--dark-text);
    margin: 10px 0px;
    /* gap: 20px; */
}


/* .questionHeader div i{
    font-size: 44px;
} */




.questionFilters{
    display: flex;
    flex-direction: row;
    gap: 20px;
    /* margin-left: 64px; */
     margin-bottom: 20px;
   /* padding-bottom: 30px; */
    padding-bottom: 15px;
     /* border-bottom: 1px solid; */
     box-shadow: 0px 7px 4px -4px #073c5329;
}


.answerContent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-left: 64px; */
}


.answerContent img {
    max-width: 700px;
}


.reportContent {
    font-size: 15px;
    color: var(--main-theme-color);
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 10px; */
    margin-bottom: 30px;
    text-align: justify;
    line-height: 27px;
}

.reportContent img{
    position: relative;
    display: flex;
    width: 100%;
    /* max-width: 700; */
    margin: 30px 0px;
    max-width: none;
}
.reportContent h1{
    font-size: 22px !important;
    color: var(--dark-text) !important;
    -webkit-text-stroke: 1.0px;
    font-weight: normal;
}
.reportContent h2{
    font-size: 20px !important;
    color: var(--dark-text) !important;
    -webkit-text-stroke: 1.0px;
    font-weight: normal;
}
.reportContent h3{
    font-size: 18px !important;
    color: var(--dark-text) !important;
    -webkit-text-stroke: 1.0px;
    font-weight: normal;
}
.reportContent h4{
    font-size: 18px !important;
    color: var(--dark-text) !important;
    -webkit-text-stroke: 1.0px;
    font-weight: normal;
    margin-bottom: 6px;
}
.reportContent h5{
    font-size: 18px !important;
    color: var(--dark-text) !important;
    -webkit-text-stroke: 1.0px;
    font-weight: normal;
}
/* .answerContent img+div i {
    font-size: var(--subtitle-text);
    color: var(--main-theme-color);
} */

.reportContent a {
    font-size: 15px;
    color: #76A7B7;
    margin: 0px;
}

.reportContent p {
    font-size: 15px;
    color: var(--main-theme-color);
    margin: 0px;
}
.reportContent  ul li {
    font-size: 15px;
    color: var(--main-theme-color);
    margin: 0px;
}
.reportContent  ol li {
    font-size: 15px;
    color: var(--main-theme-color);
    margin: 0px;
}

.reportContent strong {
    font-size: 15px;
    color: var(--main-theme-color);
    margin: 0px;
    -webkit-text-stroke-width: 0.8px;
}

.reportContent b {
    font-size: 15px;
    color: var(--main-theme-color);
    margin: 0px;
    -webkit-text-stroke-width: 0.8px;
}



.caption {
    font-size: var(--normal-text);
    color: #76A7B7;
    margin: 0px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.caption i {
    font-size: var(--subtitle-text);
    color: #76A7B7;
    margin: 0px;
}





.accordion{
    position: relative;
    /* height: 400px; */
    /* background-color: #C2DAE4; */
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-radius: 8px;
}
.rootRound{
    position: relative;

    /* background-color: red; */
    border-radius: 8px;
    background-color: #C2DAE4;
}

.round{
    position: relative;
    display: none;
    flex-direction: column;
    /* background-color: red; */
}

.roundLabel{
    position: relative;
    background-color: #F1F9FD;
    display: flex;
    font-size: var(--medium-text);
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0px 3px 4px #00000042;
    align-items: center;
}

.roundLabel img{
margin-left: auto;
max-width: 16px;
}

.category{
    position: relative;
    /* background-color: green; */
}
.categoryLabel{
    position: relative;
    background-color: #C2DAE4;
    border-left: 4px solid #2E7B9C;
    display: flex;
    font-size: var(--medium-text);
    padding: 10px;
    margin: 10px 0px;
    /* margin-left: 10px; */
    /* box-shadow: 0px 3px 4px #0000002e; */
}

.insight{
    position: relative;
    /* background-color: blue; */
}
.insightButton{
    position: relative;
    background-color: #E2EFF5;
    border-left: 4px solid #2E7B9C;
    display: flex;
    padding: 18px;
    margin: 4px 0px;
    margin-left: 20px;
    cursor: pointer;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-right: 4px;
    font-size: var(--medium-text);
    transition: border-left 0.4s, background-color 0.4s;
}
.insightButton.active{
    position: relative;
    background-color: #ffffff;
    border-left: 8px solid #073C53;
}

.insightButton.active:hover{
    position: relative;
    background-color: #ffffff;
    border-left: 8px solid #073C53;
}

.insightButton:hover{
    position: relative;
    background-color: #ecf2f4;
    border-left: 6px solid #2E7B9C;
}

input[type=checkbox]:checked+.roundLabel+.round{
    display: flex;
    
}

.app-note{
    font-size: 13px !important;
}
.app-note:target{
    background-color: #effaff;
    border-radius: 8px;
    padding: 6px;
}

.app-reference {
    position: relative;
    bottom: 1ex;
    font-size: 80% !important;
}




.mobileSelector{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 60px;
    gap: 20px;
    display: none;
}
.mobileButton{
    width: 60px;
    height: 60px;
    background-color: red;
}
.insightTitleContainer{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.returnButtonMobile{
    display: flex;
    width: 30px;
    height: 60px;
    flex-direction: column;
    align-items: center;
    /* background-color: red; */
    justify-content: center;
    cursor: pointer;
}
.returnButtonMobile i{
    font-size: 30px;
    width: 100%;
    /* background-color: red; */
}

.explanation-box{
    background-color: #d3e6ee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.explanation-box p{
    font-size: 15px;
}

.explanation-box p+p{
    font-size: 12px;
}




/* MOBILE VERSION STYLE RULES -----------*/
/* smartphone -----------*/
.sidebar{
    display: flex;
    width: 100%;
    max-width: unset;
    min-width: 100%;
    }
.questionPage{
    /* padding-left: unset; */
    padding: 8px;
}
.dashboardLayout{
    display: none;
    width: 100%;
    /* border-top-left-radius: unset;
    border-bottom-left-radius: unset; */
}
.returnButtonMobile{
    display: flex;
}

/*tablet -----------*/
@media only screen and (min-width: 768px)  {
    .sidebar{
        display: flex !important;;
        width: unset;
        max-width: var(--sidebar-width);
        min-width: var(--sidebar-width);
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        }
        .questionPage{
            /* padding-left: 40px; */
            padding: 40px;
        }
        .dashboardLayout{
            display: flex !important;;
            width: 100%;
            border-top-left-radius: 0px;
            border-bottom-left-radius: 0px;
        }
        .returnButtonMobile{
            display: none;
        }

}


/*desktop -----------*/
@media only screen and (min-width: 1100px)  {
    .sidebar{
        display: flex !important;
        width: unset;
        max-width: var(--sidebar-width);
        min-width: var(--sidebar-width);
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        }
        .questionPage{
            padding-left: 40px;
            padding: 40px;
        }
        .dashboardLayout{
            display: flex !important;
            width: 100%;
            border-top-left-radius: 0px;
            border-bottom-left-radius: 0px;
        }
        .returnButtonMobile{
            display: none;
        }
}

/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */

