

  .expand-icon{
    position: absolute;
    right: 20px;
    top: 20px;
  }

  input[type=checkbox] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    -moz-appearance: none;
        appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: gray;
    width: 1.5em;
    height: 1.5em;
    border: 0.15em solid gray;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
  }

  input[type=checkbox]::before {
    content: "";
    width: 1em;
    height: 1em;
    -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
            clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: #014921;
  }

input[type=checkbox]:checked::before {
  transform: scale(1);
}
.order-option-bar{
  line-height: 1.5;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 1em;
  font-size: 16px;
}
.form-control{
  font-size: 16px;
}


.form-control + .form-control {
  margin-top: 1em;
}

.order-option{
    padding: 10px;
    border-bottom: solid 1px gray;
    margin: 5px;
    position: relative;
}
.option-expanded-content{
    padding: 10px;
}
.order-option-clear-button{
    border-radius: 5px;
    background-color: transparent;
    color: #014921;
    text-transform: uppercase;
    padding: 5px;
    border: solid 1px #014921;
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
}
.quantity-option-row{
    padding: 7px;
    border-bottom: solid 1px lightgray;
}
.quantity-option-row:last-child{
    border-bottom: none;
}

.menu-text-container{
    width: 100%;
    white-space: normal;
    color: #726c64;
    margin-bottom: 10px;
}
.quantity-display-name{
    text-transform: uppercase;
    margin-left: 10px;
}
.quantity-amount{
    margin-left: 10px;
    color: #726c64;
}

.order-menu-radio{
    accent-color:#014921;
    font-size: 16px;
    width: 20px;
    height: 20px;
}

.shopping-list-item{
  display: grid;
  grid-template-columns: auto auto;
  padding: 10px;
  margin: 10px;
  column-gap: 10px;
  border-bottom: solid 1px #CECECE;
}

.shopping-list-item-image{
  width: 100px;
  height: 100px;
  background-color: white;
  border: solid 1px black;
}

.shopping-list-item-name{
  font-size: 20px;
  font-family: 'Moret', serif;
  margin-bottom: 5px;
}

#shopping-list-download-btn{
  height: 40px;
}

@media print {
  .shopping-list-item-image{
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .nav-bar{
    display: none;
  }
  .footer{
    display: none;
  }
  #shopping-list-download-btn{
    display: none;
  }
}

.vendor-options{
  min-height: 250px;
  padding: 10px;
  margin-top: 50px;
}

.vendor-option{
  border: solid 1px black;
  border-radius: 5px;
  padding: 10px;
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 5px;
  margin-top: 10px;
}

.vendor-option .vendor-name{
  font-weight: bold;
  font-size: 18px;
}

.vendor-option input[type=checkbox]{
  margin-top: 6px;
  border-color: #294B24;
}

.existing-order-view .indented{
  margin-left: 20px;
}

.existing-order-view .order-block{
  border: solid 1px black;
  padding: 15px;
  margin-top: 20px;
}

.scheduling-description-container{
  margin-bottom: 30px;
}

.time-button-container{
  margin-top: 10px;
}

.order-time-group-top-bar{
  padding: 5px;
}