.providers {
  margin: 60px 10%;
  .header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
    position: relative;
  }
  .compare-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--color-gris-01);
    &.ways2 {
      grid-template-columns: repeat(3, 1fr);
    }
    &.ways3 {
      grid-template-columns: repeat(4, 1fr);
    }
    .provider-header,
    .filters {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      h2 {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 0px;
      }
    }
    .filters {
      justify-content: end;
      img {
        width: 16px;
      }
    }
    [type="text"] {
      width: 100%;
    }
  }
}
.provider-summary {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--color-azul-4);
  margin-bottom: 40px;
  .header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    .header-left {
      display: flex;
      gap: 32px;
      label {
        color: var(--color-gris-01);
        display: flex;
        align-items: center;
        gap: 16px;
      }
    }
    .header-right {
      display: flex;
      gap: 24px;
      font-size: 16px; 
      input:checked ~ label {
        &.check {
          display: flex;
        }
        &.not-check {
          display: none;
        }
      }
      input:not(input:checked) ~ label {
        &.check {
          display: none;
        }
        &.not-check {
          display: flex;
        }
      }
    }
  }
}

.section {
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-gris-03);
  .section-header {
    display: flex;
    gap: 16px;
    padding: 8px;
    justify-content: space-between;
    .header-left {
      display: flex;
      align-items: center;
      gap: 16px;
      i {
        color: var(--color-azul-dark);
      }
    }
  }
  .section-content {
    display: none;
    flex-direction: column;
    font-size: 16px;
    color: var(--color-gris-01);
    font-weight: 400;

    &.ways2 .row {
      grid-template-columns: repeat(3, 1fr);
    }
    &.ways3 .row {
      grid-template-columns: repeat(4, 1fr);
    }
    .row {
      margin: 4px 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      width: 100%;
      justify-content: left;
      align-items: center;
      .item {
        padding: 16px;
      }
      .label {
        font-weight: 600;
      }
    }
    .sites .row {
      align-items: start;
    }
    .row:nth-child(even) {
      background: var(--color-azul-4);
    }
  }
  .depto-content {
    flex-direction: column;
    display: none;
  }
}