

/* 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;
    padding: 10px 20px;
}

.chemical-panel {
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

h2.chemical-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #333;
    margin-block-end: -.75em;
}

h2.chemical-title img {
    width: 22px;
    opacity: .4;
    position: relative;
    top: 3px;
}

h2.chemical-title img:hover {
    width: 22px;
    opacity: .7;
    position: relative;
    top: 3px;
}

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

.health-legend {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 0px;

    margin: 0 0 0 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    background: #feff73;
    width: fit-content;
    padding: 2px 12px;
    border-left: 3px solid #fadc3a;

}

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

.legend .pregnancy-related {
    margin: 0 0 0 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    background: #d6fbff;
    width: fit-content;
    padding: 2px 12px;
    border-left: 3px solid #8ad9e2;
}

.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: 22px;
    width: 22px;
}


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

.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: 400;
    color: #555;
    font-size: 14px;
    position: absolute;
    bottom: -60px;
    padding: 3px 10px;
    width: 178px;
    background: #efefef;
}

.human-figure img.fetus {
    position: absolute;
    top: 222px;
    display: none;
}


/* 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 7px rgba(0, 0, 0, 0.4);
    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) */
}

.health-label:hover .health-point,
.health-label:hover .health-point-moderate {
    box-shadow: 0 1px 10px rgba(8, 8, 8, 0.4);
    border: 1px solid #fff;
}

/* 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;
    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: .95em;
    color: #555;
    margin-bottom: 25px;
    padding: 2px 15px;
    background: #f9dbcd;
    width: fit-content;
    border-radius: 4px;
    font-weight: 600;
}

.demographic {
    font-size: .85rem;
    background: #efefef;
    padding: 2px 15px;
    border-radius: 44px;
    font-weight: 400;
    width: fit-content;

}

.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;
}
.pill-group{
    display:flex;
    gap: 6px
}
.pill-demographic, .pill-chemical, .pill-healthoutcome {
    font-size: .85rem;
    background: #e9e9e9;
    padding: 2px 10px;
    border-radius: 44px;
    font-weight: 400;
    width: fit-content;
}
.pill-chemical{
    background: #def5d8;
}
.pill-healthoutcome {
    background: #fff2cf;
}

@media (max-width: 768px) {
    .human-figures-grid {
        gap: 80px;
        padding-top: 84px;
    }

    .health-point-legend.health-point,
    .health-point-legend.health-point-moderate {
        height: 15px;
        width: 15px;
    }

    .modal-title {
        font-size: 16px;
        font-weight: 600;
        align-items: start;

    }

    .modal-content {
        font-size: .9em;
    }

    .modal .health-point,
    .modal .health-point-moderate {
        width: 14px;
        height: 14px;
        margin-top: 5px;
    }

    .legend .pregnancy-related {
        margin: 0 0 0 18px;
    }

    .legend {
        margin-top: 16px;
    }
    .pill-group{
        display:flex;
        gap: 6px;
        flex-direction: column;
    }
}
/* 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.gestational-age-decreased{ top: -45px; left: -10px; background: #d6fbff; }
#bisphenols-panel .infant .health-label.gestational-age-decreased .health-point{ top: 0px; left: -27px;}
#bisphenols-panel .infant .health-label.gestational-age-decreased .health-point-moderate{ top: 0px; left: -27px;}
#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 .infant .health-label.asthma-wheeze-and-bronchitis { top: 21px;left: 45px; }
#bisphenols-panel .infant .health-label.asthma-wheeze-and-bronchitis .health-point { top:8px; left: -29px;}
#bisphenols-panel .infant .health-label.asthma-wheeze-and-bronchitis .health-point-moderate{ top:8px; left: -29px;}

#bisphenols-panel .child .health-label.adhd { top:-50px;left: 40px; }
#bisphenols-panel .child .health-label.adhd .health-point{ top: 30px; left: 10px;}
#bisphenols-panel .child .health-label.adhd .health-point-moderate{ top: 30px; left: 10px;}
#bisphenols-panel .child .health-label.asthma-wheeze-and-bronchitis { top: 90px; right: 68px;}
#bisphenols-panel .child .health-label.asthma-wheeze-and-bronchitis .health-point{ top: -1px; right: -30px;}
#bisphenols-panel .child .health-label.asthma-wheeze-and-bronchitis .health-point-moderate{ top: -22px; right: -2px;}

#bisphenols-panel .child .health-label.kidney-disease-and-function { top: 116px; right: 68px;}
#bisphenols-panel .child .health-label.kidney-disease-and-function .health-point{ top: -20px; right: -30px;}
#bisphenols-panel .child .health-label.kidney-disease-and-function .health-point-moderate{ top: -20px; right: -30px;}

#bisphenols-panel .child .health-label.cardiovascular-disease { top: 68px; left: 89px; }
#bisphenols-panel .child .health-label.cardiovascular-disease .health-point{ top: -1px; left: -27px;}
#bisphenols-panel .child .health-label.cardiovascular-disease .health-point-moderate{ top: 0px; left: -27px;}
#bisphenols-panel .child .health-label.obesity { top: 131px; right: -23px; }
#bisphenols-panel .child .health-label.obesity .health-point{ top:  1px; left: -28px; }
#bisphenols-panel .child .health-label.obesity .health-point-moderate{ top:  1px; left: -28px; }
#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 .child .health-label.inflammatory-markers { top:185px; right: 72px; }
#bisphenols-panel .child .health-label.inflammatory-markers .health-point{ top: 25px; right:  0px; }
#bisphenols-panel .child .health-label.inflammatory-markers .health-point-moderate { top: 25px; right:  0px; }

#bisphenols-panel .adult-female .health-label.thyroid-functions { top: 55px; right: 64px; }
#bisphenols-panel .adult-female .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#bisphenols-panel .adult-female .health-label.hypertension { top: 75px; 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:225px; right: -6px; }
#bisphenols-panel .adult-female .health-label.obesity .health-point{ top: -26px; left: -8px; }
#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; z-index: 20;}
#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-ovary-syndrome-pcos { top:275px;right: -70px; }
#bisphenols-panel .adult-female .health-label.polycystic-ovary-syndrome-pcos .health-point{ top: -53px; left: 31px; }
#bisphenols-panel .adult-female .health-label.polycystic-ovary-syndrome-pcos .health-point-moderate{ top: -53px; left: 31px; }
#bisphenols-panel .adult-female .health-label.kidney-disease-and-function{ top:192px; right: 55px; }
#bisphenols-panel .adult-female .health-label.kidney-disease-and-function .health-point{ top: -13px; right: -21px; }
#bisphenols-panel .adult-female .health-label.kidney-disease-and-function .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-female .health-label.inflammatory-markers { top:247px; right: 95px; }
#bisphenols-panel .adult-female .health-label.inflammatory-markers .health-point{ top: 25px; right:  29px; }
#bisphenols-panel .adult-female .health-label.inflammatory-markers .health-point-moderate { top: 25px; right:  29px; }

#bisphenols-panel .adult-male .health-label.thyroid-functions { top: 48px; right: 65px; }
#bisphenols-panel .adult-male .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#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; }
#bisphenols-panel .adult-male .health-label.kidney-disease-and-function{ top: 231px; right: 55px; }
#bisphenols-panel .adult-male .health-label.kidney-disease-and-function .health-point{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.kidney-disease-and-function .health-point-moderate{ top: 1px; right:  -25px; }
#bisphenols-panel .adult-male .health-label.sperm-quality { top: 313px; right: 0px; }
#bisphenols-panel .adult-male .health-label.sperm-quality .health-point{ top:-40px; right: 50px; }
#bisphenols-panel .adult-male .health-label.sperm-quality .health-point-moderate{ top:-40px; right: 50px; }
#bisphenols-panel .adult-male .health-label.inflammatory-markers { top:269px; right: 95px; }
#bisphenols-panel .adult-male .health-label.inflammatory-markers .health-point{ top: 25px; right:  29px; }
#bisphenols-panel .adult-male .health-label.inflammatory-markers .health-point-moderate { top: 25px; right:  29px; }





/* Specific Positioning for Phthalates - Health points positioning for different figures */
#phthalates-panel .infant .health-label.gestational-age-decreased { top: -45px; left: -10px; background: #d6fbff; }
#phthalates-panel .infant .health-label.gestational-age-decreased .health-point{ top: 0px; left: -27px;}
#phthalates-panel .infant .health-label.gestational-age-decreased .health-point-moderate{ top: 0px; left: -27px;}
#phthalates-panel .infant .health-label.birth-weight-decreased { top: 35px;left: 50px; background: #d6fbff; }
#phthalates-panel .infant .health-label.birth-weight-decreased .health-point { top:8px; left: -29px;}
#phthalates-panel .infant .health-label.birth-weight-decreased .health-point-moderate{ top: 8px; left: -29px;}
#phthalates-panel .infant .health-label.anogenital-distance-boys { top: 82px; left: -15px; }
#phthalates-panel .infant .health-label.anogenital-distance-boys .health-point { top: -22px; left: 60px;}
#phthalates-panel .infant .health-label.atopic-dermatitis { top:23px; right: 85px; }
#phthalates-panel .infant .health-label.atopic-dermatitis .health-point{ top:0px; right:  -25px; }
#phthalates-panel .infant .health-label.atopic-dermatitis .health-point-moderate { top: 0px; right:  -25px; }
#phthalates-panel .infant .health-label.eczema { top: -3px; left: 64px}
#phthalates-panel .infant .health-label.eczema .health-point{ top: -1px; left: -30px;}
#phthalates-panel .infant .health-label.eczema .health-point-moderate{ top: -1px; left: -30px;}

#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: -1px; right: -30px;}
#phthalates-panel .child .health-label.iq-cognitive-development .health-point-moderate{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.fine-motorpsychomotor-development { top: -13px; left: 99px;text-align:left;width: 142px; white-space: normal; }
#phthalates-panel .child .health-label.fine-motorpsychomotor-development .health-point{ top: 10px;left: -27px;}
#phthalates-panel .child .health-label.fine-motorpsychomotor-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: -30px;}
#phthalates-panel .child .health-label.asthma-wheeze-and-bronchitis { top: 90px; right: 68px;}
#phthalates-panel .child .health-label.asthma-wheeze-and-bronchitis .health-point{ top: -1px; right: -30px;}
#phthalates-panel .child .health-label.asthma-wheeze-and-bronchitis .health-point-moderate{ top: -22px; right: -2px;}
#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.obesity { top: 131px; right: -23px; }
#phthalates-panel .child .health-label.obesity .health-point{ top:  1px; right: -24px; }
#phthalates-panel .child .health-label.obesity .health-point-moderate{ top:  1px; left: -28px; }
#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 .child .health-label.atopic-dermatitis { top:130px; right: 85px; }
#phthalates-panel .child .health-label.atopic-dermatitis .health-point{ top:0px; right:  -25px; }
#phthalates-panel .child .health-label.atopic-dermatitis .health-point-moderate { top: 0px; right:  -25px; }
#phthalates-panel .child .health-label.eczema { top: 187px; left: 98px; }
#phthalates-panel .child .health-label.eczema .health-point{ top: -1px; left: -30px;}
#phthalates-panel .child .health-label.eczema .health-point-moderate{ top: -1px; left: -30px;}
#phthalates-panel .child .health-label.inflammatory-markers { top:185px; right: 72px; }
#phthalates-panel .child .health-label.inflammatory-markers .health-point{ top: 25px; right:  0px; }
#phthalates-panel .child .health-label.inflammatory-markers .health-point-moderate { top: 25px; right:  0px; }


#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.hypertensive-disorders-of-pregnancy { top: 98px; right: 44px; background: #d6fbff;}
#phthalates-panel .adult-female .health-label.hypertensive-disorders-of-pregnancy .health-point{ top: 1px; right: -25px; }
#phthalates-panel .adult-female .health-label.hypertensive-disorders-of-pregnancy .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; z-index: 20; }
#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: -40px; right: 21px;  }
#phthalates-panel .adult-female .health-label.endometriosis .health-point-moderate{ top:-40px; right: 21px;  }
#phthalates-panel .adult-female .health-label.sperm-concentration:hover .health-point-moderate{ z-index: 44; }
#phthalates-panel .adult-female .health-label.type-2-diabetes { top: 127px; right: 77px; }
#phthalates-panel .adult-female .health-label.type-2-diabetes .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.type-2-diabetes .health-point-moderate{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.gestational-diabetes-mellitus{ top: 127px; left: 77px; background: #d6fbff;}
#phthalates-panel .adult-female .health-label.gestational-diabetes-mellitus .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-female .health-label.gestational-diabetes-mellitus .health-point-moderate{ top: 9px; left:  -27px; border: 1px solid #fff; opacity:.7 }
#phthalates-panel .adult-female .health-label.gestational-diabetes-mellitus:hover .health-point-moderate{ opacity: 1}
#phthalates-panel .adult-female .health-label.miscarriage { top:219px; right: 85px; background: #d6fbff; }
#phthalates-panel .adult-female .health-label.miscarriage .health-point{ top: 0px; right: -21px; /*border: 1px solid #fff; opacity:.6 */  }
#phthalates-panel .adult-female .health-label.miscarriage .health-point-moderate{ top:0px; right: -21px; /*border: 1px solid #fff; opacity:.6 */  }
#phthalates-panel .adult-female .health-label.miscarriage:hover .health-point{ opacity: 1 }
#phthalates-panel .adult-female .health-label.inflammatory-markers { top:247px; right: 95px; }
#phthalates-panel .adult-female .health-label.inflammatory-markers .health-point{ top: 25px; right:  29px; }
#phthalates-panel .adult-female .health-label.inflammatory-markers .health-point-moderate { top: 25px; right:  29px; }


#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.cardiovascular-disease { top: 98px; right: 55px; }
#phthalates-panel .adult-male .health-label.cardiovascular-disease .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.cardiovascular-disease .health-point-moderate{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.insulin-resistance { top: 179px; right: 77px; }
#phthalates-panel .adult-male .health-label.insulin-resistance .health-point{ top: 8px; right: -25px; }
#phthalates-panel .adult-male .health-label.insulin-resistance .health-point-moderate{ top: 1px; right:  -12px; }
#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 { top: 313px; right: 0px; }
#phthalates-panel .adult-male .health-label.sperm-quality .health-point{ top:-40px; right: 50px; }
#phthalates-panel .adult-male .health-label.sperm-quality .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; opacity:.5 }
#phthalates-panel .adult-male .health-label.sperm-concentration:hover .health-point-moderate{ opacity:1 }
#phthalates-panel .adult-male .health-label.type-2-diabetes { top: 134px; right: 77px;}
#phthalates-panel .adult-male .health-label.type-2-diabetes .health-point{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.type-2-diabetes .health-point-moderate{ top: 1px; right:  -25px; }
#phthalates-panel .adult-male .health-label.inflammatory-markers { top:269px; right: 95px; }
#phthalates-panel .adult-male .health-label.inflammatory-markers .health-point{ top: 25px; right:  29px; }
#phthalates-panel .adult-male .health-label.inflammatory-markers .health-point-moderate { top: 25px; right:  29px; }



/* Specific Positioning for PCBs - Health points positioning for different figures*/
#pcbs-panel .infant .health-label.birth-weight-decreased { top: 43px;left: 58px; background: #d6fbff; }
#pcbs-panel .infant .health-label.birth-weight-decreased .health-point { top:8px; left: -32px;}
#pcbs-panel .infant .health-label.birth-weight-decreased .health-point-moderate{ top:8px; left: -32px;}
#pcbs-panel .infant .health-label.asthma-wheeze-and-bronchitis { top: 21px;left: 45px; }
#pcbs-panel .infant .health-label.asthma-wheeze-and-bronchitis .health-point { top:8px; left: -29px;}
#pcbs-panel .infant .health-label.asthma-wheeze-and-bronchitis .health-point-moderate{ top:8px; 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.obesity {  top: 131px; right: -23px; }
#pcbs-panel .child .health-label.obesity .health-point{ top:  1px; left: -28px; }
#pcbs-panel .child .health-label.obesity .health-point-moderate{ top:  1px; left: -28px; }
#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 .child .health-label.autism-spectrum-disorder { top: -1px; left: -125px; }
#pcbs-panel .child .health-label.autism-spectrum-disorder .health-point{ top: -1px; right: -30px;}
#pcbs-panel .child .health-label.autism-spectrum-disorder .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.thyroid-functions { top: 55px; right: 64px; }
#pcbs-panel .adult-female .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#pcbs-panel .adult-female .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#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:hover .health-point { opacity: 1;}
#pcbs-panel .adult-female .health-label.malignant-melanoma .health-point-moderate { top: 1px; right: -25px; border: 1px solid #fff; opacity:.5 }
#pcbs-panel .adult-female .health-label.malignant-melanoma:hover .health-point-moderate { opacity: 1;}
#pcbs-panel .adult-female .health-label.all-cause-mortality{ top:11px; right: 83px;}
#pcbs-panel .adult-female .health-label.all-cause-mortality .health-point{ top: 0px; right: -25px;  }
#pcbs-panel .adult-female .health-label.all-cause-mortality .health-point-moderate{ top:  0px; right: -25px;}
#pcbs-panel .adult-female .health-label.cancer-mortality { top:-24px; right: 83px;}
#pcbs-panel .adult-female .health-label.cancer-mortality .health-point{ top: 6px; right: -23px;  border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-female .health-label.cancer-mortality:hover .health-point { opacity: 1;}
#pcbs-panel .adult-female .health-label.cancer-mortality .health-point-moderate{ top: 30px; left: 56px; border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-female .health-label.cancer-mortality:hover .health-point-moderate { opacity: 1;}
#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:174px; left: -44px; }
#pcbs-panel .adult-female .health-label.liver-cancer .health-point{ top: -7px; right:  -30px; }
#pcbs-panel .adult-female .health-label.liver-cancer.health-point-moderate { top: -7px; right:  -30px; }
#pcbs-panel .adult-female .health-label.insulin-resistance { top: 150px; right: 77px; }
#pcbs-panel .adult-female .health-label.insulin-resistance .health-point{ top: -14px; right:  -25px; border: 1px solid #fff; opacity:.6 }
#pcbs-panel .adult-female .health-label.insulin-resistance .health-point-moderate{ top: -14px; right:  -25px; border: 1px solid #fff; opacity:.6  }
#pcbs-panel .adult-female .health-label.insulin-resistance:hover .health-point-moderate{opacity: 1 }
#pcbs-panel .adult-female .health-label.hypertension { top: 75px; right: 55px; }
#pcbs-panel .adult-female .health-label.hypertension .health-point { top: 0px; right: -25px; }
#pcbs-panel .adult-female .health-label.hypertension .health-point-moderate { top: -14px; 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:hover .health-point { opacity: 1}
#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.hepatic-disease:hover .health-point-moderate { opacity: 1}
#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:hover .health-point{ opacity: 1}
#pcbs-panel .adult-female .health-label.type-2-diabetes .health-point-moderate{ top: 1px; right:  -25px; }
#pcbs-panel .adult-female .health-label.type-2-diabetes:hover .health-point{ opacity: 1}
#pcbs-panel .adult-female .health-label.endometriosis { top: 280px; right: 28px; }
#pcbs-panel .adult-female .health-label.endometriosis .health-point{ top:-40px; right: 21px; }
#pcbs-panel .adult-female .health-label.endometriosis .health-point-moderate{ top:-40px; right: 21px; }
#pcbs-panel .adult-female .health-label.hyperuricemia { top: 192px; left: 56px; }
#pcbs-panel .adult-female .health-label.hyperuricemia .health-point{ top: 0px; left:  -22px; }
#pcbs-panel .adult-female .health-label.hyperuricemia .health-point-moderate { top: 0px; left:  -22px; }

#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.thyroid-functions { top: 48px; right: 65px; }
#pcbs-panel .adult-male .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#pcbs-panel .adult-male .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#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:hover .health-point { opacity: 1}
#pcbs-panel .adult-male .health-label.malignant-melanoma .health-point-moderate { top: 1px; right: -25px; }
#pcbs-panel .adult-male .health-label.malignant-melanoma:hover .health-point-moderate { opacity: 1}
#pcbs-panel .adult-male .health-label.all-cause-mortality{ top:11px; left: 68px;}
#pcbs-panel .adult-male .health-label.all-cause-mortality .health-point{ top: 0px; left: -25px;  }
#pcbs-panel .adult-male .health-label.all-cause-mortality .health-point-moderate{ top:  0px; right: -25px;}
#pcbs-panel .adult-male .health-label.cancer-mortality { top:-24px; right: 83px;}
#pcbs-panel .adult-male .health-label.cancer-mortality .health-point{ top: 6px; right: -23px;  border: 1px solid #fff; opacity:.5}
#pcbs-panel .adult-male .health-label.cancer-mortality:hover .health-point{ opacity: 1 }
#pcbs-panel .adult-male .health-label.cancer-mortality .health-point-moderate{ top: 30px; left: 56px;}
#pcbs-panel .adult-male .health-label.cancer-mortality:hover .health-point-moderate{ opacity: 1}
#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.insulin-resistance { top: 141px; right: 63px; }
#pcbs-panel .adult-male .health-label.insulin-resistance .health-point{ top: -5px; right:  -25px; }
#pcbs-panel .adult-male .health-label.insulin-resistance .health-point-moderate{ top: -5px; 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; }
#pcbs-panel .adult-male .health-label.hepatic-disease:hover .health-point { opacity: 1 }
#pcbs-panel .adult-male .health-label.hepatic-disease .health-point-moderate { top: -15px; left: -20px;}
#pcbs-panel .adult-male .health-label.hepatic-disease:hover .health-point-moderate { opacity: 1 }
#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; border:1px solid #fff; opacity:.5  }
#pcbs-panel .adult-male .health-label.type-2-diabetes .health-point-moderate{ top: 1px; right: -25px; border: 1px solid #fff; opacity:.5 }
#pcbs-panel .adult-male .health-label.type-2-diabetes:hover .health-point{ opacity: 1 }
#pcbs-panel .adult-male .health-label.hyperuricemia {  top: 209px; left: 58px;}
#pcbs-panel .adult-male .health-label.hyperuricemia .health-point{ top: 0px; left:  -24px; }
#pcbs-panel .adult-male .health-label.hyperuricemia .health-point-moderate { top: 0px; left:  -24px; }


/* Specific Positioning for PBDEs - Health points positioning for different figures*/
#pbdes-panel .infant .health-label.birth-weight-decreased { top: 35px;left: 50px; background: #d6fbff; }
#pbdes-panel .infant .health-label.birth-weight-decreased .health-point { top:8px; left: -29px;}
#pbdes-panel .infant .health-label.birth-weight-decreased .health-point-moderate{ top:8px; left: -29px;}
#pbdes-panel .infant .health-label.thyroid-functions { top: 8px; left: 40px; }
#pbdes-panel .infant .health-label.thyroid-functions .health-point{  top: 8px; left: -28px; }
#pbdes-panel .infant .health-label.thyroid-functions .health-point-moderate{ top: 8px; left:  -28px;}

#pbdes-panel .child .health-label.iq-cognitive-development { top: -1px; left: -125px; }
#pbdes-panel .child .health-label.iq-cognitive-development .health-point{ top: -1px; right: -30px;}
#pbdes-panel .child .health-label.iq-cognitive-development .health-point-moderate{ top: -1px; right: -30px;}
#pbdes-panel .child .health-label.thyroid-functions { top: 36px; right: 67px; }
#pbdes-panel .child .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#pbdes-panel .child .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#pbdes-panel .child .health-label.obesity { top: 131px; right: -23px; }
#pbdes-panel .child .health-label.obesity .health-point{ top:  1px; left: -28px; }
#pbdes-panel .child .health-label.obesity .health-point-moderate{ top:  1px; left: -28px; }



#pbdes-panel .adult-female .health-label.thyroid-functions { top: 55px; right: 64px; }
#pbdes-panel .adult-female .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#pbdes-panel .adult-female .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#pbdes-panel .adult-female .health-label.gestational-diabetes-mellitus { top: 127px; right: 77px; background: #d6fbff;}
#pbdes-panel .adult-female .health-label.gestational-diabetes-mellitus .health-point{ top: 1px; right:  -25px; }
#pbdes-panel .adult-female .health-label.gestational-diabetes-mellitus .health-point-moderate{ top: 1px; right:  -25px; }
#pbdes-panel .adult-male .health-label.thyroid-functions { top: 48px; right: 65px; }
#pbdes-panel .adult-male .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#pbdes-panel .adult-male .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#pbdes-panel .adult-male .health-label.cardiovascular-disease { top: 98px; right: 55px; }
#pbdes-panel .adult-male .health-label.cardiovascular-disease .health-point{ top: 1px; right:  -25px; }
#pbdes-panel .adult-male .health-label.cardiovascular-disease .health-point-moderate{ top: 1px; right:  -25px; }

/* Specific Positioning for PFAS - Health points positioning for different figures*/
#pfas-panel .infant .health-label.birth-length-decreased { top: -120px; left: -10px; background: #d6fbff; }
#pfas-panel .infant .health-label.birth-length-decreased .health-point{ top: 0px; left: -27px;}
#pfas-panel .infant .health-label.birth-length-decreased .health-point-moderate{ top: 0px; left: -27px;}

#pfas-panel .infant .health-label.ponderal-index-decreased { top: -95px; left: -10px; background: #d6fbff; }
#pfas-panel .infant .health-label.ponderal-index-decreased .health-point{ top: 0px; left: -27px;}
#pfas-panel .infant .health-label.ponderal-index-decreased .health-point-moderate{ top: 0px; left: -27px;}
#pfas-panel .infant .health-label.thyroid-functions { top: -70px; left: -10px;}
#pfas-panel .infant .health-label.thyroid-functions .health-point{ top: 0px; left: -27px;}
#pfas-panel .infant .health-label.thyroid-functions .health-point-moderate{ top: 0px; left: -27px;}

#pfas-panel .infant .health-label.gestational-age-decreased{ top: -45px; left: -10px; background: #d6fbff; }
#pfas-panel .infant .health-label.gestational-age-decreased .health-point{ top: 0px; left: -27px;}
#pfas-panel .infant .health-label.gestational-age-decreased .health-point-moderate{ top: 0px; left: -27px;}
#pfas-panel .infant .health-label.head-circumference-decreased{ top: -20px; left: -10px; background: #d6fbff; }
#pfas-panel .infant .health-label.head-circumference-decreased .health-point{ top: 0px; left: -27px;}
#pfas-panel .infant .health-label.head-circumference-decreased .health-point-moderate{ top: 0px; left: -27px;}
#pfas-panel .infant .health-label.obesity { top: 82px; left: -15px; }
#pfas-panel .infant .health-label.obesity .health-point-moderate { top: -22px; left: 60px;}
#pfas-panel .infant .health-label.allergic-rhinitis-hay-fever { top: 8px; left: 40px; }
#pfas-panel .infant .health-label.allergic-rhinitis-hay-fever .health-point{  top: 0px; left: -28px; }
#pfas-panel .infant .health-label.allergic-rhinitis-hay-fever .health-point-moderate{ top: 0px; left:  -28px;}
#pfas-panel .infant .health-label.birth-weight-decreased { top: 45px;left: 50px; background: #d6fbff; }
#pfas-panel .infant .health-label.birth-weight-decreased .health-point { top:-13px; left: -29px; }
#pfas-panel .infant .health-label.birth-weight-decreased .health-point-moderate{ top: 8px; left: -29px;}
#pfas-panel .infant .health-label.atopic-dermatitis { top:26px; right: 85px; }
#pfas-panel .infant .health-label.atopic-dermatitis .health-point{ top:0px; right:  -25px; }
#pfas-panel .infant .health-label.atopic-dermatitis .health-point-moderate { top: 0px; right:  -25px; }

#pfas-panel .child .health-label.adhd { top:-50px;left: 40px; }
#pfas-panel .child .health-label.adhd .health-point{ top: 30px; left: 10px;}
#pfas-panel .child .health-label.adhd .health-point-moderate{ top: 30px; left: 10px;}
#pfas-panel .child .health-label.adhd-girls { top:-50px;left: 23px; }
#pfas-panel .child .health-label.adhd-girls .health-point{ top: 30px; left: 27px;}
#pfas-panel .child .health-label.adhd-girls .health-point-moderate{  top: 30px; left: 27px;}
#pfas-panel .child .health-label.vaccine-response { top: 100px;left: 32px;}
#pfas-panel .child .health-label.vaccine-response .health-point{ top: 1px; left:  -25px; }
#pfas-panel .child .health-label.vaccine-response .health-point-moderate { top: 1px; right:  -30px; }
#pfas-panel .child .health-label.allergic-rhinitis-hay-fever { top: 75px; left: 19px; }
#pfas-panel .child .health-label.allergic-rhinitis-hay-fever  .health-point{ top:-24px; left: 32px;}
#pfas-panel .child .health-label.allergic-rhinitis-hay-fever  .health-point-moderate{ top:-24px; left: 32px;}
#pfas-panel .child .health-label.obesity { top: 131px; right: -23px; }
#pfas-panel .child .health-label.obesity .health-point{ top:  1px; left: -28px; }
#pfas-panel .child .health-label.obesity .health-point-moderate{ top:  1px; left: -28px;}
#pfas-panel .child .health-label.atopic-dermatitis { top:172px;left: -5px; }
#pfas-panel .child .health-label.atopic-dermatitis .health-point{ top: -25px; left: -2px;}
#pfas-panel .child .health-label.atopic-dermatitis .health-point-moderate { top: 0px; right:  -25px; }
#pfas-panel .child .health-label.bmi { top: 153px; left: 86px; }
#pfas-panel .child .health-label.bmi .health-point{ top:  1px; right: -24px; border: 1px solid #fff; opacity: 0.7;}
#pfas-panel .child .health-label.bmi:hover .health-point{ opacity: 1;}
#pfas-panel .child .health-label.bmi .health-point-moderate{ top:  -20px;right: 29px;border: 1px solid #fff; opacity:.7;}
#pfas-panel .child .health-label.bmi:hover .health-point-moderate{ opacity: 1;}

#pfas-panel .adult-female .health-label.thyroid-functions { top: 55px; right: 64px; }
#pfas-panel .adult-female .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-female .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#pfas-panel .adult-female .health-label.thyroid-function-pregnancy { top: 77px; right: 66px; background: #d6fbff;}
#pfas-panel .adult-female .health-label.thyroid-function-pregnancy .health-point { top: 0px; right: -25px; border: 1px solid #fff; opacity:.6 }
#pfas-panel .adult-female .health-label.thyroid-function-pregnancy .health-point-moderate { top: -14px; right: -25px; border: 1px solid #fff; opacity:.6 }
#pfas-panel .adult-female .health-label.thyroid-function-pregnancy:hover .health-point-moderate {opacity:1 }
#pfas-panel .adult-female .health-label.hypertension { top: 75px; left: 94px;}
#pfas-panel .adult-female .health-label.hypertension .health-point{ top: 2px; left: -23px; }
#pfas-panel .adult-female .health-label.hypertension .health-point-moderate{ top: 2px; left: -23px }
#pfas-panel .adult-female .health-label.hypertension:hover .health-point-moderate{ opacity: 1}
#pfas-panel .adult-female .health-label.infertility { top: 239px;left: 75px; }
#pfas-panel .adult-female .health-label.infertility .health-point{ top:0px; left: -23px; }
#pfas-panel .adult-female .health-label.infertility .health-point-moderate{ top:0px; left: -23px; /*border: 1px solid #fff; opacity:.6 */    }
#pfas-panel .adult-female .health-label.infertility:hover .health-point-moderate{ opacity: 1 }
#pfas-panel .adult-female .health-label.miscarriage { top:217px; right: 85px; background: #d6fbff; }
#pfas-panel .adult-female .health-label.miscarriage .health-point{ top: 0px; right: -21px; /*border: 1px solid #fff; opacity:.6 */   }
#pfas-panel .adult-female .health-label.miscarriage .health-point-moderate{ top:0px; right: -21px; /*border: 1px solid #fff; opacity:.6 */   }
#pfas-panel .adult-female .health-label.miscarriage:hover .health-point-moderate{ opacity: 1 }
#pfas-panel .adult-female .health-label.vaccine-response { top: 129px; left: -108px;}
#pfas-panel .adult-female .health-label.vaccine-response .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-female .health-label.vaccine-response .health-point-moderate { top: 1px; right:  -30px; }
#pfas-panel .adult-female .health-label.hypertensive-disorders-of-pregnancy { top: 100px; right: 44px; background: #d6fbff; }
#pfas-panel .adult-female .health-label.hypertensive-disorders-of-pregnancy .health-point{ top: 1px; right: -25px; }
#pfas-panel .adult-female .health-label.hypertensive-disorders-of-pregnancy .health-point-moderate{ top: 1px; right: -25px; }
#pfas-panel .adult-female .health-label.gestational-diabetes-mellitus{ top: 127px; left: 77px; background: #d6fbff;}
#pfas-panel .adult-female .health-label.gestational-diabetes-mellitus .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-female .health-label.gestational-diabetes-mellitus .health-point-moderate{ top: 9px; left:  -27px; }
#pfas-panel .adult-female .health-label.gestational-diabetes-mellitus:hover .health-point-moderate{ opacity: 1}
#pfas-panel .adult-female .health-label.hyperuricemia { top: 192px; left: 56px; }
#pfas-panel .adult-female .health-label.hyperuricemia .health-point{ top: 0px; left:  -22px;  border: 1px solid #fff; opacity:.6 }
#pfas-panel .adult-female .health-label.hyperuricemia .health-point-moderate { top: 0px; left:  -22px; border: 1px solid #fff; opacity:.6  }
#pfas-panel .adult-female .health-label.hyperuricemia:hover .health-point {opacity: 1;}

#pfas-panel .adult-female .health-label.kidney-cancer { top: 194px; right: 92px; }
#pfas-panel .adult-female .health-label.kidney-cancer .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-female .health-label.kidney-cancer .health-point-moderate{ top: 1px; right:  -25px; }
#pfas-panel .adult-female .health-label.serum-lipids-and-dyslipidaemia{ top: 172px; right: 59px;}
#pfas-panel .adult-female .health-label.serum-lipids-and-dyslipidaemia .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-female .health-label.serum-lipids-and-dyslipidaemia .health-point-moderate{ top: 1px; right:  -25px; }


#pfas-panel .adult-male .health-label.thyroid-functions { top: 48px; right: 65px; }
#pfas-panel .adult-male .health-label.thyroid-functions .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-male .health-label.thyroid-functions .health-point-moderate{ top: 1px; right:  -25px;}
#pfas-panel .adult-male .health-label.hyperuricemia {  top: 212px; left: 58px;}
#pfas-panel .adult-male .health-label.hyperuricemia .health-point{ top: 0px; left:  -24px; border: 1px solid #fff; opacity:.6 }
#pfas-panel .adult-male .health-label.hyperuricemia .health-point-moderate { top: 0px; left:  -24px;border: 1px solid #fff; opacity:.6  }
#pfas-panel .adult-male .health-label.hyperuricemia:hover .health-point{opacity:1 }
#pfas-panel .adult-male .health-label.hypertension { top: 70px; right: 55px;  }
#pfas-panel .adult-male .health-label.hypertension .health-point { top: 1px; right: -25px; }
#pfas-panel .adult-male .health-label.hypertension .health-point-moderate { top: 1px; right: -25px; }
#pfas-panel .adult-male .health-label.vaccine-response { top: 135px; right: 6px; }
#pfas-panel .adult-male .health-label.vaccine-response .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-male .health-label.vaccine-response .health-point-moderate{ top: 1px; right:  -25px; }
#pfas-panel .adult-male .health-label.serum-lipids-and-dyslipidaemia{ top: 187px; right: 55px; }
#pfas-panel .adult-male .health-label.serum-lipids-and-dyslipidaemia .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-male .health-label.serum-lipids-and-dyslipidaemia .health-point-moderate{ top: 1px; right:  -25px; }
#pfas-panel .adult-male .health-label.kidney-cancer{ top: 211px; right: 96px; }
#pfas-panel .adult-male .health-label.kidney-cancer .health-point{ top: 1px; right:  -25px; }
#pfas-panel .adult-male .health-label.kidney-cancer .health-point-moderate{ top: 1px; right:  -25px; }
#pfas-panel .adult-male .health-label.testicular-cancer { top: 313px; right: 0px; }
#pfas-panel .adult-male .health-label.testicular-cancer .health-point{ top:-40px; right: 50px; }
#pfas-panel .adult-male .health-label.testicular-cancer .health-point-moderate{ top:-40px; right: 50px; }

