.filter-phones {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 15px;
}

.filter-phones .head_filters {
    width: 100%;
    height: 35px;
    display: flex;
    align-content: center;
    align-items: center;
    background: #fff;
    padding: 10px;
    gap: 10px;
    border: solid 1px rgba(211, 212, 211, 1);
    border-radius: 4px;
    font-size: 14px;
    color: #50535A;
}

ul.content-filter , ul.content-filter ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}
li.filter-item {
    border-bottom: 1px solid #F5F5F5;
}
.act-options {
    color: black;
    color: #0B2739;
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 5px 10px;
    background-image: url('https://aprodmovistarcomsa.z13.web.core.windows.net/empresas/celulares/filters/arrow-filter-down.webp');
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) center;
    background-size: 15px;
}

.act-options.active {
    background-image: url('https://aprodmovistarcomsa.z13.web.core.windows.net/empresas/celulares/filters/arrow-filter-up.webp');
}
ul.content-filter ul.options li {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 5px 5px 35px;
}

ul.content-filter ul.options li .icon {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    border: 2px solid #CCCCCC;
    width: 18px;
    height: 18px;
}
ul.content-filter ul.options li .icon-circle {
    border-radius: 50%;
}
ul.content-filter ul.options li.active .icon::before {
    content: ' ';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: var(--blue);
}
ul.content-filter ul.options li.active .icon-circle::before  {
    border-radius: 50%;
}

@media(min-width:768px){
    .filter-phones {
        width: 51%;
        position: relative;
    }
    ul.content-filter {
        position: absolute;
        width: calc(100% - 30px);
        z-index: 1;
        box-shadow: 2px 2px rgb(0 0 0 / 10%);
        margin-top: 2px;
    }
}
@media(min-width:1024px){
    .filter-phones {
        width: 100%;
        padding: 0;
    }

    .filter-phones .head_filters {
        display: none;
    }

    ul.content-filter {
        display: block !important;
        width: 100%;
        position: relative;
        box-shadow: none;
        padding: 15px 5px;
    }
    ul.content-filter ul {
        display: block;
    }
    ul.content-filter ul.options li {
        font-size: 14px;
        color: #313235;
    }

}