
/** cost of attendance styles **/
#cost-of-attendance .fieldset {
  border: thin solid #ccc;
  margin-bottom: 0.5em;
  padding: 0; }
  #cost-of-attendance .fieldset input[type="radio"] {
    display: none; }
  #cost-of-attendance .fieldset input[type="radio"] + label {
    display: block;
    padding: 0.3em; }

#cost-of-attendance #coa-level label:hover {
  background-color: #00624A;
  color: #fff; }

#cost-of-attendance #coa-level input[type="radio"]:checked + label {
  color: #fff;
  background-color: #00624A; }

#cost-of-attendance #coa-living label:hover {
  background-color: #FFC325;
  color: balck; }

#cost-of-attendance #coa-living input[type="radio"]:checked + label {
  color: black;
  background-color: #FFC325; }

#cost-of-attendance #coa-residency label:hover {
  background-color: #B73D26;
  color: #fff; }

#cost-of-attendance #coa-residency input[type="radio"]:checked + label {
  color: #fff;
  background-color: #B73D26; }

#cost-of-attendance #coa-label-level {
  white-space: nowrap;
  color: white;
  background-color: #00624A;
  padding: 0 0.2em; }

#cost-of-attendance #coa-label-living {
  white-space: nowrap;
  color: black;
  background-color: #FFC325;
  padding: 0 0.2em; }

#cost-of-attendance #coa-label-residency {
  white-space: nowrap;
  color: white;
  background-color: #B73D26;
  padding: 0 0.2em; }

#cost-of-attendance .labels {
  font-weight: bolder;
  font-size: 110%;
  margin-bottom: 0.5em; }

#cost-of-attendance #coa-calculator {
  margin-top: 0.7em;
  padding-right: 0.625rem; }

#cost-of-attendance table {
  width: 100%;
  margin-top: 1.25em;
  margin-bottom: .55em; }
  #cost-of-attendance table .subtotal, #cost-of-attendance table .total {
    text-align: right;
    font-style: italic; }
  #cost-of-attendance table .total, #cost-of-attendance table #coa-total {
    font-size: 110%; }
  #cost-of-attendance table .money {
    position: relative;
    padding-left: 1.2rem;
    text-align: right; }
    #cost-of-attendance table .money:before {
      content: "$";
      display: block;
      position: absolute;
      left: 0.625rem; }
  @media (max-width: 600px) {
    #cost-of-attendance table {
      font-size: 85%; }
      #cost-of-attendance table .total, #cost-of-attendance table #coa-total {
        font-size: 100%; } }

/** end cost of attendance **/