/* --- MIXIN --- */
/*  variables */
/* Layout */
@import url("https://fonts.googleapis.com/css?family=Encode+Sans:800&display=swap");
#configurator {
  z-index: 0; }

#pagemenu {
  z-index: 10; }

.build-form {
  display: table; }

.configurator-row {
  display: table-row;
  height: 60px;
  vertical-align: middle;
  font-size: 1rem; }
  @media (max-width: 40rem) {
    .configurator-row {
      display: block;
      height: auto;
      position: relative; } }
  .configurator-row > * {
    vertical-align: middle; }

.caption {
  display: table-cell;
  width: 11em;
  text-align: right;
  padding-top: 0.75em;
  padding-right: 1em;
  vertical-align: top; }
  @media (max-width: 40rem) {
    .caption {
      display: block;
      width: 100%;
      text-align: center; } }

.configurator-options {
  display: table-cell;
  padding-bottom: 1em; }
  @media (max-width: 40rem) {
    .configurator-options {
      display: block;
      text-align: center;
      padding-bottom: 2.8em; } }

#stats {
  display: table;
  width: 100%;
  padding: 3px; }
  @media (max-width: 40rem) {
    #stats {
      font-size: 0.8rem; } }
  #stats dl {
    display: table-cell;
    text-align: center;
    border: none;
    outline: none; }
  #stats dt,
  #stats dd {
    display: block;
    margin: 0;
    padding: 0; }
  #stats dl {
    min-height: 6rem; }
  #stats dd {
    color: #F47721;
    font-size: 1em;
    height: 2em;
    line-height: 2em; }

/* Behaviour */
/* Behaviour --- BUTTONS */
#build-form input[type='radio'] {
  /* Hide all the radio buttons */
  display: none; }
  #build-form input[type='radio'] + label + input.number {
    /* Hide manual input fields until the radio button is checked */
    visibility: hidden;
    width: 0; }
  #build-form input[type='radio']:checked + label + input.number {
    visibility: visible;
    width: 6em; }
  #build-form input[type='radio'] + label + input.number + span.suffix {
    visibility: hidden; }
  #build-form input[type='radio']:checked + label + input.number + span.suffix {
    visibility: visible; }

/* Behaviour ---  Tooltip */
label[data-title] {
  position: relative; }
  @media (max-width: 40rem) {
    label[data-title] {
      position: static; } }
  label[data-title]:hover:after {
    color: white;
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.8));
    font-size: 1rem;
    font-weight: 700;
    display: block;
    position: absolute;
    left: -8em;
    bottom: 2.25em;
    padding-bottom: 0.5em;
    content: attr(data-title);
    background-color: transparent;
    background-image: url("../../assets/tooltip.svg");
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 20em;
    text-align: center;
    z-index: 100; }
    @media (max-width: 40rem) {
      label[data-title]:hover:after {
        font-size: 3.7vw;
        background-image: none;
        background-color: #29ABE2;
        filter: none;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        padding-bottom: 0; } }

/* Behaviour --- make rows unavailable */
#build-form .configurator-row.unavailable .caption {
  color: #ccc; }
#build-form .configurator-row.unavailable label {
  display: none !important; }
#build-form .configurator-row.unavailable input {
  display: none !important; }

/* Theming */
/* Style radio buttons as real buttons using their labels */
#build-form {
  /* Style labels connected to radio buttons */
  /* Style input fields */
  /* Style suffix */ }
  #build-form input[type='radio'] + label, #build-form input.number {
    display: inline-block;
    padding: 0.2em 1em;
    margin: 0.35em;
    border: 1px solid #555555;
    border-radius: 0.1em;
    cursor: pointer;
    transition: background-color 300ms, border-color 300ms;
    color: #555555;
    font-size: 1rem;
    font-weight: bolder;
    text-align: center;
    background-color: white;
    overflow: visible; }
  #build-form input[type='radio'] + label {
    /* Style all the labels as buttons */ }
  #build-form input[type='radio']:not(:checked) + label:hover {
    border-color: #F47721;
    outline: 2px solid #F47721;
    outline-offset: -1px;
    color: #F47721; }
  #build-form input[type='radio']:checked + label {
    /* active state of the buttons */
    background-color: #000000;
    border-color: #000000;
    color: white; }
  #build-form input[type='radio']:disabled + label, #build-form input[type='radio']:disabled:checked + label {
    background-color: white !important;
    color: #cccccc !important;
    border-color: #cccccc !important; }
  #build-form input.number {
    padding-left: 0;
    margin-left: -1em;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: width 500ms;
    padding-right: 0;
    color: black;
    border-color: black;
    background-color: #f0f0f0; }
    #build-form input.number:focus {
      background: #fef1e9; }
  #build-form .suffix {
    font-size: 16px; }

#svgContainer {
  display: none; }

/*# sourceMappingURL=configurator.css.map */
