/*your custom css goes here*/

/* Filter CSS */

.filter-section .brand-selection {
    height: 65px;
    overflow: hidden;
}

.brand-selection .brand-radio .image-container {
    width: 50px;
    height: 50px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.brand-selection .brand-radio .image-container img {
    width: 100%;
    height: 100%;
}

.brand-selection .brand-radio input {
    display: none;
}

.brand-selection .brand-radio {
    cursor: pointer;
}

.brand-selection .slide-item {
    padding: 5px;
}

.brand-selection .slide-item input:checked + .image-container {
    border: 1px solid var(--primary);
}

/* Brand Search */

.brand-container {
    position: relative;
    overflow-y: auto;
    height: 60vh;
}

.brand-container .brand-image-container {
    width: 50px;
    max-height: 50px;
}

.brand-container .brand-image-container img {
    width: 100%;
    height: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.open-filter-modal-btn {
    cursor: pointer;
    color: #007bff;
    font-size: 24px;
    background-color: transparent;
    border: none;
    padding-bottom: 5px;
}

/* Category */

.category-section-title{
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.category-card{
    align-content: stretch;
    align-items: stretch;
    background: #f9fafb;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: flex-start;
    padding: 16px;
    position: relative;
}

.category-card:hover{
    background: white;
    transition: all 0.3s ease;
}

.category-card .category-title{
    align-items: center;
    color: #032f4a;
    display: flex;
    justify-content: center;
    min-height: 40px;
    text-align: center;
}

.category-card .category-image{
    border-bottom: 1px solid #e5eaed;
    display: block;
    margin-bottom: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
    width: 100%;
}

.category-card .category-image:before{
    background-color: #193257;
    border: 3px solid #f9fafb;
    border-radius: 50%;
    bottom: -6px;
    content: "";
    display: block;
    height: 12px;
    left: 50%;
    margin-left: -6px;
    position: absolute;
    width: 12px;
}

.bg-orange{
    background: #e7792b;
}
