.steps {
  background-color: #f5f5f5;
}

.calculator {
  padding: 70px 0 20px;
}

.calculator h1 {
  font-size: 40px;
  padding: 0 5px 15px;
  text-align: center;
  color: #1976d2;
}

@media (max-width: 481px) {
  .calculator h1 {
    font-size: 28px;
  }
}

.calculator .calc-form {
  margin: 0 auto;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 721px) {
  .calculator .calc-form {
    width: 95%;
  }
}

.calculator .calc-form .calc-input {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.calculator .calc-form .calc-input label {
  font-size: 18px;
}

.calculator .calc-form .calc-input input {
  height: 40px;
  text-align: center;
  font-size: 18px;
  width: 95%;
  border: 2px solid transparent;
  outline: none;
}

.calculator .calc-form .calc-input input:focus {
  border-bottom: 2px solid #1976d2;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.calculator .calc-form .calc-input #addRoom {
  font-size: 18px;
  margin-top: 10px;
  border: 2px solid #1976d2;
  color: #1976d2;
  background-color: white;
}

.calculator .calc-form .calc-input #addRoom:active {
  border: 2px solid white;
  color: white;
  background-color: #1976d2;
}

.calculator .calc-form .calc-input .calcInfo {
  position: relative;
}

.calculator .calc-form .calc-input .calcInfo:hover::after {
  content: attr(data-title);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: -220px;
  top: -150px;
  z-index: 1;
  border: 1px solid black;
}

.calculator .calc-form .calc-input .infoLight:hover::after {
  background-image: url("../img/light.jpg");
  width: 195px;
  height: 146px;
  left: -60px;
  top: -150px;
}

.calculator .calc-form .calc-show {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.calculator .calc-form .calc-show ol li {
  margin-bottom: 3px;
  font-size: 18px;
  list-style: none;
}

.calculator .calc-form .calc-show ol li #deleteRoom {
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 16px;
  font-size: 20px;
  float: right;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  margin-right: 3px;
}

.calculator .calc-form .calc-show ol li #deleteRoom:active {
  border: 0.5px solid black;
}

.calculator .calc-form .calc-show .total {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.calculator .calc-form .calc-show .total .tape-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.calculator .calc-form .calc-show .total .tape-block h4 {
  font-size: 20px;
}

.calculator .calc-form .calc-show .total #totalSum {
  width: 100%;
  height: 40px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
  font-size: 18px;
}

.calculator .calc-form .calc-show .total #totalInput {
  width: 100%;
  background-color: white;
  margin-top: 5px;
  font-size: 18px;
  padding: 5px;
}

.calculator .calc-form .calc-show .total .calcInfo {
  position: relative;
}

.calculator .calc-form .calc-show .total .calcInfo:hover::after {
  content: attr(data-title);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: -180px;
  top: -150px;
  z-index: 1;
  border: 1px solid black;
}

.calculator .calc-form .calc-show .total .ntape:hover::after {
  background-image: url("../img/nwhiteTape.jpg");
  width: 250px;
  height: 146px;
}

.calculator .calc-form .calc-show .total .ytape:hover::after {
  background-image: url("../img/ywhiteTape.jpg");
  width: 250px;
  height: 146px;
}

.calculator .calc-form .calc-show .total .colortape:hover::after {
  background-image: url("../img/ncolorTape.jpg");
  width: 250px;
  height: 138px;
  left: -210px;
  top: -150px;
}

.calculator .explanation {
  width: 70%;
  padding: 15px;
  margin: 0 auto;
}

@media (max-width: 721px) {
  .calculator .explanation {
    width: 95%;
  }
}

.calculator .explanation ul li {
  font-size: 18px;
  margin: 10px;
  list-style: circle;
}
/*# sourceMappingURL=calc.css.map */