.associatedTermsDiv {
    display: flex;
    /* justify-content: center; */
    padding: 0 1rem;
}

.associatedTermsContainer {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    
}


.associatedTermsTitle {
    font-family: Rubik;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    /*text-align: right;*/
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.associatedTermsItem {
    position: relative;
    font-weight: bold;
    color: var(--cbsblack);
    /* cursor: pointer; */
    text-decoration: unset;
}

.associatedTermsItem, .associatedTermsMMDItem, .associatedTermsItemPopup {
    
    background-color: var(--blue3);
    color: var(--grey9);
    font-family: "Noto Sans Hebrew";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    border: 2px solid var(--blue4);
}

.associatedTermsItem:visited,.associatedTermsMMDItem:visited {
    color: var(--cbsblack);
}
.associatedTermsItem:hover,.associatedTermsMMDItem:hover {
    box-shadow: 0 0 3px 4px var(--blue4);
    transition: 250ms;
    text-decoration: none;
}
/* .associatedTermsItem, .associatedTermsMMDItem, .associatedTermsItemPopup {
    background-color: var(--blue2);
    border-radius: 1rem;
    border: 2px solid var(--blue4);
    font-weight: bold;
    
} */


.associatedTermsList {
    display: flex; 
    padding: 6px 12px 7px 12px;
    /* justify-content: center; */
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.associatedTermsItemPopup {
    position: absolute;
    top:2.5rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    width: 20rem;
    
}
.hiddenTermPopup{
    display: none;
}
.associatedTermsItemPopupTitle {
    font-weight: bold;
}
.associatedTermsItemPopupBody {
    font-weight: normal;
}

@media only screen and (min-width: 768px) {
    .associatedTermsDiv {
        /* display: flex; */
        justify-content: center;
        /* padding: 0 1rem; */
        padding: 0px;
    }
    .associatedTermsContainer {
        width: 1170px;
    }

}