:root {
    --sidebar-width: 35vw;
    --display-program-name: inline-block;
    /* --display-program-name: none; */
    /* --display-program-img: inline-block; */
    --display-program-img: none;
}

#infoMapSVG {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
}

#infoMapSVG.active {
    width: calc(100% - var(--sidebar-width));
}

/* DATAMAP MARKERS */
.datamaps-marker {
    /* These two are needed for centering image for scaling */
    transform-origin: bottom center;
    transform-box: fill-box; 

    /* Transition Animation */
    transition: transform 0.15s;  
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.datamaps-marker:hover {
    transform: scale(1.4);
}

/* FILTER DIV */
#filterBox {
    border-radius: 5px;
    background-color: #ddd;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);

    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 15px;
}

/* FILTER DIV */
#filterBoxContent {
    margin-left: 25px;
    margin-right: 25px;
}

.checkBoxDiv {
    background: url('../res/checkmark.svg') no-repeat;
    background-size: contain;
    height: 30px;
    width: 30px;
    display: inline-block;
    padding: 0 0 0 0px;
    margin: 0 20px 0 20px;
}

.checkBoxDiv:hover{
    background:url('../res/checkmark_hover.svg') no-repeat;
    background-size: contain;
}

.checkBoxDiv.checked{
    background:url('../res/checkmark_checked.svg') no-repeat;
    background-size: contain;
    height: 30px;
    width: 30px;
    display:inline-block;
    padding: 0 0 0 0px;
}
.checkBoxName {
    display: var(--display-program-name);
    font-size: 1.2em;
}

.checkBoxImg {
    display: var(--display-program-img);
    height: 200px; 
    width: auto;
}

/* CENTERING ICONS; REQUIRES ABSOLUTE POSITIONING */
.centerIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* SEARCH SIDEBAR */
#programSideBar {
    position: absolute;
    left: 100%;
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    background: rgba(204, 215, 216, 0.6);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: all 0.2s;
    overflow: auto;

    padding-top: 25px;
    height: 100%;
    z-index: 2000;
}

#programSideBar.active {
    left: calc(100% - var(--sidebar-width));
}

#programSideBarContentList {
    text-align: left;
    padding-left: 25px;
    padding-right: 25px;
}

#programSideBarContentList td {
    padding-bottom: 25px;
}

#programSideBarContentList p {
    margin: 0;
    padding: 0;
}

/* SEARCH BUTTON CLOSE */
#programBtnClose {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 1000;

    top: 0px;
    left: 0px;

    cursor: pointer;
    transition: all 0.2s;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.575); 
}

#programBtnClose:hover {
    transform: scale(1.2);
}

/* LOCATION SIDEBAR */
#locationSideBar {
    position: absolute;
    left: 100%;
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    background: rgba(204, 215, 216, 0.6);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: all 0.2s;
    overflow: auto;

    padding-top: 25px;
    height: 100%;
    z-index: 2000;
}

#locationSideBar.active {
    left: calc(100% - var(--sidebar-width));
}

#locationSideBar h2 {
    padding: 0 50px 0 50px;
}

#locationSideBarContentList {
    text-align: left;
    padding-left: 25px;
    padding-right: 25px;
}

#locationSideBarContentList p {
    margin: 0;
    padding: 0;
}

/* LOCATION BUTTON CLOSE */
#locationBtnClose {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 1000;

    top: 0px;
    left: 0px;

    cursor: pointer;
    transition: all 0.2s;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.575); 
}

#locationBtnClose:hover {
    transform: scale(1.2);
}

/* ---------------------------------------------------
    MOBILE CSS
    MEDIAQUERIES
----------------------------------------------------- */
/* 
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
} */