label.error{
    font-size: 14px !important;
    color: red !important;

}
.mx-500{
    max-width: 400px;
    margin: 0 auto;
}
.imgBox{
    width: 100%;
    background-color: #fff;
    position: relative;
    padding: 20px;
    margin-bottom: 25px;
}
.imgBox a{
    text-decoration: none;
}
.imgBox img{
    width: 100%;
}
.removeBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #dddddd;
    color: #fff;
    position: absolute;
    right: -15px;
    top: -15px;
    border-radius: 100%;
}
.removeBtn:hover{
    background-color: #8a1414;
    color: #fff;
}

#filterCard {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

#filterCard.show {
    max-height: 500px; /* Adjust height as needed */
    opacity: 1;
}
#filterForm{
    gap: 15px;
}