.filters-component {
    display: inline-block;
    position: relative;
}

.filters-component .filter {
    color: #60636c;
    position: relative;
    display: flex;
    width: 38px;
    height: 38px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    border: 1px solid #ECECED;
    background: #FFF;
}

.filters-component .filter.applied {
    color: #2188d9;
    background: #f4f9fd;
    border: 1px solid #2188d9;
}

.filters-component .filter .dot {
    background: #2188d9;
    width: 4px;
    height: 4px;
    position: absolute;
    border-radius: 50%;
    left: 42px;
    top: 9px;
}

.filters-component .menu-content {
    display: inline-flex;
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    top: 45px;
    width: 360px;
    white-space: initial;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(6, 12, 27, 0.15);
}

.filters-component .menu-content .items-wrapper {
    overflow-y: auto;
    max-height: calc(100vh - 407px);
    position: relative;
    width: 100%;
}

.filters-component .menu-content .items-wrapper .action-item.expanded {
    background: #F4F9FD;
    color: #4F4F4F;
    font-weight: 500;
}

.filters-component .menu-content .items-wrapper .action-item.expanded.active {
    background: #F4F9FD;
}

.filters-component .menu-content .items-wrapper .action-item.radio-group {
    flex-direction: column;
    align-items: flex-start;
}

.filters-component .menu-content .items-wrapper .action-item.radio-group .headings {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.filters-component .menu-content .items-wrapper .action-item.radio-group .radio-button {
    display: block;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
}

.filters-component .menu-content .items-wrapper .expand-icon {
    transition: 0.3s;
}

.filters-component .menu-content .items-wrapper .expand-icon.active {
    transform: rotate(180deg);
}

.filters-component .menu-content .items-wrapper .ds-item {
    margin-left: 32px;
}

.filters-component .menu-content .items-wrapper .select-all {
    font-weight: 500;
}

.filters-component .menu-content .items-wrapper .filter-row {
    padding: 0 16px;
}

.filters-component .menu-content .items-wrapper .filter-row:not(:last-of-type) {
    margin-bottom: 20px;
}

.filters-component .menu-content .items-wrapper .filter-row .lbl {
    color: #60636c;
    font-size: 14px;
    margin-bottom: 8px;
}

.filters-component .menu-content .items-wrapper .filter-row:focus-within .lbl {
    color: #2188d9;
}

.filters-component .menu-content .items-wrapper .number-range-row {
    display: flex;
    width: 310px;
    margin-left: 32px;
    gap: 16px;
    margin-bottom: 10px;
}

.filters-component .menu-content .items-wrapper .toggle-row {
    justify-content: space-between;
}

.filters-component .menu-content .items-wrapper .filter-divider {
    margin: 0.2em 0;
    border-bottom: 1px solid #ECECED;
}

.filters-component .right {
    left: 0;
}

.filters-component .left {
    right: 0;
}

.filters-component .search-row .filter-row .search-box-input {
    outline: none;
    width: 100%;
    border-bottom: 1px solid #D6D6D8;
    align-items: center;
    display: flex;
    gap: 8px;
}

.filters-component .search-row .filter-row .search-box-input input {
    border: none;
    width: 250px;
    outline: none;
    box-shadow: none;
    height: 18px;
}

.filters-component .search-row .filter-row .search-box-input:focus-within {
    border-color: #2188D9;
}

/* Add more styles for other elements as needed */

.radio-component input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.radio-component input[type="radio"]+label {
    position: relative;
    padding: 0 0 0 32px;
    cursor: pointer;
}

.radio-component input[type="radio"]+label:before {
    content: '';
    background: #fff;
    border: 1px solid #2188D9;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.radio-component input[type="radio"]+label:after {
    content: '';
    background: #2188D9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    opacity: 0;
    transform: scale(2);
    transition: transform 0.3s linear, opacity 0.3s linear;
}

.radio-component input[type="radio"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

.radio-component .disabled-radio input[type="radio"]+label {
    cursor: not-allowed;
}

.radio-component .disabled-radio input[type="radio"]+label:before {
    border: 1px solid #CCC;
}

.filters-component .action-menu-header {
    border-color: #F2F2F2;
    width: 100%;
}

.filters-component .action-menu-header .search-box-component {
    width: auto;
    height: 40px;
}

.filters-component .action-item:hover,
.filters-component .action-item:focus-within,
.filters-component .action-item.active:hover,
.filters-component .action-item.active:focus {
    color: #4F4F4F;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.28px;
    background: #F4F9FD;
}

.filters-component .action-item-checkbox {
    padding: 10px 16px 10px 48px;
    color: #828282;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0 !important;
}

.filters-component .action-menu-footer {
    width: 100%;
    justify-content: center;
}

.filters-component .action-menu-footer .button-stroked {
    color: #828282;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    display: flex;
    width: 136px;
    height: 37px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 2px;
    border: 1px solid #ECECED;
    background: unset;
}

.filters-component .button-flat {
    display: flex;
    width: 136px;
    height: 37px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 2px;
    background: #2188D9;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border: unset;
}
.filters-component .filter-input-number-range{
    width: 130px;
    padding: 0 4px;
}