#lensApp {
    padding:0 0rem;
    margin:0;
    /* font-size: 1rem; */
    width: 100%;
    max-width: 400px;
    font-family: "Karla", Arial, Helvetica, sans-serif;
}

#lensApp h1,
#lensApp h2,
#lensApp h3,
#lensApp h4,
#lensApp h5,
#lensApp h6 {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1.3rem;
    font-family: "Karla", Arial, Helvetica, sans-serif;
}

#lensApp h2 {
  font-weight: bold;
}

.choices {
    width: 100%;
}

.choice-wrap {
    margin: 0 0 0 0;
}

.choice {
    padding: 0.4rem 0.4rem 0.4rem 0.8rem;
    border: 1px solid gray;
    border-radius: 6px;
    position: relative;
    margin: 0.4rem 0 0 0;
    /* flex is applied from the lux.css class: flex-cards-ul */
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: nowrap;
}

.choice:hover,
.choice.selected {
    background: lightcyan;
}

.choice.selected,
.choice .choice.selected {
    background:#e2e3e3;
    font-style: italic;
}

.choice.selected .left h2::before,
.choice .choice.selected .left h3::before {
    content: '✔️ ';
}

.choice .choice,
.choice .choice {
    background: white;
}

/* .left & .right are made flex from the lux.css class: flex-cards-ul */

.choice-icon {
    align-self: center;
}

.left {
    flex-grow: 1;
    cursor: pointer;
    /* also make the children of this parent flex */
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}

.choices.sub-choices {
    margin: 0 1.3rem;
}

.cost {
    font-weight: 200;
    font-size: 1rem;
    margin-left: 1rem;
}

.cost::before {
    content: '+$';
}

.more-info-icon {
    margin: 0;
    padding: 0.2rem 0 0 0;
    color:#666;
    background: white;
    border: 1px solid #666;
    border-radius: 100%;
    height: 2rem;
    width: 2rem;
    font-family: serif;
    font-weight: bolder;
    font-size: 1.5rem;
}

.more-info-icon:hover,
.more-info-icon.active {
    border: 1px solid #333;
    background:#333;
    color: white;
}

.more-info-text {
    margin: 0 1.3rem;
    border: 1px solid gray;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 0.6rem;
}

/* the final review screen */
#lensReview ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

#lensReview ul > li {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

#lensReview .cost::before {
    content: '$';
}

#lensReview .subtotal-line {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid gray;
}

#lensReview .subtotal-line .cost {
    font-weight: bold;
}
