/* Note: this CSS file has more than its share of magic numbers. Screens have only been tested in Firefox on Windows with default font-sizes. */

/* Anatomy:
.big-buttons             -- triggers the rules in this stylesheet
  .radio                 -- triggers rules in WET
    label                -- the actual big-button
      .bb-icon           -- SVG image, at top right
      .bb-header-wrapper -- larger text, including optional examples, at top left
        .bb-header       -- Actual header text
        .bb-example      -- Example
      .bb-text           -- smaller text, at bottom right
      (button)           -- actually a combination of ::before and ::after for the label
*/

.big-buttons {
  padding-top: 0;
}

.big-buttons .radio {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 15px;
  line-height: 1.65em;
}

.big-buttons-divider {
  border-right: 1px solid #cccccc;
}

@media (max-width: 991px){
.big-buttons-divider {
    border-right: none;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.big-buttons .radio label {
  width: 100%;
  padding: 15px;
  margin-top: 12px;
  margin-bottom: 20px;
  border: 1px solid #26374a;
  min-height: 130px;
}

.big-buttons .radio input[type="radio"]:checked + label,
.big-buttons .radio input[type="radio"]:focus + label {
  /* border-bottom-width: 10px; */
  -webkit-box-shadow: 0px 9px 0px 0px #26374a; 
  box-shadow: 0px 9px 0px 0px #26374a;
  /* margin-bottom: 11px; */
}
/* .big-buttons .radio input[type="radio"]:checked + label,
.big-buttons .radio input[type="radio"]:focus + label {
  border-bottom-width: 10px;
  margin-bottom: 11px;
} */

/* big buttons: icons */
.bb-icon {
  float: right;
}
.bb-icon img {
  height: 50px;
}

/* big buttons: header section */
.bb-header {
  font-size: 1.2em;
  font-weight: bold;
}
.bb-example {
  display: block;
}

/* big buttons: text */
.bb-text {
  min-width: 72px;
  text-align: right;
  float: right;
}

/* radio buttons: overrides for template.css */
.big-buttons .radio label::before {
  left: 29px;
  bottom: 34px;
  top: inherit;
}

/* checkmark */
.big-buttons .radio label::after {
  left: 40px;
  bottom: 43px;
  top: inherit;
  width: 13px;
  height: 22px;
  border: solid #333;
  border-width: 0 5px 5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 0;
  background-color: transparent;
}
