#sidePanel {
    overflow-y: auto;
    position: absolute;
    top: 12%;
    right: 0px;
    height: 82%;
    /* width: 28%; */
    width: fit-content;
    z-index: 6;
    background-color: #242427;
}
.sidePanelContent {
    padding: 20px;
    color: white;
}

.sidePanelContent button {
    visibility: hidden;
    background-color: transparent;
    color: black;
    border-radius: 10px;
    font-size: 2rem;
    border: none;
}

.submitFilter {
    width: 100%;
    background-color: gray;
    color: white;
    border-radius: 10px;
    padding: 16px;
    margin-top: 20px;
    font-size: 1rem;
    border: none;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.submitFilter:hover {
	background-color: #5d5d5d;
}

.submitFilter:active {
	position: relative;
	top: 1px;
}

#searchInput {
    font-size: 1rem;
    line-height: 50px;
    width: 55%;
    margin-left: max(6%, 40px);
    border:0;
    box-shadow: 0 0 15px 4px rgba(0,0,0,0.06);
    border-radius: 10px;
}

#filterbtn {
    display: none;
    background-color: #04AA6D;
    color: white;
    border-radius: 10px;
    padding: 16px;
    margin-left: 20px;
    font-size: 1rem;
    border: none;
}

#filterbtn:hover {
    background-color: #3e8e41;
}

@media screen and (max-width: 600px) {
    #filterbtn {
        display: block;
    }
    
    #sidePanel {
        display: none;
    }

    #sidePanel button {
        visibility: visible;
    }
}