.wrapper {
  display: flex;
  flex-direction: column;
  width: 360px;
  height: 100%;
  @media (max-width: 1139px) {
    width: 100%;
  }
  .body {
    flex: 1 0 50%;
    margin-top: 24px;
    overflow-y: auto;
    @media (max-width: 1139px) {
      margin-top: 16px;
    }
    .row {
      display: flex;
      align-items: center;
      column-gap: 16px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      .label {
        display: block;
        width: 100%;
        cursor: pointer;
        .text {
          font-size: 16px;
          line-height: 19px;
          font-weight: 500;
          letter-spacing: -0.02em;
          color: var(--black);
        }
        .muted {
          margin-top: 4px;
          font-size: 15px;
          line-height: 19px;
          font-weight: 500;
          color: var(--secondary-text);
        }
      }
    }
  }
  .footer {
    display: flex;
    width: 100%;
    column-gap: 10px;
    margin-top: 30px;
    @media (max-width: 1139px) {
      margin-top: 30px;
    }
    .action {
      flex-grow: 1;
    }
  }
}
