.filters-legal-media{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.container-filter{
    width: 245px;
    font-size: 18px;
}

.filter-name{
    color: #999;
    font-weight: bold;
    font-family: var(--roboto);
    margin: 0 0 5px;
}
.container-select, .container-datepicker{
    position: relative;
    height: 40px;
    border: 1px solid #666;
    border-radius: 5px;
    cursor: pointer;
}

.text-select{
    font-family: var(--roboto);
    margin: 0;
    padding-left: 10px;
    width: 88%;
    -webkit-line-clamp: 1;
    border: none;
    outline: none;
}
.text-select::placeholder{
    color: var(--blackdefault);
}
/* SELECT ACTIVE */
.container-select.active, .container-datepicker.active{
    border-radius: 5px 5px 0 0;
}
.container-select.active::after, .container-datepicker.active::after{
    transform: rotate(90deg);
}
/* SELECT ACTIVE */

.container-select::after, .container-datepicker::after{
    background-image: url(https://www.opovo.com.br/reboot/includes/assets/img/seta-prev-next.webp);
    background-repeat: no-repeat;
    content: "";
    width: 15px;
    height: 15px;

    position: absolute;
    right: 10px;
    transform: rotate(-90deg);
    transition: .2s;
}
.calendar-input{
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    background: none;
    cursor: pointer;
    height: 40px;
    width: 100%;

    outline: none;

    z-index: 1;
}


/* DATEPICKER RESET */
.ui-datepicker-inline{
    padding: 0;
}
.ui-widget-header{
    background: transparent;
    padding: 0 43px !important;
    border: none;
}
.ui-datepicker .ui-datepicker-title{
    margin: 0;
}
.ui-state-default{
    background: transparent !important;
    border: none !important;
}
.ui-datepicker table{
    margin: 0;
}
.ui-datepicker th{
    padding: 0;
    text-align: inherit;
}
.ui-datepicker td span, .ui-datepicker td a{
    padding: 0;
    text-align: inherit;
}
/* DATEPICKER RESET */

/* DATEPICKER */
#datepicker{
    position: absolute;
    z-index: 2;
    width: 245px;
    top: 69px;
    /* left: -300px; */
}

.ui-datepicker-inline{
    width: 100% !important;
    height: 180px;
    background: #F3F3F3;
    border: 1px solid #666 !important;
    border-top: 0 !important;
    border-radius: 0 0 5px 5px;
    padding-top: 10px;
}
.ui-datepicker .ui-datepicker-title {
    font-size: 14px;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{
    height: 100%;
    top: 0;
}
.ui-datepicker .ui-datepicker-prev{
    position: absolute;
    left: 35px;
}
.ui-datepicker .ui-datepicker-next{
    position: absolute;
    right: 35px;
}
.ui-state-hover {
    cursor: pointer;
    border: none !important;
    background: none !important;
  }
.ui-datepicker .ui-datepicker-next span{
    transform: rotate(180deg);
}
.ui-datepicker-calendar td.zero a:before {
    content: "0";
  }
.ui-widget-header .ui-icon{
    background-image: url(https://www.opovo.com.br/reboot/includes/assets/img/seta-prev-next.webp)!important;
    background-repeat: no-repeat !important;
    background:0 0;
}
.ui-datepicker-calendar{
    display: flex;
    flex-direction: column;
}
.ui-datepicker table{
    font-size: 12px;
}
.ui-datepicker table thead{
    display: flex;
    padding: 0 43px;
}
.ui-datepicker table thead tr{
    display: flex;
    width: 100%;
    gap: 16px;
}
.ui-datepicker table tbody{
    padding: 0 43px;
}
.ui-datepicker table tbody td{
    padding-right: .7rem;
}
.ui-datepicker table tbody td a{
   color:#999999 !important;
   font-family: var(--roboto);
}
/* DATEPICKER */



/* LISTAS */
.list-client{
    margin: 0;
    list-style: none;

    width: 245px;
    max-height: 161px;

    position: absolute;
    top: 35px;
    left: -1px;

    padding: 0;

    background-color: #f3f3f3;

    z-index: 2;
    overflow: auto;

    font-family: var(--roboto);

    border: 1px solid #666 ;
    border-top: 0;
    border-radius: 0 0 5px 5px;

}
.item-client{
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    transition: .2s;
}
.item-client:hover{
    background-color:#999999;
    color: #fff;
}
/* LISTAS */

@media screen and (max-width: 991px){
    .container-filter, .list-client{
        width: 345px;
    }

    /* DATEPICKER */
    #datepicker{
        width: 345px;
    }
   .ui-datepicker .ui-datepicker-header, .ui-datepicker table thead, .ui-datepicker table tbody{
        padding: 0 92px !important;
    }
    .ui-datepicker .ui-datepicker-prev{
        left: 83px;
    }
    .ui-datepicker .ui-datepicker-next{
        right: 83px;

    }
    /* DATEPICKER */
}
.sem-resultados {
    margin-top: 40px;
    color: #666;
    font-size: 18px;
    font-family: "Roboto Condensed";
  }