main {
  background-color: #F1F1F1;
}

.machine {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .machine {
    display: flex;
  }
  .machine > * {
    flex-basis: 50%;
  }
}
.machine #machine-image-carousel {
  position: relative;
}
.machine #machine-image-carousel .machine-image-sold {
  position: absolute;
  background-color: #ffda0a;
  height: auto !important;
  width: 150px;
  top: 22px;
  left: -36px;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
  text-align: center;
}
@media (min-width: 768px) {
  .machine #machine-image-carousel .machine-image-sold {
    width: 250px;
    top: 62px;
    left: -48px;
  }
}
.machine #machine-image-carousel.carousel [data-toggle=lightbox] {
  cursor: pointer;
}
.machine #machine-image-carousel.carousel .carousel-indicators {
  z-index: unset !important;
}
.machine #machine-image-carousel.carousel .carousel-indicators > .active {
  background-color: #ffda00;
}
.machine #machine-image-carousel.carousel img {
  height: 600px;
  object-fit: cover;
}
.machine .machine-details {
  background-color: #ffffff;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.machine .machine-details hr {
  border-top: rgba(41, 41, 44, 0.5) 1px solid;
  opacity: 1;
}
.machine .machine-details .machine-detail-row {
  display: flex;
}
.machine .machine-details .machine-detail-row .machine-detail-col {
  flex-basis: 50%;
}
.machine .machine-details .machine-detail-row .machine-detail-col .btn.btn-primary {
  color: #29292C;
  background-color: #ffda00;
  border-radius: 15px;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  display: block;
  text-align: center;
}

.machine-detail-label {
  font-size: 10px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.machine-detail-headline {
  font-size: 26px;
}

.machine-detail-subheadline {
  font-size: 18px;
}

.machine-detail-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
}

.tab-wrapper {
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  padding: 25px;
}
@media (min-width: 992px) {
  .tab-wrapper .nav-tabs .nav-item .nav-link {
    border: none;
    outline: none;
  }
}
@media (max-width: 991.98px) {
  .tab-wrapper .nav-tabs {
    flex-direction: column;
    border-bottom: 0;
  }
  .tab-wrapper .nav-tabs .nav-item:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .tab-wrapper .nav-tabs .nav-item .nav-link {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(41, 41, 44, 0.5);
  }
}
.tab-wrapper .nav-tabs .nav-item .nav-link {
  font-size: 13px;
  line-height: 16px;
  color: #717586;
  padding-left: 30px;
  padding-right: 30px;
}
.tab-wrapper .nav-tabs .nav-item .nav-link.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.tab-wrapper .nav-tabs .nav-item .nav-link.active {
  color: #29292C;
  font-weight: 700;
  border-bottom: 2px solid #29292C;
}
.tab-wrapper .tab-content .tab-pane {
  padding-top: 15px;
}
.tab-wrapper .tab-content .tab-pane p,
.tab-wrapper .tab-content .tab-pane form {
  font-size: 15px;
}
.tab-wrapper .tab-content .tab-pane form .btn.btn-primary {
  color: #29292C;
  background-color: #ffda00;
  border-radius: 15px;
  padding: 7px;
  font-size: 15px;
  font-weight: 700;
  display: block;
  text-align: center;
  width: 100%;
}
@media (min-width: 992px) {
  .tab-wrapper .tab-content .tab-pane form .btn.btn-primary {
    width: 250px;
  }
}
.tab-wrapper .tab-content .tab-pane .machine-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .tab-wrapper .tab-content .tab-pane .machine-detail-grid {
    grid-template-columns: 1fr;
  }
}
.tab-wrapper .tab-content .tab-pane .document-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1199.98px) and (min-width: 992px) {
  .tab-wrapper .tab-content .tab-pane .document-grid-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991.98px) {
  .tab-wrapper .tab-content .tab-pane .document-grid-wrapper {
    grid-template-columns: 1fr;
  }
}
.tab-wrapper .tab-content .tab-pane .document-grid-wrapper .document-grid-item a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.tab-wrapper .tab-content .tab-pane .document-grid-wrapper .document-grid-item a:hover {
  color: #ffda00;
}
.tab-wrapper .tab-content .tab-pane .document-grid-wrapper .document-grid-item a i {
  font-size: 22px;
}
.tab-wrapper .tab-content .tab-pane .document-grid-wrapper .document-grid-item a span {
  font-size: 15px;
  margin-left: 5px;
}

#lightbox {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.5);
}
#lightbox:not(.show) img {
  max-height: 0;
}
#lightbox img {
  transition: max-height 0.6s ease;
  max-height: calc(100vh - 100px);
}
#lightbox #lightbox-close {
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 50px;
  color: #ffda00;
  cursor: pointer;
}

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