/*@color-darkgray: #333;*/
.transition {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu_transition {
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.calc {
  margin-top: 1.5em;
  border: 2px solid #a2a2a2;
}
.calc .header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background-color: #a2a2a2;
  padding: 5px;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.calc .header:hover {
  color: #BBC274;
}
.calc .header > .mdi {
  font-size: 1.15em;
}
.calc .content {
  padding: 5px;
}
.calc .content .field label {
  display: block;
  font-style: italic;
}
.calc .content .field input,
.calc .content .field select {
  width: 100%;
  text-align: right;
}
.calc .content .field input {
  box-sizing: border-box;
}
.calc .content .field > span {
  display: block;
  font-size: 0.9em;
  color: #999;
  text-align: center;
}
.calc .content .field.actions button {
  width: 100%;
}
.calc .content .field + .field {
  margin-top: 1em;
}
.calc #blkSuccess {
  display: none;
  margin-top: 1.5em;
}
.calc #blkSuccess .cost {
  color: #fff;
  background-color: #004131;
  padding: 0.5em;
}
.calc #blkSuccess .cost div {
  text-align: center;
  font-size: 2.5em;
}
.calc #blkSuccess .cost div .frac {
  font-size: 0.75em;
}
.calc #blkSuccess .params {
  margin-top: 1em;
}
.calc #blkSuccess .params div > span {
  display: block;
}
.calc #blkSuccess .params div > span:first-child {
  color: #999;
}
.calc #blkSuccess .params div > span + span {
  text-align: right;
}
.calc #blkSuccess .actions {
  margin-top: 1em;
}
.calc #blkSuccess .actions button {
  width: 100%;
}
.calc #blkSuccess .actions button + button {
  margin-top: 0.5em;
}
.calc #blkSuccess .notes {
  font-size: 0.9em;
  color: #999;
}
.pricegroup {
  margin-top: 1.5em;
}
.pricegroup > div.row {
  border: 1px solid #a2a2a2;
}
.pricegroup > div.row.headergroup {
  display: none;
}
.pricegroup > div.row > div {
  padding: 0.3em 0.5em;
  text-align: center;
}
.pricegroup > div.row > div.rowheader {
  background-color: #a2a2a2;
  color: #fff;
}
.pricegroup > div.row > div.rowheader > div {
  font-size: 0.9em;
}
.pricegroup > div.row > div:not(.rowheader):nth-child(2n+1) {
  background-color: #eee;
}
.actions {
  margin-top: 1.5em;
}
.actions button {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .pricegroup {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.3em 0.1em;
    margin-top: 2.5em;
  }
  .pricegroup > div.row {
    display: table-row;
    border: none;
  }
  .pricegroup > div.row.headergroup {
    display: table-row;
  }
  .pricegroup > div.row.headergroup .header {
    font-weight: 600;
  }
  .pricegroup > div.row:not(.headergroup):nth-child(2n) > div {
    background-color: #eee;
  }
  .pricegroup > div.row:not(.headergroup):nth-child(2n) > div:not(.rowheader):nth-child(2n+1) {
    background-color: #eee;
  }
  .pricegroup > div.row:not(:last-child) > div {
    border-bottom: 1px solid #bfbfbf;
  }
  .pricegroup > div.row > div {
    display: table-cell;
    vertical-align: middle;
  }
  .pricegroup > div.row > div.rowheader {
    background-color: transparent;
    color: #213547;
    text-align: left;
    width: 25em;
  }
  .pricegroup > div.row > div:not(.rowheader):nth-child(2n+1) {
    background-color: transparent;
  }
  .pricegroup > div.row > div:not(.rowheader):not(.header) {
    font-size: 1.08em;
  }
  .pricegroup > div.row > div > span {
    display: none;
  }
  .actions {
    margin-top: 2em;
  }
  .actions button {
    width: 20em;
  }
}
