

/* Styles for tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    flex-wrap: wrap;
    gap: 5px;
}

.tab-button {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    margin-bottom: -2px;
}

.tab-button:hover {
    background-color: #e0e0e0;
    color: #333;
}

.tab-button.active {
    background-color: #fff;
    border-color: #e44d26;
    color: #e44d26;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    z-index: 1;
}

/* Styles for chemical panels */
.panels-container {
    display: flex;
    justify-content: center;
}

.chemical-panel {
    background-color: #fff;
    width: 100%;
   
    box-sizing: border-box;
}
h2.chemical-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

/* --- Legend Styles --- */
.legend {
    margin-bottom: 20px;
    font-size: 0.9em;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.legend p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.health-point-legend {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.health-point-legend.health-point {
    background: #e44d26; /* Strong evidence color (red) */
    height: 25px;
    width: 25px;
}


.health-point-legend.health-point-moderate {
    background: #febe11; /* Moderate evidence color (yellow) */
    height: 25px;
    width: 25px;
}

.note-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
.note-link:hover {
    text-decoration: underline;
}

/* --- Human Figures Grid --- */
.human-figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Responsive grid */
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding-bottom: 30px;
}
@media (max-width: 768px) {
    .human-figures-grid {
        gap: 60px;
    }
    .health-point-legend.health-point, .health-point-legend.health-point-moderate {
        height: 15px;
        width: 15px;
    }
    .modal-title {
        font-size: 19px;

    }
}
.human-figures-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 48px;
}
.figure-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* For absolute positioning of labels */
    padding-bottom: 20px; /* Space for the label below the figure */
    text-align: center; /* Center content within container */
}

.human-figure {
    width: 100%; /* Adjust as needed, will contain the img */
    max-width: 120px; /* Max width of the SVG */
    height: auto; /* Let content define height */
    position: relative; /* For positioning health labels relative to figure */
    display: flex; /* To center the image if smaller than max-width */
    justify-content: center;
    align-items: flex-end; /* Align figures to the bottom of their container */
    margin: 0 auto; /* Center the figure itself */
}
.health-label .health-point, .health-label .health-point-moderate{
    position: absolute !important;
    
}
.human-figure img {

    display: block; /* Remove extra space below image */
}
.human-figure .infant img {
    height: 140px;
    width: 80px;
}
.human-figure .child img {
    height: 140px;
    width: 80px;
}
.human-figure .adult-female img {
    height: 540px;
    width: 165px;
}
.human-figure .adult-female img {
    height: 567px;
    width: 173px;
}
.figure-label {
    margin-top: 10px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
    position: absolute;
    bottom: -60px;
}

/* Container for health outcome labels within each figure */
.health-outcomes-area {
    /* This div will serve as a flexible container below the figure for labels */
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the labels */
    gap: 8px; /* Space between labels */
    margin-top: 15px; /* Space between figure label and health outcomes */
    width: 100%; /* Ensure it takes full width of its container */
    position: absolute; /* Position relative to .figure-container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow clicks to pass through to labels */
}

.health-label {
    position: absolute;
    font-size: 11px;
    background: #ffffff85;
    padding: 2px 6px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: flex; /* Changed from inline-flex to flex for more layout control */
    align-items: center; /* Vertically center items (dot and text) */
    gap: 8px; /* Space between dot and text */
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s;
    pointer-events: auto;
}

.health-label:hover {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.health-label-text {
    white-space: nowrap; /* Ensures text does not wrap within the label */
    flex-grow: 1; /* Allows text to take available space in row layout */
}

.health-point, .health-point-moderate {
    width: 20px; /* Smaller health point inside label */
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0; /* Prevents the dot from shrinking */
    position: relative;
}

.health-point {
    background: #f4523e; /* Strong evidence color (red) */
}


.health-point-moderate {
    background: #febe11; /* Moderate evidence color (yellow) */
}

/* Positioning classes for the dot relative to the text label */
.health-label.dot-top {
    flex-direction: column;
    align-items: center; /* Horizontally center dot and text */
    gap: 2px; /* Smaller gap for vertical arrangement */
}

.health-label.dot-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2px;
}

.health-label.dot-right {
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
}

/* --- MODAL STYLES --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 25px;
    border-radius: 8px;
    width: 80%;
    max-width: 800x;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    font-size: 1em;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.modal-title {
    margin: 0;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.drawer-close:hover,
.drawer-close:focus {
    color: #333;
    text-decoration: none;
}

.modal p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.meta-count {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    font-style: italic;
    padding: 4px 15px;
    background: #f9dbcd;
    width: fit-content;
    border-radius: 4px;
}

.modal-cta-btn {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

.btn-primary {
    display: none; /* This button is hidden by default */
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
@media (max-width: 768px) {
    .human-figures-grid {
        gap: 60px;
    }
    .health-point-legend.health-point, .health-point-legend.health-point-moderate {
        height: 15px;
        width: 15px;
    }
    .modal-title {
        font-size: 19px;

    }
}

/* Specific Positioning for Bisphenols (BPA) - Health points positioning for different figures */
/* These positions are relative to the .human-figure container which now holds the SVG img */
#bisphenols-panel .infant .health-label.anogenital-distance-girls { top: 82px; left: -15px; }
#bisphenols-panel .infant .health-label.anogenital-distance-girls .health-point { top: -22px; left: 60px;}

#bisphenols-panel .child .health-label.cardiovascular-disease { top: 20%; right: 68px;}
#bisphenols-panel .child .health-label.cardiovascular-disease .health-point{ top: -1px; right: -30px;}
#bisphenols-panel .child .health-label.cardiovascular-disease .health-point-moderate{ top: -1px; right: -30px;}
#bisphenols-panel .child .health-label.obesity { top: 36%; left: 15px; }
#bisphenols-panel .child .health-label.obesity .health-point{ top:  1px; right: -24px; }
#bisphenols-panel .child .health-label.obesity .health-point-moderate{ top:  1px; right: -24px; }
#bisphenols-panel .child .health-label.waist-circumference { top: 44%; right: 56px; }
#bisphenols-panel .child .health-label.waist-circumference .health-point{ top:  1px; right: -27px; }
#bisphenols-panel .child .health-label.waist-circumference .health-point-moderate{ top:  1px; right: -27px; }

#bisphenols-panel .adult-female .health-label.hypertension { top: 70px; right: 55px; }
#bisphenols-panel .adult-female .health-label.hypertension .health-point { top: 1px; right: -25px; }
#bisphenols-panel .adult-female .health-label.hypertension .health-point-moderate { top: 1px; right: -25px; }
#bisphenols-panel .adult-female .health-label.cardiovascular-disease { top: 98px; right: 55px; }
#bisphenols-panel .adult-female .health-label.cardiovascular-disease .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.cardiovascular-disease .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.type-2-diabetes { top: 127px; right: 77px; }
#bisphenols-panel .adult-female .health-label.type-2-diabetes .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.type-2-diabetes .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.insulin-resistance { top: 159px; right: 77px; }
#bisphenols-panel .adult-female .health-label.insulin-resistance .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.insulin-resistance .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.obesity { top: 192px; right: 55px; }
#bisphenols-panel .adult-female .health-label.obesity .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.obesity .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.waist-circumference { top: 222px; right: 40px; }
#bisphenols-panel .adult-female .health-label.waist-circumference .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.waist-circumference .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.polycystic-ovarian-syndrome { top:280px; right: 28px; }
#bisphenols-panel .adult-female .health-label.polycystic-ovarian-syndrome .health-point{ top:-34px; right: 21px; }
#bisphenols-panel .adult-female .health-label.polycystic-ovarian-syndrome .health-point-moderate{ top:-34px; right: 21px; }

#bisphenols-panel .adult-male .health-label.hypertension { top: 70px; right: 55px;  }
#bisphenols-panel .adult-male .health-label.hypertension .health-point { top: 1px; right: -25px; }
#bisphenols-panel .adult-male .health-label.hypertension .health-point-moderate { top: 1px; right: -25px; }
#bisphenols-panel .adult-male .health-label.cardiovascular-disease {  top: 98px; right: 55px; }
#bisphenols-panel .adult-male .health-label.cardiovascular-disease .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.cardiovascular-disease .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.type-2-diabetes { top: 134px; right: 77px;}
#bisphenols-panel .adult-male .health-label.type-2-diabetes .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.type-2-diabetes .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.insulin-resistance { top: 164px; right: 77px; }
#bisphenols-panel .adult-male .health-label.insulin-resistance .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.insulin-resistance .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.obesity { top: 206px; right: 55px; }
#bisphenols-panel .adult-male .health-label.obesity .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.obesity .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.waist-circumference {top: 240px; right: 40px; }
#bisphenols-panel .adult-male .health-label.waist-circumference .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.waist-circumference .health-point-moderate{ top: 1px; right:  -25px; }





/* Specific Positioning for Phthalates - Health points positioning for different figures */
#phthalates-panel .infant .health-label.miscarriage { top: -68px; left: 0px;}
#phthalates-panel .infant .health-label.miscarriage .health-point{ top: 27px; left: 27px;}
#phthalates-panel .infant .health-label.miscarriage .health-point-moderate{ top: 27px; left: 27px;}
#phthalates-panel .infant .health-label.birth-weight-decreased { top: 10px;left: -10px; }
#phthalates-panel .infant .health-label.birth-weight-decreased .health-point { top:28px; left: 29px;}
#phthalates-panel .infant .health-label.birth-weight-decreased .health-point-moderate{ top: 28px; left: 29px;}
#phthalates-panel .infant .health-label.anogenital-distance-girls { top: 82px; left: -15px; }
#phthalates-panel .infant .health-label.anogenital-distance-girls .health-point { top: -22px; left: 60px;}
#phthalates-panel .infant .health-label.anogenital-distance-girls .health-point-moderate { top: -22px; left: 60px;}

#phthalates-panel .child .health-label.puberty-girls { top: -58px; left: 20px; }
#phthalates-panel .child .health-label.puberty-girls .health-point{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.puberty-girls .health-point-moderate{ top: 32px; left: 32px;}
#phthalates-panel .child .health-label.iq-cognitive-development { top: -1px; left: -125px; }
#phthalates-panel .child .health-label.iq-cognitive-development .health-point{ top: 0px; right: -26px;}
#phthalates-panel .child .health-label.iq-cognitive-development .health-point-moderate{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.fine-motor-psychomotor-development { top: -13px; left: 101px;text-align:left;width: 142px; white-space: normal; }
#phthalates-panel .child .health-label.fine-motor-psychomotor-development .health-point{ top: 10px;left: -27px;}
#phthalates-panel .child .health-label.fine-motor-psychomotor-development .health-point-moderate{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.thyroid-functions { top: 36px; left: 88px; }
#phthalates-panel .child .health-label.thyroid-functions  .health-point{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.thyroid-functions  .health-point-moderate{ top:-1px; left: -28px;}
#phthalates-panel .child .health-label.blood-pressure { top: 68px; left: 89px; }
#phthalates-panel .child .health-label.blood-pressure .health-point{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.blood-pressure .health-point-moderate{ top: 0px; left: -27px;}
#phthalates-panel .child .health-label.asthma { top: 80px; left: -21px; }
#phthalates-panel .child .health-label.asthma.health-point{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.asthma .health-point{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.asthma .health-point-moderate{ top: -1px; right: -25px;}
#phthalates-panel .child .health-label.insulin-resistance { top: 107px; left: 94px; }
#phthalates-panel .child .health-label.insulin-resistance .health-point{ top: -1px; left: -30px;}
#phthalates-panel .child .health-label.insulin-resistance .health-point-moderate{ top: -1px; left: -30px;}
#phthalates-panel .child .health-label.waist-circumference { top: 44%; right: 56px; }
#phthalates-panel .child .health-label.waist-circumference .health-point{ top:  1px; right: -27px; }
#phthalates-panel .child .health-label.waist-circumference .health-point-moderate{ top:  1px; right: -27px; }


#phthalates-panel .adult-female .health-label.thyroid-functions { top: 55px; right: 64px; }
#phthalates-panel .adult-female .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#phthalates-panel .adult-female .health-label.insulin-resistance { top: 159px; right: 77px; }
#phthalates-panel .adult-female .health-label.insulin-resistance .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.insulin-resistance .health-point-moderate{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.obesity { top: 192px; right: 55px; }
#phthalates-panel .adult-female .health-label.obesity .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.obesity .health-point-moderate{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.waist-circumference  { top: 222px; right: 40px; }
#phthalates-panel .adult-female .health-label.waist-circumference .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.waist-circumference .health-point-moderate{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.endometriosis { top:280px; right: 28px; }
#phthalates-panel .adult-female .health-label.endometriosis .health-point{ top:-34px; right: 21px; }
#phthalates-panel .adult-female .health-label.endometriosis .health-point-moderate{ top:-34px; right: 21px; }

#phthalates-panel .adult-male .health-label.thyroid-functions { top: 48px; right: 65px; }
#phthalates-panel .adult-male .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#phthalates-panel .adult-male .health-label.insulin-resistance { top: 164px; right: 77px; }
#phthalates-panel .adult-male .health-label.insulin-resistance .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.insulin-resistance .health-point-moderate{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.obesity { top: 206px; right: 55px; }
#phthalates-panel .adult-male .health-label.obesity .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.obesity .health-point-moderate{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.waist-circumference {top: 240px; right: 40px; }
#phthalates-panel .adult-male .health-label.waist-circumference .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.waist-circumference .health-point-moderate{ top: 1px; right: -25px; }
#phthalates-panel .adult-male .health-label.sperm-quality-dna-damage { top: 313px; right: 0px; }
#phthalates-panel .adult-male .health-label.sperm-quality-dna-damage .health-point{ top:-40px; right: 50px; }
#phthalates-panel .adult-male .health-label.sperm-quality-dna-damage .health-point-moderate{ top:-40px; right: 50px; }
#phthalates-panel .adult-male .health-label.sperm-concentration { top: 347px; right: 28px; }
#phthalates-panel .adult-male .health-label.sperm-concentration .health-point{ top:-47px; right: 50px;}
#phthalates-panel .adult-male .health-label.sperm-concentration .health-point-moderate{ top:-76px; right: 9px; border: 1px solid #fff;}



/* Specific Positioning for PCBs - Health points positioning for different figures*/
#pcbs-panel .infant .health-label.birth-weight-decreased { top: 10px;left: -10px; }
#pcbs-panel .infant .health-label.birth-weight-decreased .health-point { top:28px; left: 29px;}
#pcbs-panel .infant .health-label.birth-weight-decreased .health-point-moderate{ top: 28px; left: 29px;}

#pcbs-panel .child .health-label.non-hodgkins-lymphoma { top: -52px; left: -6px; }
#pcbs-panel .child .health-label.non-hodgkins-lymphoma .health-point{ top: 30px; left: 56px;}
#pcbs-panel .child .health-label.non-hodgkins-lymphoma .health-point-moderate{ top: 30px; left: 56px;}
#pcbs-panel .child .health-label.cardiovascular-disease { top: 20%; right: 68px;}
#pcbs-panel .child .health-label.cardiovascular-disease .health-point{ top: -1px; right: -30px;}
#pcbs-panel .child .health-label.cardiovascular-disease .health-point-moderate{ top: -1px; right: -30px;}
#pcbs-panel .child .health-label.bronchitis { top: 94px; left: -30px;}
#pcbs-panel .child .health-label.bronchitis .health-point{ top: -1px; right: -30px;}
#pcbs-panel .child .health-label.bronchitis .health-point-moderate{ top: -1px; right: -30px;}

#pcbs-panel .adult-female .health-label.non-hodgkins-lymphoma { top: -52px; left: -6px; }
#pcbs-panel .adult-female .health-label.non-hodgkins-lymphoma .health-point{ top: 30px; left: 56px;}
#pcbs-panel .adult-female .health-label.non-hodgkins-lymphoma .health-point-moderate{ top: 30px; left: 56px;}
#pcbs-panel .adult-female .health-label.malignant-melanoma { top: -16px; left: 85px; }
#pcbs-panel .adult-female .health-label.malignant-melanoma .health-point { top: -3px; left: -23px;border: 1px solid #fff; opacity:.5 }
#pcbs-panel .adult-female .health-label.malignant-melanoma  .health-point-moderate { top: 1px; right: -25px; }
#pcbs-panel .adult-female .health-label.total-cancer-deaths { top:-24px; right: 83px;}
#pcbs-panel .adult-female .health-label.total-cancer-deaths .health-point{ top: 6px; right: -23px;  border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-female .health-label.total-cancer-deaths .health-point-moderate{ top: 30px; left: 56px;}
#pcbs-panel .adult-female .health-label.breast-cancer { top: 98px; left: -61px; }
#pcbs-panel .adult-female .health-label.breast-cancer .health-point{ top: 1px; right:  -25px; }
#pcbs-panel .adult-female .health-label.breast-cancer .health-point-moderate { top: 1px; right:  -30px; }
#pcbs-panel .adult-female .health-label.liver-cancer { top:155px; left: -44px; }
#pcbs-panel .adult-female .health-label.liver-cancer .health-point{ top: 1px; right:  -25px; }
#pcbs-panel .adult-female .health-label.lliver-cancer.health-point-moderate { top: 1px; right:  -25px; }
#pcbs-panel .adult-female .health-label.hypertension { top: 70px; right: 55px; }
#pcbs-panel .adult-female .health-label.hypertension .health-point { top: 1px; right: -25px; }
#pcbs-panel .adult-female .health-label.hypertension .health-point-moderate { top: 1px; right: -25px; }
#pcbs-panel .adult-female .health-label.cardiovascular-disease { top: 98px; left: 87px; }
#pcbs-panel .adult-female .health-label.cardiovascular-disease .health-point{ top: 1px; left: -22px; }
#pcbs-panel .adult-female .health-label.cardiovascular-disease .health-point-moderate{ top: 1px; right: -25px; }
#pcbs-panel .adult-female .health-label.lung-cancer { top: 127px; left: 97px; }
#pcbs-panel .adult-female .health-label.lung-cancer .health-point { top: 1px; left: -24px; }
#pcbs-panel .adult-female .health-label.lung-cancer .health-point-moderate { top: 1px; right: -25px; }
#pcbs-panel .adult-female .health-label.hepatic-disease { top: 156px;left: 66px; }
#pcbs-panel .adult-female .health-label.hepatic-disease .health-point { top: 1px; left: -24px; border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-female .health-label.hepatic-disease .health-point-moderate { top: 1px; right: -25px; border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-female .health-label.type-2-diabetes { top: 127px; right: 77px; }
#pcbs-panel .adult-female .health-label.type-2-diabetes .health-point{ top: 1px; right:  -25px; }
#pcbs-panel .adult-female .health-label.type-2-diabetes .health-point-moderate{ top: 1px; right:  -25px; }
#pcbs-panel .adult-female .health-label.endometriosis { top: 280px; right: 28px; }
#pcbs-panel .adult-female .health-label.endometriosis .health-point{ top:-34px; right: 21px; }
#pcbs-panel .adult-female .health-label.endometriosis .health-point-moderate{ top:-34px; right: 21px; }

#pcbs-panel .adult-male .health-label.non-hodgkins-lymphoma { top: -52px; left: -6px; }
#pcbs-panel .adult-male .health-label.non-hodgkins-lymphoma .health-point{ top: 30px; left: 56px;}
#pcbs-panel .adult-male .health-label.non-hodgkins-lymphoma .health-point-moderate{ top: 30px; left: 56px;}
#pcbs-panel .adult-male .health-label.malignant-melanoma { top: -16px; left: 85px; }
#pcbs-panel .adult-male .health-label.malignant-melanoma .health-point { top: -3px; left: -23px;border: 1px solid #fff; opacity:.5 }
#pcbs-panel .adult-male .health-label.malignant-melanoma  .health-point-moderate { top: 1px; right: -25px; }
#pcbs-panel .adult-male .health-label.total-cancer-deaths { top:-24px; right: 83px;}
#pcbs-panel .adult-male .health-label.total-cancer-deaths .health-point{ top: 6px; right: -23px;  border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-male .health-label.total-cancer-deaths .health-point-moderate{ top: 30px; left: 56px;}
#pcbs-panel .adult-male .health-label.hypertension { top: 70px; right: 55px;  }
#pcbs-panel .adult-male .health-label.hypertension .health-point { top: 1px; right: -25px; }
#pcbs-panel .adult-male .health-label.hypertension .health-point-moderate { top: 1px; right: -25px; }
#pcbs-panel .adult-male .health-label.cardiovascular-disease { top: 98px; right: 55px; }
#pcbs-panel .adult-male .health-label.cardiovascular-disease .health-point{ top: 1px; right:  -25px; }
#pcbs-panel .adult-male .health-label.cardiovascular-disease .health-point-moderate{ top: 1px; right:  -25px; }
#pcbs-panel .adult-male .health-label.lung-cancer { top: 123px; left: 108px; }
#pcbs-panel .adult-male .health-label.lung-cancer .health-point { top: 1px; left: -24px; }
#pcbs-panel .adult-male .health-label.lung-cancer .health-point-moderate { top: 1px; right: -25px; }
#pcbs-panel .adult-male .health-label.liver-cancer { top:155px; left: -44px; }
#pcbs-panel .adult-male .health-label.liver-cancer .health-point{ top: 1px; right:  -25px; }
#pcbs-panel .adult-male .health-label.lliver-cancer.health-point-moderate { top: 1px; right:  -25px; }
#pcbs-panel .adult-male .health-label.hepatic-disease {  top: 177px;left: 63px; }
#pcbs-panel .adult-male .health-label.hepatic-disease .health-point { top: -15px; left: -20px; border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-male .health-label.hepatic-disease .health-point-moderate { top: -15px; left: -20px; border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-male .health-label.type-2-diabetes { top: 148px; left: 89px;}
#pcbs-panel .adult-male .health-label.type-2-diabetes .health-point{ top: 1px; left:  -25px; }
#pcbs-panel .adult-male .health-label.type-2-diabetes .health-point-moderate{ top: 1px; right:  -25px; }


/* Specific Positioning for PBDEs - Health points positioning for different figures*/
#pbdes-panel .infant .health-label.birth-weight-decreased { top: 70%; left: 10px; }

#pbdes-panel .child .health-label.iq-cognitive-development { top: 6%; left: -101px; }
#pbdes-panel .child .health-label.thyroid-function { top: 18%; left: 110px; }

#pbdes-panel .adult-female .health-label.thyroid-function { top: 12%; right: 85px; }

#pbdes-panel .adult-male .health-label.thyroid-function { top: 12%; right: 89px; }
#pbdes-panel .adult-male .health-label.cardiovascular-disease { top: 20%; right: 77px; }

/* Specific Positioning for PFAS - Health points positioning for different figures*/
#pfas-panel .infant .health-label.birth-length-decreased { top: 60%; left: 5px; }
#pfas-panel .infant .health-label.birth-weight-decreased { top: 70%; left: 10px; }

#pfas-panel .child .health-label.adhd-girls { top: 5%; left: 10px; }
#pfas-panel .child .health-label.allergic-rhinitis-hay-fever { top: 15%; left: 30px; }
#pfas-panel .child .health-label.obesity { top: 39%; left: 39px; }
#pfas-panel .child .health-label.bmi { top: 42%; left: -20px; }

#pfas-panel .adult-female .health-label.thyroid-function { top: 12%; right: 85px; }

#pfas-panel .adult-male .health-label.thyroid-function { top: 12%; right: 89px; }