/*14. Filtros*/
.m-filter {
    display: flex;
    align-items: center;
    background: #eff2f4;
    margin-bottom: 40px;
    padding: 20px 0;
}
.m-filter__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;
    flex-wrap: wrap;
}
.m-filter span {
    font-weight: 700;
    font-size: 14px;
    color: #005187;
}

.m-filter .filters {
    display: flex;
    row-gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.m-filter button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    padding: 10px 30px;
    background: var(--light-blue);
    font-weight: bold;
    font-size: 12px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all .3s;
    z-index: 1;
    text-align: center;
    border: solid 1px var(--light-blue);
    gap: 10px;
}

.m-filter button:hover {
    background-color: #003960;
    border-color: #003960;
}

.m-filter__filters {
    display: flex;
    align-items: center;
}

.m-filter__dropdown {
    position: absolute;
    z-index: 99;
    display: none;
}

.m-filter__dropdown::before {
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
    position: absolute;
    top: 2px;
    right: -54px;
}

.m-filter__dropdown ul {
    left: auto;
    right: -85px;
    width: 200px;
    background: #fff;
    padding: 12px 18px;
    position: absolute;
    list-style: none;
    margin: 0;
    border-radius: 4px;
    z-index: 99;
    top: 7px; 
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.m-filter__dropdown ul > li {
    border-bottom: 1px solid #e8e8e8;
    font-weight: 400;
    font-size: 16px;
    color: #005187;
    padding: 7px 20px 7px 5px;
    cursor: pointer;
    transition: all 1s;
}

.m-filter__dropdown--item_active {
    background: url("../images/ico-search.svg") 145px 10px no-repeat;
    background-size: 20px;
}

.m-filter__dropdown ul > li:hover {
    text-decoration: none;
    transform: scale(1.05);
}

.m-filter__dropdown ul > li:last-child {
    border-bottom: none;
}

.m-filter .button__clear {
    display: flex;
    align-items: center;
    gap: 15px;
}

.m-filter__search {
    width: 560px;
    height: 48px;
    padding: 0 10px;
    /* background: #ffffff url("../images/ico-search.svg") no-repeat calc(100% - 10px) center; */
    border: 1px solid #cccccc;
    font-weight: 400;
    font-size: 14px;
    outline: none;
}

.m-filter__search__submit {
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.m-filter__search__select {
    width: 176px;
    height: 48px;
    padding: 0 30px 0 10px;
    border: 1px solid #cccccc;
    font-weight: 400;
    font-size: 14px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #666666;
}

.m-filter__search__select option[disabled] {
    background-color: #bdbdbd;
}


.m-filter__search__select, .m-filter__search__select::after {
  content: "";
  background: #ffffff url("../images/arrow-down.svg") no-repeat center right 15px;
}
@media (max-width: 576px) {
    .m-filter .button__clear {
        flex-wrap: wrap;
    }

    .m-filter__search__submit {
        right: 25px;
    }

    .m-filter__search__select {
        margin-left: unset;
        margin-bottom: 5px;
        width: 100%;
    }
    .m-filter {
        background: none;
        height: auto;
        margin-bottom: 0px;
    }
    .m-filter__content {
        flex-direction: column;
        align-items: flex-start;
    }
    .m-filter__content fieldset {
        display: block;
        background: #eff2f4;
        padding: 20px;
        width: 100%;
    }
    .m-filter span {
        display: block;
        margin-bottom: 5px;

    }
    .m-filter button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .m-filter button[name="clear"] {
        margin-bottom: 0px;
    }

    .m-filter button::before {
        display: block;
        margin: 0;
        width: 100%;
        height: 1px;
        margin-bottom: 20px;
    }
    .m-filter span + button::before,
    .m-filter span + a::before {
        display: none;
    }
    .m-filter__search {
        width: 100%;
        margin: 0;
    }
}


.sidebar-filters {

    .sidebar-filters__clear {
      display: flex;
      padding: 25px;
      align-items: center;
      justify-content: center;
      background: #EFF2F4;

      button {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 48px;
        padding: 10px 30px;
        border: 1px solid var(--light-blue);
        font-weight: bold;
        font-size: 12px;
        background: transparent;
        width: 100%;
        color: var(--light-blue);
        transition: all .3s;
        cursor: pointer;
        text-align: center;
        z-index: 1;
        gap: 10px;
      }

      button:hover {
        border-color: #003960;
        color: #003960;
      }
    }

    .m-accordion {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .m-accordion__item {
        position: relative;
        background-color: #EFF2F4;
    }
    .m-accordion__item__title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 500;
        font-size: 14px;
        color: #666666;
        padding: 15px 24px;
        margin-bottom: 0;
        border-bottom: 1px solid #CDCDCD;
        cursor: pointer;
    }
    .m-accordion__item__title::after {
        display: block;
        content: "";
        width: 12px;
        height: 12px;
        background: url("../images/arrow-down.svg") no-repeat;
        transition: all .3s;
    }

    .m-accordion__item__content {
        font-size: 12px;
        color: #444444;
        visibility: hidden;
        height: 0;
        opacity: 0;
        transition: opacity .3s;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #CDCDCD;
    }
    
    .m-accordion__item__content p {
        margin-bottom: 25px;
    }
    
    .m-accordion__item.--active .m-accordion__item__title::after {
        transform: rotate(180deg);
    }
    .m-accordion__item.--active .m-accordion__item__content {
       visibility: visible;
       height: auto;
       opacity: 1;
       padding: 10px 30px;
    }

    .m-accordion__item.--active .m-accordion__item__title {
        border-bottom: unset;
    }
    
    .m-accordion__item__content h4 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    
    .m-accordion__item__content p {
        color: white;
    }
    
    .m-accordion__item__content small {
        font-size: 18px;
        font-weight: 500;
        background-color: #83D0F5;
        padding: 3px;
    }

    @supports (-webkit-appearance: none) or (-moz-appearance: none) {
        .checkbox-wrapper-13 {
            display: flex;
            gap: 3px;
        }

      .checkbox-wrapper-13 input[type=checkbox] {
        --active: #0BBBEF;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #0BBBEF;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
      }
      .checkbox-wrapper-13 input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
      }
      .checkbox-wrapper-13 input[type=checkbox]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
      }
      .checkbox-wrapper-13 input[type=checkbox]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
      }
      .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
      }
      .checkbox-wrapper-13 input[type=checkbox]:disabled + label {
        cursor: not-allowed;
      }
      .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
      }
      .checkbox-wrapper-13 input[type=checkbox]:focus {
        box-shadow: 0 0 0 var(--focus);
      }
      .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
        width: 21px;
      }
      .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
        opacity: var(--o, 0);
      }
      .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
        --o: 1;
      }
      .checkbox-wrapper-13 input[type=checkbox] + label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
        max-width: 150px;
      }
    
      .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
      }
      .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
      }
    }
    
    .checkbox-wrapper-13 * {
      box-sizing: inherit;
    }
    .checkbox-wrapper-13 *:before,
    .checkbox-wrapper-13 *:after {
      box-sizing: inherit;
    }

    @supports (-webkit-appearance: none) or (-moz-appearance: none) {
      .radio-wrapper-13 input[type=radio] {
          --active: #0BBBEF;
          --active-inner: #fff;
          --focus: 2px rgba(39, 94, 254, .3);
          --border: #BBC1E1;
          --border-hover: #0BBBEF;
          --background: #fff;
          --disabled: #F6F8FF;
          --disabled-inner: #E1E6F9;
          --check-color: #fff;
          -webkit-appearance: none;
          -moz-appearance: none;
          width: 21px;
          height: 21px;
          outline: none;
          display: inline-block;
          vertical-align: top;
          position: relative;
          margin: 0;
          cursor: pointer;
          border: 1px solid var(--bc, var(--border));
          background: var(--b, var(--background));
          border-radius: 50%;
          transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
      }
  
  
      /* Adicionando o ícone SVG no botão marcado */
      .radio-wrapper-13 input[type=radio]:checked:before {
        width: 6px;
        content: "";
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        display: block;
        position: absolute;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 40deg));
      }
  
      .radio-wrapper-13 input[type=radio]:checked {
          --b: var(--active);
          --bc: var(--active);
          --s: 1; /* Aumenta o inner quando marcado */
      }
  
      .radio-wrapper-13 input[type=radio]:disabled {
          --b: var(--disabled);
          cursor: not-allowed;
          opacity: 0.9;
      }
  
      .radio-wrapper-13 input[type=radio]:disabled:checked {
          --b: var(--disabled-inner);
          --bc: var(--border);
      }
  
      .radio-wrapper-13 input[type=radio]:disabled + label {
          cursor: not-allowed;
      }
  
      .radio-wrapper-13 input[type=radio]:hover:not(:checked):not(:disabled) {
          --bc: var(--border-hover);
      }
  
      .radio-wrapper-13 input[type=radio]:focus {
          box-shadow: 0 0 0 var(--focus);
      }
  
      .radio-wrapper-13 input[type=radio] + label {
          display: inline-block;
          vertical-align: middle;
          cursor: pointer;
          margin-left: 4px;
          max-width: 240px;
      }
  
      .radio-wrapper-13 * {
          box-sizing: inherit;
      }
  
      .radio-wrapper-13 *:before,
      .radio-wrapper-13 *:after {
          box-sizing: inherit;
      }
  }
  

}

.sidebar-filters .filter-disabled li h3{
    filter: grayscale(100) opacity(0.5);
    pointer-events: none;
}

