﻿.fa-star{
    padding-right: 15px;
}
.flex-grid-3col{
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
}
.l-col {
    width: 5%;
}
.m-col{
    width: 85%;
}
.r-col{
    width: 5%;
}

.orderButton{
    margin: 25px 0 25px 0;
    
}
.orderButton h3{
    padding: 1px;
    width: 40%;
    margin: auto;
    border: 2px solid #274678;
    border-radius: 7px;
}
.orderButton h3:hover{
    color: #FFFFFF;
    background-color:#467827;
}
.spacer{
    width: 90%;
    margin: auto;
    border-bottom: 1px solid rgb(147,159,183);
    border-top: 1px solid rgb(147,159,183);
    min-height: 3px;
}
input[type='checkbox'] {
  display: none;
}
.lbl-toggle {
  display: block;

  font-weight: bold;
  font-family: monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;

  padding: .5rem;

  color: #FFFFFF;
  background: #274678;

  cursor: pointer;

  border-radius: 7px;
  transition: all 0.25s ease-out;
  margin-bottom: 0 !important;
}

.lbl-toggle:hover {
  color: #467827;
}
.lbl-toggle::before {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;

  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}
.collapsible-content .content-inner {
  background: rgba(250, 224, 66, .7);
  border-bottom: 1px solid rgba(250, 224, 66, .45);

  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .5rem 1rem;
}
.collapsible-content {
  max-height: 0px;
  overflow: hidden;

  transition: max-height .25s ease-in-out;
}
.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
}
.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}