
:root {
  --main-height: calc(100vh - 174px);
}

body {
  font-family: 'Apex Sans Book', sans-serif;
  color: #707070;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400;
  /* padding-bottom: 800px; */
}

h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Apex Sans Bold', sans-serif;
  color: #000;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  /* text-transform: uppercase; */
}

h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Apex Sans Bold', sans-serif;
  color: #c2b3a1;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
}

p {
  margin-bottom: 34px;
}

a {
  color: #87212e;
  font-weight: 400;
  text-decoration: none;
}


ul {
  padding-left: 17px;
  list-style-type: square;
  margin-bottom: 28px;
}

li {
  margin-bottom: 12px;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

.section {
  position: relative;
  overflow: hidden;
  height: 800px;
  /* height: 100vh; */
}

.h1 {
  font-family: 'Apex Sans Bold', sans-serif;
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.screensaver {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1000;
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #87212e;
  opacity: 0;
  -webkit-transition: opacity 1000ms ease;
  transition: opacity 1000ms ease;
  -o-object-fit: cover;
  object-fit: cover;
}

.screensaver-video {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 174px;
  padding-right: 75px;
  padding-left: 75px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.moog-logo {
  position: relative;
  top: -15px;
  width: 114px;
}

.top-nav {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;
  cursor: default;
  /* DEBUG */
  pointer-events: none;
}

.top-nav-item.done {
  cursor: pointer;
  pointer-events: auto;
} 

.top-nav-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #efefef;
  font-family: 'Apex Sans Bold', sans-serif;
  color: #000;
  font-size: 17px;
  font-weight: 700;
}

.top-nav-item.done .top-nav-circle {
  background: #C2B3A1;
  color: transparent;
  background-image: url('../images/done.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 20px;
}

.top-nav-item.done .top-nav-circle:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #87212e;
}


.top-nav-item.done.size .top-nav-circle {
  background-image: none;
}

.top-nav-item.done.size-c .top-nav-circle:before { content: 'C'; }
.top-nav-item.done.size-m .top-nav-circle:before { content: 'M'; }
.top-nav-item.done.size-s .top-nav-circle:before { content: 'S'; }
.top-nav-item.done.size-h .top-nav-circle:before { content: 'H'; }



.top-nav-label {
  position: relative;
  font-family: 'Apex Sans Book', sans-serif;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.main {
  position: relative;
  height: 626px;
  /* height: calc(100vh - 174px); */
  /* height: var(--main-height); */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #fcfcfc;
}

.arrow-right {
  position: relative;
  top: -15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 55px;
  height: 21px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/Arrow-Right.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.page {
  /* height: var(--main-height); */
  padding: 32px 75px 44px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* .heading {
  font-size: 40px;
} */

.machine-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 55px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-column-gap: 15px;
}

.machine-item {
  width: 100%;
  height: 390px;
  background-color: #fff;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.06);
  -webkit-transform: skew(-2deg, 0deg);
  -ms-transform: skew(-2deg, 0deg);
  transform: skew(-2deg, 0deg);
  cursor: pointer;
}

.machine-thumb {
  height: 300px;
  background-position: 50% 50%;
  background-size: cover;
}


.machine-thumb-1 {
  background-image: url('../images/side-images/track-loader.jpg');
  background-position: 37% 50%;
}

.machine-thumb-2 {
  background-image: url('../images/side-images/backhoe-loader.jpg');
  background-position: 85% 50%;
}

.machine-thumb-3 {
  background-image: url('../images/side-images/wheel-loader.jpg');
  background-position: 28% 50%;
}

.machine-thumb-4 {
  background-image: url('../images/side-images/skid-steer.jpg');
  background-position: 71% 50%;
}

.machine-thumb-5 {
  background-image: url('../images/side-images/excavator.jpg');
  background-position: 52% 50%;
}

.machine-thumb-6 {
  background-image: url('../images/side-images/telehandler.jpg');
  background-position: 76% 50%;
}

.machine-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.machine-label {
  position: relative;
  margin-top: 10px;
  font-family: 'Apex Sans Bold', sans-serif;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.top-nav-next {
  position: relative;
  display: flex;
  align-items: center;
  top: -15px;
  width: 110px;
  height: 40px;
  background-image: url('../images/arrow-red.png');
  background-position: 83% 50%;
  background-size: 24px;
  background-repeat: no-repeat;
  opacity: 0;
  padding: 18px;
  border-radius: 50px;
  color:#87212e;
  font-family: 'Apex Sans Bold';
  transition: opacity 0.2s ease;
  cursor: pointer;
  pointer-events: none;
}

.top-nav-next.in {
  opacity: 1;
  pointer-events: auto;
}

@keyframes pulse-color {
  0% {
    background-color: #efefef;
  }
  100% {
    background-color: #87212e;
  }
}

@keyframes pulse {
  0% {
    left: 0;
  }
  100% {
   left: 4px;
  }
}

.slider {
  height: 626px;
  /* height: var(--main-height); */
  background-color: transparent;
}

.right-arrow {
  display: none;
}

.left-arrow {
  display: none;
}

.slide-nav {
  position: fixed;
  bottom: 0px;
  color: #87212e;
  font-size: 8px;
}

.right-column {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 100%;
  padding-left: 110px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.right-column.wide {
  width: 60%;
}

.side-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  width: 50%;
  background-position: 50% 50%;
  background-size: cover;
}

.side-image-1 {
  background-image: url('../images/side-images/track-loader.jpg');
}

.side-image-2 {
  background-image: url('../images/side-images/backhoe-loader.jpg');
}

.side-image-3 {
  background-image: url('../images/side-images/wheel-loader.jpg');
}

.side-image-4 {
  background-image: url('../images/side-images/skid-steer.jpg');
  background-position: 96% 50%;
}

.side-image-5 {
  background-image: url('../images/side-images/excavator.jpg');
}

.side-image-6 {
  background-image: url('../images/side-images/telehandler.jpg');
  background-position: 72% 50%;
}


.side-image.narrow {
  width: 40%;
}

.size-select {
  margin-top: 40px;
}

.size-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 330px;
  height: 80px;
  margin-bottom: 10px;
  padding: 20px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #c7c7c7;
  background-color: #efefef;
  -webkit-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
  cursor: pointer;
}

.size-item.active {
  border-color: #94877a;
  background-color: #c2b3a1;
}

.size-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25px;
  height: 25px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #c7c7c7;
  background-color: #fff;
  font-family: 'Apex Sans Bold', sans-serif;
  color: #c7c7c7;
  font-size: 17px;
}

.size-text {
  font-family: 'Apex Sans Bold', sans-serif;
  font-size: 17px;
}

.size-range {
  position: absolute;
  right: 20px;
  text-align: right;
  font-size: 13px;
}

.skew-mask {
  position: absolute;
  left: -20px;
  top: 0px;
  width: 40px;
  height: 100%;
  background-color: #fcfcfc;
  -webkit-transform: skew(-3deg, 0deg);
  -ms-transform: skew(-3deg, 0deg);
  transform: skew(-3deg, 0deg);
}


.close-button {
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: url('../images/Cancel-Icon.png') 50% 50%;
  background-size: 53px;
  background-repeat: no-repeat;
}

.popup .flex-row {
  justify-content: center;
}

.popup.popup-size h2 {
  font-size: 38px;
  font-family: 'Apex Sans Bold';
  margin-bottom: 1em;
}

.popup.popup-size .popup-content {
  padding: 45px;
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 475px;
  justify-content: center;
}

.button.wire {
  border-radius: 0;
  background: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 24px 47px;
}

.button.wire:hover {
  background: #87212e;
  border: 1px solid #87212e;
  color: #fff;
}

.heading-2 {
  font-family: 'Apex Sans Bold', sans-serif;
}

.software-select,
.insight-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-column-gap: 10px;
}

.software-item,
.insight-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 269px;
  height: 80px;
  margin-bottom: 10px;
  padding: 20px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 15px;
  border-style: solid;
  border-width: 1px;
  border-color: #c7c7c7;
  -webkit-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
  cursor: pointer;
}

.select-item.active,
.software-item.active,
.insight-item.active,
.summary-item.active,
.summary-item.selected  {
  border-color: #87212e;
  background-color: #87212e;
  color: #fff;
}

.software-icon,
.insight-icon,
.summary-icon {
  width: 40px;
  height: 40px;
}

.page-software .software-item.disabled,
.page-software .software-item.disabled:hover,
.page-insights .insight-item.disabled,
.page-insights .insight-item.disabled:hover{
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.summary-item.active .summary-icon,
.summary-item.selected .summary-icon,
.select-item.active .software-icon,
.software-item.active .software-icon,
.insight-item.active .software-icon {
  filter: invert(1) brightness(100);
}

.software-text,
.insight-text {
  font-family: 'Apex Sans Book', sans-serif;
  font-size: 17px;
  line-height: 22px;
}

.slide-nav { display: none; }

.top-nav-item.active .top-nav-circle {
  background: #87212e;
  color: #fff;
}

.top-nav-item.active .top-nav-label {
  color: #87212e;
}

.popover {
  display: none;
}

.summary-machine-preview,
.summary-machine-preview-overlay {
  position: absolute;
  bottom: 175px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background-image: none;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: opacity 0.2s ease;
  opacity: 0;
}

.summary-machine-preview.in,
.summary-machine-preview-overlay.in {
  opacity: 1;
}


.summary-machine-preview.wheel-loader-all-electric {
  background-image: url('../images/machines/wheel-loader-all-electric.png');
}

.summary-machine-preview.wheel-loader-smart-hydraulic {
  background-image: url('../images/machines/wheel-loader-smart-hydraulic-isa.png');
}

.summary-machine-preview.wheel-loader-smart-hydraulic-compact {
  background-image: url('../images/machines/wheel-loader-smart-hydraulic-epu.png');
}

.summary-machine-preview.track-loader-all-electric {
  background-image: url('../images/machines/track-loader-all-electric.png');
}

.summary-machine-preview.track-loader-smart-hydraulic {
  background-image: url('../images/machines/track-loader-smart-hydraulic-isa.png');
}

.summary-machine-preview.track-loader-smart-hydraulic-compact {
  background-image: url('../images/machines/track-loader-smart-hydraulic-epu.png');
}

.summary-machine-preview.telehandler-all-electric,
.summary-machine-preview.telehandler-smart-hydraulic {
  background-image: url('../images/machines/telehandler-smart-hydraulic-isa.png');
}

.summary-machine-preview.telehandler-smart-hydraulic-compact {
  background-image: url('../images/machines/telehandler-smart-hydraulic-epu.png');
}

.summary-machine-preview.skid-steer-all-electric {
  background-image: url('../images/machines/skid-steer-all-electric.png');
}

.summary-machine-preview.skid-steer-smart-hydraulic {
  background-image: url('../images/machines/skid-steer-smart-hydraulic-isa.png');
}

.summary-machine-preview.skid-steer-smart-hydraulic-compact {
  background-image: url('../images/machines/skid-steer-smart-hydraulic-epu.png');
}

.summary-machine-preview.excavator-all-electric,
.summary-machine-preview.excavator-smart-hydraulic {
  background-image: url('../images/machines/excavator-smart-hydraulic-isa.png');
}

.summary-machine-preview.excavator-smart-hydraulic-compact {
  background-image: url('../images/machines/excavator-smart-hydraulic-epu.png');
}

.summary-machine-preview.backhoe-loader-all-electric,
.summary-machine-preview.backhoe-loader-smart-hydraulic {
  background-image: url('../images/machines/backhoe-smart-hydraulic-isa.png');
}

.summary-machine-preview.backhoe-loader-smart-hydraulic-compact {
  background-image: url('../images/machines/backhoe-smart-hydraulic-epu.png');
}



/* SOFTWARE OVERLAY */

.summary-machine-preview-overlay.wheel-loader-all-electric,
.summary-machine-preview-overlay.wheel-loader-smart-hydraulic,
.summary-machine-preview-overlay.wheel-loader-smart-hydraulic-compact {
  background-image: url('../images/machines/wheel-loader-software.png');
}

.summary-machine-preview-overlay.track-loader-all-electric,
.summary-machine-preview-overlay.track-loader-smart-hydraulic,
.summary-machine-preview-overlay.track-loader-smart-hydraulic-compact {
  background-image: url('../images/machines/track-loader-software.png');
}

.summary-machine-preview-overlay.telehandler-all-electric,
.summary-machine-preview-overlay.telehandler-smart-hydraulic,
.summary-machine-preview-overlay.telehandler-smart-hydraulic-compact {
  background-image: url('../images/machines/telehandler-software.png');
}

.summary-machine-preview-overlay.skid-steer-all-electric,
.summary-machine-preview-overlay.skid-steer-smart-hydraulic,
.summary-machine-preview-overlay.skid-steer-smart-hydraulic-compact {
  background-image: url('../images/machines/skid-steer-software.png');
}

.summary-machine-preview-overlay.excavator-all-electric,
.summary-machine-preview-overlay.excavator-smart-hydraulic,
.summary-machine-preview-overlay.excavator-smart-hydraulic-compact {
  background-image: url('../images/machines/excavator-software.png');
}

.summary-machine-preview-overlay.backhoe-loader-all-electric,
.summary-machine-preview-overlay.backhoe-loader-smart-hydraulic,
.summary-machine-preview-overlay.backhoe-loader-smart-hydraulic-compact {
  background-image: url('../images/machines/backhoe-software.png');
}


.instructions {
  margin: 34px 0 0 0;
}

.software-popups,
.insights-popups {
  position: absolute;
  z-index: 1000;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.popup {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: auto;
}

.popup.active {
  display: flex;
}

.popover h2,
.popup h2 {
  font-size: 21px;
  font-family: inherit;
  color: #000;
  margin-bottom: 4px;
}

.popup-body {
  position: relative;
  width: 550px;
  min-height: 475px;
  background-color: #fff;
}

.popup-image {
  height: 205px;
  background-image: url('../images/popups/popup-placeholder.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.popup-image.automatic-vehicle-config {
  background-image: url('../images/popups/automated-vehicle-config.jpg');
  background-position: 50% 21%;
}

.popup-image.task-management {
  background-image: url('../images/popups/task-management.jpg');
  background-position: 50% 21%;
}

.popup-image.operator-augmentation {
  background-image: url('../images/popups/operator-augmentation.jpg');
  background-position: 50% 21%;
}

.popup-image.developer-kit {
  background-image: url('../images/popups/developer-kit.jpg');
  background-position: 50% 21%;
}

.popup-image.site-optimization {
  background-image: url('../images/popups/site-optimization.jpg');
  background-position: 50% 21%;
}

.popup-image.machine-insights {
  background-image: url('../images/popups/machine-insights.jpg');
  background-position: 50% 21%;
}

.popup-image.predictive-maintenance {
  background-image: url('../images/popups/predictive-maintenance.jpg');
  background-position: 50% 21%;
}

.popup-image.performance-and-planning {
  background-image: url('../images/popups/performance-and-planning.jpg');
  background-position: 50% 21%;
}

.popup-image.fleet-tracking {
  background-image: url('../images/popups/fleet-tracking.jpg');
  background-position: 50% 21%;
}

.popup-image.safety-performance {
  background-image: url('../images/popups/safety-performance.jpg');
  background-position: 50% 21%;
}


.popup-content {
  padding: 55px 55px 30px 55px;
}

.button {
  padding-right: 50px;
  padding-bottom: 10px;
  padding-left: 50px;
  border-style: solid;
  border-width: 2px;
  border-color: #87212e;
  border-radius: 12px;
  background-color: #87212e;
  color: #fff;
  line-height: 1;
}

.button.cancel,
.button.close {
  width: 150px;
  min-height: 40px;
  border-color: #fff;
  background-color: rgba(135, 33, 46, 0.16);
  background-image: url('../images/Cancel-Icon.png');
  background-position: 50% 50%;
  background-size: auto 60%;
  background-repeat: no-repeat;
  border-color: #ecdbdd;
}

.button.select,
.button.cancel,
.button.close {
  display: none;
}

.button.select.in,
.button.cancel.in,
.button.close.in {
  display: block;
}

.flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  grid-column-gap: 20px;
}

/* Summary headings need to go over the machine preview */
.page-summary h1,
.page-summary h2 {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hardware-heading,
.software-heading {
  display: none;
}

.hardware-heading.in,
.software-heading.in {
  display: block;
}

.summary-software,
.summary-hardware,
.summary-hardware .all-electric,
.summary-hardware .smart-hydraulic {
  display: none;
  position: relative;
  width: 100%;
  height: calc(100% - 96px);
  align-items: space-between;
  justify-content: space-between;
  margin-top: 30px;
}

.summary-hardware.in,
.summary-software.in,
.summary-hardware .all-electric.in,
.summary-hardware .smart-hydraulic.in {
  display: flex;
}

.page-summary .software-item,
.page-summary .insight-item {
  padding: 12px 15px;
  /* pointer-events: none; */
  margin-bottom: 5px;
}

.page-summary .software-text,
.page-summary .insight-text {
  font-size: 13px;
  line-height: 1.4;
}

.summary-col-left,
.summary-col-right {
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.summary-hardware-thumb {
  width: 80px;
  height: 80px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-right: 13px;
}


.summary-hardware-thumb.evcm {
  background-image: url('../images/parts/evcm.png');
}

.summary-hardware-thumb.single-axis-servo-drive {
  background-image: url('../images/parts/single-axis-servo-drive.png');
  width: 100px;
}

.summary-hardware-thumb.dual-axis-servo-drive {
  background-image: url('../images/parts/single-axis-servo-drive.png');
}

.summary-hardware-thumb.traction-motor {
  background-image: url('../images/parts/traction-motor.png');
}

.summary-hardware-thumb.linear-actuator {
  background-image: url('../images/parts/linear-actuator.png');
  width: 200px;
}

.summary-hardware-thumb.smart-hydraulic-actuator {
  background-image: url('../images/parts/smart-hydraulic-actuator.png');
  width: 200px;
}

.summary-hardware-thumb.hydraulic-actuator {
  background-image: url('../images/parts/hydraulic-actuator.png');
  width: 200px;
}


.summary-hardware-thumb.electro-hydrostatic-pump {
  background-image: url('../images/parts/electro-hydrostatic-pump.png');
  width: 112px;
}

.summary-hardware-label {
  font-family: 'Apex Sans Book';
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  width: 60%;
  white-space: normal;
  margin-right: 13px;
}

.summary-hardware-item {
  display: flex;
  align-items: center;
  margin: 0 0 30px 0;
}

.smart-hydraulic .summary-col-right {
  display: none;
}

.smart-hydraulic .summary-col-right.standard.in,
.smart-hydraulic .summary-col-right.compact.in {
  display: flex;
}


.summary-col-right .summary-hardware-item {
  text-align: right;
  justify-content: flex-end;
}

.summary-hardware-item.offset-left {
  margin-left: 80px;
}

.summary-hardware-item.offset-right {
  margin-right: 40px;
}

.summary-toggle {
  display: flex;
  position: absolute;
  bottom: 120px;
  left: 50%;
  color: #87212e;
  transform: translateX(-50%);
  cursor: pointer;
  font-family: 'Apex Sans Bold';
}

.summary-toggle-item {
  margin: 0 -1px;
  border: 2px solid #87212e;
  padding: 8px 22px;
  cursor: pointer;
  border-radius: 12px;
}

.summary-toggle-item:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.summary-toggle-item:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.summary-toggle-item.active {
  background: #87212e;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

/* .summary-select {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 55px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-column-gap: 0px;
}

.side-menu {
  position: relative;
  width: 360px;
  height: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #fff;
}

.summary-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
  background-image: url('../images/Angle-Right.png');
  background-position: 86% 50%;
  background-size: auto 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.summary-item.active,
.summary-item.selected {
  background-color: #87212e;
  background-image: url('../images/Angle-Right-White.png');
  color: #fff;
}

.summary-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 20px;
} */

.angle-right {
  height: 30px;
}

.email-bar {
  position: absolute;
  left: 0;
  top: auto;
  right: 0;
  bottom: -530px;
  height: 626px;
  background-color: #efefef;
  z-index: 1;
  transition: bottom 0.2s ease;
}

.email-bar.expanded {
  bottom: 0;
}

.email-expand-button {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  cursor: pointer;
}

.email-expand-button.in {
  display: block;
}

/*
.email-form {
  display: flex;
  position: absolute;
  top: 200px;
  left: 0;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: top 0.5s ease;
  background-color: #efefef;
}
*/

.email-form {
  display: block;
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 800px;
  transition: top 0.5s ease;
  background-color: #efefef;
}

.email-form.in {
  top: 0;
}

.email-message {
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  height: 97px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.email-form-body {
  display: none;
  position: relative;
  height: 400px;
  width: 50%;
  grid-template-columns: repeat(auto-fill, 300px);
  grid-gap: 0;
  justify-content: space-between;
  margin: 170px auto;
}


.email-form-body.in {
  display: grid;
}

.email-expand-icon {
  position: absolute;
  top: 32px;
  right: 50px;
  display: block;
  background: #fff;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  transition: transform 0.2s ease;
  transform: rotate(180deg);
  pointer-events: none;
}

.email-expand-icon:before {
  content: '›';
  display: block;
  position: absolute;
  top: -7%;
  left: 11%;
  transform: rotate(-90deg);
  color: #87212e;
  font-size: 37px;
  line-height: 1;
}

.email-expand-icon.in {
  opacity: 1;
  transform: rotate(0);
}

.email-response {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #efefef;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 8% 30%;
  pointer-events: none;
}

.email-response.in {
  opacity: 1;
  pointer-events: auto;
}

.email-continue {
  margin: 0 30%;
  display: inline-block;
}

.email-spacer {
  width: 40px;
  display: inline-block;
}

.text-input {
  background: none;
  border: none;
  border-bottom: 1px solid #c7c7c7;
  width: 300px;
  height: 40px;
  text-align: center;
  line-height: 2;
  outline: none;
}

.email-form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column-start: 1;
  grid-column-end: 3;
}

.email-submit {
  width: 200px;
  height: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.email-submit.disabled {
  background: #ddd;
  pointer-events: none;
}

.check-square {
  width: 40px;
  height: 40px;
  background-color: #87212e;
  background-image: url('../images/done-white.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 16px;
}

.restartButton {
  display: inline-block;
  position: relative;
  margin: 0 130px;
  padding: 18px 40px 22px;
  color: #87212e;
  border: 2px solid #87212e;
  border-radius: 12px;
  line-height: 1;
  cursor: pointer;
}

.button-2 {
  padding-right: 74px;
  padding-left: 74px;
  background-color: #87212e;
  font-family: 'Apex Sans Bold', sans-serif;
}

.bold-heading {
  color: #000;
}

.popover {
  position: relative;
  width: 100%;
  background-color: #efefef;
}

.popover.active {
  display: flex;
}

.popover-content {
  padding: 55px 70px 55px 88px;
}

.summary-swipe-prompt {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 45px;
}

.summary-swipe-left,
.summary-swipe-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/swipe-left-icon.png');
  background-size: contain;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 14px;
  font-family: 'Apex Sans Bold', sans-serif;
  display: flex;
  color: #87212e;
  pointer-events: none;
}

.summary-swipe-right {
  background-image: url('../images/swipe-right-icon.png');
}

.summary-swipe-left.in,
.summary-swipe-right.in {
  opacity: 1;
}


.summary-hardware-toggle {
  position: absolute;
  bottom: -10px;
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 128px;
  height: 40px;
  display: none;
}

.summary-hardware-toggle.in {
  display: flex;
}

.summary-toggle-label {
  position: relative;
  font-family: 'Apex Sans Bold', sans-serif;
  z-index: 1; /* fixes flickering on toggle */
  color: #000;
}

.summary-toggle-label.active {
  color: #87212e;
}

/* Toggle Switch */

input[type=checkbox]#switch {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

label.switch {
  cursor: pointer;
  text-indent: -9999px;
  width: 42px;
  height: 25px;
  background: grey;
  display: block;
  border-radius: 25px;
  position: relative;
  margin: 0;
}

label.switch:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 22px;
  transition: 0.1s;
}

input#switch:checked + label {
  background: #87212e;
}

input#switch:checked + label:after {
  left: calc(100% - 3px);
  transform: translateX(-100%);
}

label.switch:active:after {
  width: 130px;
}

/* Toggle Switch */



.button-label {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 20px;
  font-family: 'Apex Sans Bold', sans-serif;
  color: #fff;
}

.intro {
  position: fixed;
  top: -101vh;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background: #87212e;
  transition: top 0.5s ease;
  z-index: 1000;
}

.intro.in {
  top: 0;
}

.intro .moog-logo {
  position: absolute;
  top: 56px;
  left: 75px;
}

.intro h1 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.button.white {
  background-color: #fff;
  color: #87212e;
  font-family: 'Apex Sans Bold';
  padding: 16px 70px;
  font-size: 21px;
  letter-spacing: 0.5px;
}


@font-face {
  font-family: 'Apex Sans Book';
  src: url('../fonts/ApexSansBook.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apex Sans Bold';
  src: url('../fonts/A750-Sans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

