.headingRow{
    padding: 0rem 0.5rem;
}
.headingsDiv{
    background-color: #eee;
    padding:0.5rem 1.5rem;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: black;
    display:flex;
    justify-content:space-between;
    /* align-items: center; */
    border-radius: 0.125rem;
}
.customButton{
    border:none;
    outline: none;
    border-bottom: 2px solid #ff681d !important;
    border-radius: 0px;
}
.selectedFilters{
    display:flex;
    flex-wrap: wrap;
    gap:0.25rem;
    padding: 0rem 1rem;
}
.selectedFilter{
    background-color: #ff681d;
    padding: 0.125rem 0.625rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:0.125rem;
  }

.removeButton{
    border-radius: 50%;
    margin: 0;
    padding:0 0.425rem; 
    padding-bottom: 0.1rem;
    background-color: #ff681d;
    color: white;
    border: none;
    font-weight: bold;
}
.removeButton:hover{
    background-color: white;
    color:#ff681d;
}
.imageShown{
    position: absolute;
    left:5rem;
    top:-5rem;
    background-color: white;
    z-index:9999;
    border: 1px solid black;
    border-radius:0.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
input[type="checkbox"]{
    height: 0.9rem;
    width: 0.9rem;
    margin-right: 0.5rem;
    /* margin-top: 0.1rem;  */
    accent-color: #ff5722; 
    line-height: 1.2rem;  
  }