.filters {
  width: 100%;
  height: 100%;
  gap: 4px;
  padding: 0 0 1px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;

  .select_1_2 {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .select_2_3 {
    grid-column-start: 2;
    grid-column-end: 3;
  }

  .select_1_3 {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  /* >:nth-child(1){
        grid-column-start: 1;
        grid-column-end: 2;
    }

    >:nth-child(2){
        grid-column-start: 2;
        grid-column-end: 3;
    }

    >:nth-child(3){
        grid-column-start: 1;
        grid-column-end: 2;
    }
    >:nth-child(4){
      grid-column-start: 2;
      grid-column-end: 3;
    } */

  .newMeasureBtn_1_2 {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .newMeasureBtn_2_3 {
    grid-column-start: 2;
    grid-column-end: 3;
  }

  .content-button {
    .button-opc {
      display: flex;
      align-items: center;
      gap: 4px;
      color: white;
      border: none;
      border-radius: 5px;
      padding: 4px;
      cursor: pointer;

      .material-symbols-outlined {
        font-variation-settings:
          'FILL' 1,
          'wght' 400,
          'GRAD' 0,
          'opsz' 24;
      }
    }

    [disabled] {
      cursor: not-allowed;
      opacity: 0.5;

      span {
        cursor: not-allowed;
      }
    }
  }

  .content-button-manual {
    .button-opc {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 4px;
      color: white;
      background-color: var(--color-info-S360);
      border: none;
      border-radius: 5px;
      padding: 4px;
      cursor: pointer;

      .material-symbols-outlined {
        font-variation-settings:
          'FILL' 1,
          'wght' 400,
          'GRAD' 0,
          'opsz' 24;
      }
    }

    [disabled] {
      cursor: not-allowed;
      opacity: 0.5;

      span {
        cursor: not-allowed;
      }
    }
  }



  .select-menu {
    .options {
      z-index: 10000000;
    }

    .select-btn {
      /* height: 100% !important; */
    }
  }
}
