@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css");
body {
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

#loading {
  display: none;
  background-color: #fff;
}
#loading > div {
  height: 100vh;
}

body.loading > * {
  display: none;
}
body.loading #loading {
  display: block;
}

.form-select {
  border-radius: 0;
}

.btn {
  border-radius: 0;
}
.btn.btn-success {
  background-color: #558b31;
}

aside {
  display: inline-block;
  width: 300px;
  height: 100vh;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
aside header .logo {
  background-image: url("../images/logo_Greenfield_Contractors.png");
  display: block;
  width: 200px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 20px;
  margin: auto;
}
aside header nav {
  overflow: auto;
}
aside header nav > a {
  font-size: 20px;
  padding: 10px 10px 10px 60px;
  cursor: pointer;
  display: block;
}
aside header nav > a > div {
  margin-left: -50px;
}
aside header nav > a:hover {
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
}
aside #selectedOptions {
  padding: 30px 10px 10px 60px;
  font-size: 14px;
  line-height: 16px;
}
aside #selectedOptions > span {
  display: block;
  margin-bottom: 5px;
}
aside #selectedOptions > div > strong {
  display: block;
}
aside main {
  display: none;
  padding: 0 20px;
}
aside main .btn-back {
  border: 1px solid #ced4da;
  padding: 2px 20px;
}
aside main article {
  display: none;
}
aside main article.foundation .foundation-message {
  color: #dc3545;
  font-size: 14px;
  padding-top: 5px;
}
aside main article.truss .color {
  padding: 10px;
  text-align: center;
}
aside main article.truss .color > a {
  width: 50px;
  height: 50px;
  background-color: #000;
  text-align: left;
  padding-left: 3px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ced4da;
}
aside main article.truss .color > a > i {
  display: none;
}
aside main article.truss .color > a.selected {
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #0d6efd;
}
aside main article.truss .color > a.selected > i {
  display: block;
  color: #0d6efd;
  line-height: 16px;
  width: 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #fff;
  margin-top: 16px;
  overflow: hidden;
}
aside footer {
  height: 150px;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
aside footer .total {
  font-size: 20px;
  padding: 20px 0;
}
aside footer .total .total-price {
  font-weight: bold;
}
aside footer .btn-submit {
  font-size: 28px;
  padding: 5px 30px;
}

body.nav-dimensions nav, body.nav-foundation nav, body.nav-truss nav, body.nav-edge nav {
  display: none;
}
body.nav-dimensions main, body.nav-foundation main, body.nav-truss main, body.nav-edge main {
  display: block;
}
body.nav-dimensions main article.dimensions {
  display: block;
}
body.nav-foundation main article.foundation {
  display: block;
}
body.nav-truss main article.truss {
  display: block;
}
body.nav-edge main article.edge {
  display: block;
}

.renderer {
  background-color: #eee;
  display: inline-block;
  width: calc(100% - 300px);
  height: 100vh;
  position: absolute;
  top: 0;
  left: 300px;
}
.renderer > div {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

#viewSwitcher {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #edc951;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 10px;
  border-radius: 50px;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  color: #558b31;
  border: 4px solid #558b31;
}
#viewSwitcher:hover {
  background-color: #558b31;
  border: 4px solid #edc951;
  color: #edc951;
}
#viewSwitcher > span {
  display: none;
}

body.render-2d #renderer-3d {
  z-index: -1;
}
body.render-2d #viewSwitcher > span:last-of-type {
  display: block;
}
body.render-3d #renderer-2d {
  z-index: -1;
}
body.render-3d #viewSwitcher > span:first-of-type {
  display: block;
}

#renderer-2d {
  background-color: #eee;
  align-items: center;
  justify-content: center;
}
#renderer-2d .machinery {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#renderer-2d .machinery.tractor {
  width: 50px;
  height: 75px;
  background-image: url("../images/2d_tractor.png");
}
#renderer-2d .machinery.loader {
  width: 75px;
  height: 36px;
  background-image: url("../images/2D_end_loader.png");
}
#renderer-2d .machinery.truck {
  width: 75px;
  height: 31px;
  background-image: url("../images/2D_pickup_truck.png");
}
#renderer-2d .machinery.farmer {
  width: 25px;
  height: 25px;
  background-image: url("../images/2d_farmer.png");
}
#renderer-2d .machinery.silo {
  width: 50px;
  height: 50px;
  background-image: url("../images/2d_silo.png");
}
#renderer-2d .base-container {
  position: relative;
}
#renderer-2d .base-container > * {
  position: absolute;
  top: 0;
  left: 0;
}
#renderer-2d .base-container .base {
  border: 4px solid #000;
  border-left-width: 1px;
  border-right-width: 1px;
  width: 100%;
  height: 100%;
}
#renderer-2d .base-container .base.one_end_wall {
  border-right-width: 4px;
}
#renderer-2d .base-container .base.two_end_walls {
  border-left-width: 4px;
  border-right-width: 4px;
}
#renderer-2d .base-container .base .door-left, #renderer-2d .base-container .base .door-right {
  border-left: 4px solid #fff;
  width: 0;
  height: 100px;
  margin: -50px 0 0 0;
  position: absolute;
  top: 50%;
  left: -4px;
  right: auto;
  opacity: 1;
}
#renderer-2d .base-container .base .door-right {
  left: auto;
  right: -4px;
}
#renderer-2d .base-container .width-size {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  height: 100%;
  right: -50px;
  width: 50px;
  left: auto;
  font-size: 14px;
}
#renderer-2d .base-container .width-size > hr {
  margin: 0;
  position: absolute;
  left: 37px;
  opacity: 1;
  border-left: 1px solid #000;
  width: 0;
  height: 100%;
}
#renderer-2d .base-container .width-size > div {
  position: relative;
  width: 20px;
  margin-left: 30px;
  height: 100%;
  line-height: 14px;
}
#renderer-2d .base-container .width-size > div > span {
  background-color: #eee;
  padding: 5px 0;
  position: absolute;
  top: calc(50% - 14px);
}
#renderer-2d .base-container .width-size > div .arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  left: 3px;
}
#renderer-2d .base-container .width-size > div .arrow.arrow-top {
  border-bottom: 5px solid #000;
  top: 0;
}
#renderer-2d .base-container .width-size > div .arrow.arrow-bottom {
  border-top: 5px solid #000;
  bottom: 0;
}
#renderer-2d .base-container .length-size {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  height: 50px;
  bottom: -50px;
  width: 100%;
  top: auto;
  font-size: 14px;
}
#renderer-2d .base-container .length-size > hr {
  margin: 0;
  position: absolute;
  top: 36px;
  opacity: 1;
  border-top: 1px solid #000;
  width: 100%;
  height: 0;
  font-size: 0;
}
#renderer-2d .base-container .length-size > div {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  line-height: 14px;
  position: relative;
}
#renderer-2d .base-container .length-size > div > span {
  background-color: #eee;
  padding: 0 10px;
}
#renderer-2d .base-container .length-size > div .arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 2px;
}
#renderer-2d .base-container .length-size > div .arrow.arrow-left {
  border-right: 5px solid #000;
  left: 0;
}
#renderer-2d .base-container .length-size > div .arrow.arrow-right {
  border-left: 5px solid #000;
  right: 0;
}
#renderer-2d .base-container .vertical-line {
  border-left: 1px solid #000;
  width: 0;
  height: 100%;
  margin: 0;
}
#renderer-2d .base-container .horizontal-line {
  border-top: 1px solid #000;
  width: 100%;
  height: 0;
  margin: 0;
}

#order-summary .modal-dialog .modal-content .modal-header {
  background-color: #558b31;
  color: #fff;
  padding: 5px 20px;
}
#order-summary .modal-dialog .modal-content .modal-body .setup-summary > .row > div:last-of-type, #order-summary .modal-dialog .modal-content .modal-body .price > .row > div:last-of-type {
  font-weight: bold;
  text-transform: capitalize;
}

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