:root {
  --input-width: 180px;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: "input-sans", sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: #fff;
  text-align: center;
  font-style: normal;
  -webkit-overflow-scrolling: touch;
}

.ovFrame {
  height: 100vh;
  width: auto;
  position: relative;
}

.mcContent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mcContent section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.mcLogo {
  margin-top: 10vh;
  width: 100%;
  text-align: center;
}

.footerNav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  width: 100%;
  height: auto;
  text-align: center;
}

.footNav {
  display: inline-flex;
  justify-content: space-between;
  width: calc(100% - 25vh);
  margin-inline: auto;
}

a {
  color: #fff;
  text-decoration: none;
}

.prImgCont {
  height: 35vh;
  width: 100%;
  position: relative;
}

.prImgCont img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.prImgCont img.active {
  opacity: 1;
}

.productSlideText {
  text-align: center;
}

.btn {
  border: 2px solid #fff;
  padding: 10px 10px;
  width: var(--input-width);
  font-size: 13px;
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btnWide {
  padding-inline: 50px;
}

.selectProduct {
  margin-top: 20px;
}

.mcContent section {
  transition: 0.2s ease-in;
}

.mcContent.request section {
  transform: translateY(-100vh);
}

.specCont {
  margin-top: 30px;
}

.specCont .btn {
  margin-block: 10px;
}

.personalCont {
  margin-top: 30px;
}

input[type="text"],
input[type="email"] {
  width: var(--input-width);
  padding: 10px;
  margin: 10px 0;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: #fff;
  font-weight: 800;
}

.specInfoCont {
  width: var(--input-width);
  padding: 10px;
  text-align: center;
  border: 2px solid #fff;
  margin-inline: auto;
  margin-block: 5vh;
}

.sendBtn {
  margin-block: 20px;
  font-size: 16px;
  cursor: pointer;
}

.goBackX {
  position: absolute;
  top: -5vh;
  right: 10%;
  cursor: pointer;
}

.formSection {
  transition: 0.2s ease-in;
}

.formSection.ovon {
  transform: scale(0);
}

.ovSpec {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 10vh;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: 0.3s ease-in;
}

.specInfoCont > div {
  margin-block: 10px;
  font-size: 14px;
  cursor: pointer;
}

.ovSpec.active {
  transform: scale(1);
}

.specCont .btn.selected {
  background-color: #fff;
  color: #000;
}

.formSection {
  margin-top: 35px;
}
