/* Green: #85c653 */
/* Grey: #4d4d4d */

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  background: #eee;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.u-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 900px;
  margin: 0 auto;
  position: relative;
}

.copyright {
  position: absolute;
  bottom: -2px;
  left: 12px;
  z-index: 5;
  font-size: 12px;
  font-weight: 700;
}
.copyright a {
  text-decoration: none;
  color: black;
}
.copyright a:hover {
  text-decoration: underline;
}

.c-heading {
  position: absolute;
  top: -6px;
  left: 0;
  z-index: 10;
  margin: 0;
  padding: 14px 0;
  width: 330px;
  height: 52px;
  background: #85c653;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}

.c-builder {
  position: relative;
  height: 600px;
  width: 900px;
  border-top: 6px solid #85c653;
}

.c-builder__canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}



/*
 * Base model select
 */
.base-dropdown-wrapper {
  position: absolute;
  position: absolute;
  top: 8px;
  left: 370px;
  z-index: 10;
}
.base-dropdown-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 10px;
  height: 0;
  border-width: 6px;
  border-color: transparent;
  border-style: solid;
  border-top-color: #4d4d4d;
  pointer-events: none;
}
.base-dropdown-wrapper.\--unselected:after {
  border-top-color: white;
}
.c-base-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  border: none;
  border-radius: 0;
  height: 30px;
  width: 225px;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  padding-left: 10px;
  font-size: 14px;
  border-bottom: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
.c-base-dropdown.\--unselected {
  background: #4d4d4d;
  color: #fff;
}



/*
 * Price breakdown
 */
.c-price-breakdown {
  display: block;
  list-style: none;
  margin: 0;
  width: 290px;
  position: absolute;
  top: 8px;
  right: 15px;
  z-index: 10;
  font-size: 12px;
  font-weight: 600;
}
.c-line-item {
  background: #ccc;
  color: #4d4d4d;
  padding: 4px;
}
.c-line-item + .c-line-item {
  margin-top: 6px;
}
.c-line-item--total {
  background: none;
  color: #85c653;
  border-top: 1px solid black;
  font-size: 18px;
  font-weight: 400;
}
.c-line-item__name {
  float: left;
}
.c-line-item__value {
  float: right;
}



/*
 * Modification tabs
 */
.c-mod-tabs {
  position: absolute;
  bottom: 130px;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 10;
}
.c-mod-tabs li {
  padding: 1px 10px;
  float: left;
  background: #4d4d4d;
  color: white;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all .1s ease-out;
}
.c-mod-tabs li:hover {
  color: #85c653;
}
.c-mod-tabs li:active {
  background: white;
}
.c-mod-tabs li.\--active {
  background: #85c653;
  cursor: default;
}
.c-mod-tabs li.\--active:hover {
  color: white;
}


.c-mod-options {
  position: absolute;
  bottom: 18px;
  height: 112px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 11px 7px 0;
  background: rgba(133, 198, 83, 0.75);
  z-index: 10;
  list-style: none;
  overflow: hidden;
  text-align: center;
}

.c-mod-options.two-rows {
  text-align: left;
}

.c-mod-options li {
  display: inline-block;
}

.c-mod-options__button {
  margin: 3px;
  margin-top: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.c-mod-options__button:active img {
  transform: scale(.9);
}
.c-mod-options__button:focus {
  outline: none;
  background: rgba(255,255,255,0.2);
}

.c-mod-options__button.\--active:before {
  content: "";
  display: block;
  height: 0;
  border-width: 8px;
  border-color: transparent;
  border-style: solid;
  border-top-color: currentColor;
  position: absolute;
  top: -8px;
  left: 50%;
  margin-left: -8px;
}

.c-mod-options.lots .c-mod-options__button {
  margin: 0;
}
.c-mod-options.lots .c-mod-options__button img {
  width: 50px;
}

.c-mod-options.single-row .c-mod-options__button {
  margin: 0;
  margin-top: 27px;
}


/* X for removable options */
.c-mod-options__button.\--active:hover:before {
content: "\00D7";
  display: block;
  height: auto;
  border: none;
  font-size: 16px;
  top: -15px;
  margin-left: -5px;
}
