@import "fonts.css";

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: scroll;
    scrollbar-width: none;
  }

  .frame {
    overflow-y: auto !important;
  }

  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 30px 40px;
  }

  .back-button {
    background: none;
    border: none;
    color: var(--chip-text);
    cursor: pointer;
    width: 40px;
  }

  .logo {
    width: 150px;
  }

/* ---------------- */


  .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 30px 40px 30px 40px;
  }

  .highlight{
    color: var(--brand);
  }

  .chips {
        display: grid;
        grid-template-columns: column;
        gap: 6px;
        padding: 50px 0 50px 0;
}

  .chip {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--chip-bg);
    color: var(--chip-text);
    border-radius: 10px;
    padding: 25px 0;

    transition: background .22s, color .22s, transform .22s;
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;

    font-size: var(--text-size);
  }

  .chip.selected {
    background-color: var(--brand);
    color: white;
    animation: pop 0.2s;
  }

  @keyframes pop {
    0% { transform: scale(1); }
    60% { transform: scale(1.11);}
    100% { transform: scale(1.07);}
  }

  .weiter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 20px 40px 20px 40px;
    width: auto;
    cursor: pointer;

    font-size: var(--text-size);
  }

  .weiter-btn img{
    width: 15px;
  }