@import url("https://fonts.googleapis.com/css?family=Lato");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400");
.color.select {
  width: 60px;
  height: 40px;
  border: 1px solid #aaaaa6;
  background: #eee;
  display: flex;
  border-radius: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
}
.color.select:hover {
  cursor: pointer;
  background: #fff;
}
.color.select:hover .name {
  color: #599fcf;
}
.color.select.selected {
  background: #515151;
}
.color.select.selected .name {
  color: #fff;
}
.color.bar {
  width: 45px;
  height: 15px;
}
.color.bar.red {
  background: #9d3c31;
}
.color.bar.clay {
  background: #adac9a;
}
.color.bar.brown {
  background: #6c5648;
}
.color.bar.white {
  background: #eaeae8;
  border: 1px solid #aaaaa6;
}
.color.bar.black {
  background: #232323;
}
.color.bar.blue {
  background: #4f738b;
}
.color.bar.burg {
  background: #422128;
}
.color.bar.green {
  background: #3c6b54;
}
.color.bar.beige {
  background: #ede3bf;
}
.color.bar.tan {
  background: #ccac79;
}
.color.bar.gray {
  background: #aaaaa6;
}
.color.bar.dkgray {
  background: #5c5d58;
}
.color.name {
  color: #3383bb;
  font-size: 0.75em;
  font-family: Lato;
}
.color.holder {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  max-width: 380px;
}
.end .color.holder,
.side .color.holder {
  margin-top: 4px;
}
.color.area {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  width: 480px;
}
.color.area .description {
  font-family: Roboto;
  margin-right: 30px;
}
.color.area .description .title {
  color: #069;
  font-weight: 300;
  font-size: 16px;
}
.color.area .description .text {
  font-size: 0.75em;
}
.roof.type.area {
  display: flex;
  width: 400px;
  position: relative;
  left: -9px;
}
.roof.select {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.roof.select img {
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease;
}
.roof.select .title {
  font-family: Roboto;
  font-weight: 300;
  color: $roof-text;
}
.roof.select:hover {
  cursor: pointer;
}
.roof.select:hover img {
  transform: scale3d(0.9, 0.9, 1);
}
.roof.select.selected img {
  transform: scale3d(1, 1, 1);
}
.roof.select.selected .title {
  color: $roof-text;
  font-weight: 600;
}
#colorSide,
#endSide {
  display: none !important;
}
