
/* ------------------------------------------ Banners, Headers, Navbars/lists, Sidepanels, and Footers ------------------------------------------ */

/* -------------------- Banners -------------------- */
.bannerThin1{
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 950;

    position: sticky;
    top: 0;

    width: calc(100% - 20px);
    height: 30px;

    padding: 5px 10px;
}

/* -------------------- Headers -------------------- */

/* ----- Header Containers ----- */
.header_HT{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 500;
    position: relative;

    height: 75px;
    width: calc(100% - 8px);

    margin: 0;
    padding:  0 4px;

    background-color: white;
}
.header_HM{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 500;
    position: relative;

    height: 100px; min-height: 100px;
    width: calc(100% - 8px);

    margin: 0;
    padding:  0 4px;

    background-color: white;
}
.header_HL{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 500;
    position: relative;

    height: 125px; min-height: 125px;
    width: calc(100% - 8px);

    margin: 0;
    padding:  0 4px;

    background-color: white;
}

/* ----- Content Bins ----- */
.cms_headerContentBin{
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%; max-width: 1400px;
    height: inherit;


    /* border: 1px solid green; */
}

.cms_headerContentBinThin{
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%; max-width: 1400px;
    height: fit-content;

    padding: 0;

    border: none;


    /* border: 1px solid green; */
}





/* ----- Sample Headers: FOR SAMPLE SITE PAGE USE ONLY ----- */
.SAMPLE_HEADER_THIN{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 900;

    height: 75px;
    width: calc(100% - 8px);

    margin: 0;
    padding:  0 4px;


    background-color: white;
}
.SAMPLE_HEADER_MEDIUM{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 900;

    height: 100px; min-height: 100px;
    width: calc(100% - 8px);

    margin: 0;
    padding:  0 4px;


    background-color: white;

}
.SAMPLE_HEADER_LARGE{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 900;

    height: 125px; min-height: 125px;
    width: calc(100% - 8px);

    margin: 0;
    padding:  0 4px;


    background-color: white;

}










/* Header Bins */
.headerLogoBin1{
    display: flex;
    align-items: center;

    width: fit-content; min-width: 250px; max-width: 400px;
    height: 100%;

    margin: 0;
    padding: 0;

    /* color: white; */
    color: var(--primary);
    background-color: rgba(0, 0, 0, 0);
    /* border: 2px solid red; */
}



.accountOptions{
    display: flex;
    justify-content: flex-end;
    align-items: center;

    min-height: calc(100%-20px);
    width: fit-content; min-width: 100px;
    max-width: 400px;
    margin: 0 5px;
    /* border: 1px solid blue; */
}
.accountsOptions .registerTag{
    display: inline-block;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    max-height: 20px;
    width: 200px;
    text-align: center;
}







/* -------------------- Navbars, tabs, and lists -------------------- */

/* ----- Navbars ----- */
.headerNavbar1{
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;

    height: 5rem;
    width: fit-content;

    padding: 0;
    margin: 0;

    background-color: rgba(0, 0, 0, 0);
    /* border: 2px solid yellow; */
}




/* ----- Navtabs ----- */
.navtab1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: fit-content;
    margin: 0 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;

    padding: 2px 5px;
    /* border-radius: 10px; */
    border: 2px solid rgba(0, 0, 0, 0);

    color: var(--primary);
}
.navtab1:hover{
    /* border-bottom: 2px solid var(--accent); */
    border-bottom: 2px solid var(--secondary);
    color: var(--secondary);
}



/* ----- Navlists ----- */
.navList{
    display: flex;
    flex-direction: column;

    list-style: none;
    width: calc(100% - 10px - 2px);
    padding: 5px;
}
.navlistItem{
    display: flex;
    align-items: center;

    font-size: 14px;

    width: 96%;
    height: 38px;
    
    padding: 0 5px;
    /* margin: 5px 0; */
    margin: 0;

    /* border: 1px solid lightgray; */
    /* border-radius: 5px; */
}
.navlistItem:hover{
    cursor: pointer;
    background-color: whitesmoke;

}
.navlistItemPressed{
    background-color: whitesmoke;
    border-left: 3px solid var(--accent);
}


/* -------------------- Dropdown Nav Menu -------------------- */

.cms_dropDownMenu{
    display: none;
    flex-direction: column;

    z-index: 910;

    position: absolute;
    top: calc(40px + 100px);

    width: calc(100% - 2px);
    height: fit-content;
    /* height: 0; */

    background-color: white;
    border: 1px solid lightgray;

    transition: 0.25s ease-in-out;
}


.cms_dropDownMenu_list{
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    list-style: none;

    width: calc(100% - 40px);
    height: fit-content;

    padding: 20px;
    margin: 0;

    /* border: 1px solid green; */

    /* background-color: whitesmoke; */
}
.cms_dropDownMenu_listItem{
    text-decoration: none;
    font-size: 28px;
    line-height: 100px;

    width: calc(100% - 40px);
    height: 100px;

    padding: 0 20px;
    margin-bottom: 10px;

    color: black;
    /* border: 1px solid lightgray; */

    transition: 0.1s ease-in-out;
}
.cms_dropDownMenu_listItem:hover{
    cursor: pointer;

    background-color: var(--bg7);
    color: var(--primary);

}
.dropDownMenu_btnBin{
    width: calc(100% - 20px);
    height: calc(100% - 20px);

    padding: 10px;
}

/* ----- Mobile Menu ----- */
#hamburgerMenuBtn{
    padding: 10px;
    /* border: 4px solid blue; */
}
#hamburgerMenuBtn:hover{
    cursor: pointer;
    /* background-color: whitesmoke; */
}
.hamburgerMenuBtn_Selected {
    background-color: whitesmoke;
    border-style: none;
    border: 4px solid var(--secondary_lite);

    transition: 0.2s ease-in-out;
}



/* ----- Checkbox lists ----- */
.checkboxListItem{
    display: flex;
    align-items: center;

    font-size: 14px;

    width: 96%;
    height: 38px;
    
    padding: 0 5px;
    /* margin: 5px 0; */
    margin: 0;

    /* border: 1px solid red; */
}
/* .checkboxListItem_box{
    
} */
.checkboxListItem_title{
    font-size: 14px;

    margin-left: 5px;
}

/* -------------------- Sidepanels -------------------- */
.sidepanel{
    display: flex;
    flex-direction: column;

    height: inherit;
    width: 250px;
    box-shadow: 2px 2px 10px -2px lightgray;
}






/* -------------------- Footers -------------------- */
.footer1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 0;
    position: relative;

    height: fit-content;
    width: calc(100%);

    margin: 0;
    padding:  40px 0;


    background-color: white;
}












/* -------------------------------------------------------------------------------- OLD CODE (FOR REFERENCE ONLY) -------------------------------------------------------------------------------- */





#navbarDropdown{
    display: none;
    position: absolute;
    top: 80px;
    /* left: 10%; */

    width: fit-content;
    height: fit-content;

    padding: 10px 20px;

    background-color: white;
    box-shadow: 5px 5px 5px -5px black;
    /* background-color: var(--primary); */
    /* box-shadow: 5px 5px 5x -5px rgba(0, 0, 0, 0.4); */
    /* box-shadow: 1px 1px 1px 0 var(--primary); */
    /* border: 2px solid var(--accent); */
    border: 1px solid lightgray;
    border-top: none;
    transition: 0.2s ease-in-out;
}
#navbarDropdownBin{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
#navbarDropdownBin .headerDiv{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: white; */
}
#navbarDropdownBin .headerDiv #navbarDropdownTitle{
    margin: 0 10px 0 0;
}
#navbarDropdownBin #closeNavbarDropdown{
    width: 30px;
    height: 30px;
}
#navbarDropdownBin #closeNavbarDropdown:hover{
    cursor: pointer;
}
#navbarDropdownBin .bodyDiv{
    display: none;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    /* border: 1px solid red; */
}
#navbarDropdownBin .dropdownList{
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    text-align: center;

    width: 225px;

    padding: 5px 10px;

    border-radius: 5px;
    /* border: 1px solid black; */
}
#navbarDropdownBin .dropdownListItem{
    text-align: left;

    width: 80%;

    margin: 5px;

    /* border: 1px solid blue; */
}





/* Hide all mobile navbar components */
#mobileNavBin{
    display: none;
/* ----- Hamburger Menu ----- */
}

#mobileNavbar{
    display: none;
}
#mobileNavContainer{
    display: none;
}
#closeMenu{
    display: none;
}




/* ---------------------------------------- Footers ---------------------------------------- */


/* .footer1{
    display: flex;
    flex-direction: column;

    width: calc(100%);
    height: fit-content;
    min-height: fit-content;



    color: var(--primary);
    background-color: white;

}
.footer1 .main{
    display: flex;
    justify-content: space-evenly;
    height: fit-content;
}


.footer1 .main .sections{
    display: flex;
    justify-content: space-evenly;
    width: 60%;
}
.footer1 .main .sections ul{
    list-style: none;
    margin: 0 1px;
    padding: 2px;

}
.footer1 .main .sections li{
    margin: 1rem 0;
}
.footer1 hr{
    width: 90%;
}


.footer1 .legal{
    height: fit-content;
    min-height: fit-content;

    padding: 5px;
}
.footer1 .legal ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style: none;

    padding: 0;
}
.footer1 .socialbtn{
    max-width: 30px;
    margin: 0 10px;
} */

