body {
  margin: 0;
  background-color: #007dba;
  max-width: 100vw;
  overflow-x: hidden;
}

.logo {
  width: 23vw;
  margin-left: 38.5vw;
  margin-top: 6vh;
  margin-bottom: 5vh;
}

.txt {
  font-size: 50px;
}

.calculator-button {
  padding: 10px 40px;
  border-radius: 15px 0 15px;
  border-color: white;
  border-style: double;
  color: white;
  background-image: linear-gradient(
    90deg,
    hsl(200deg 100% 36%) 0%,
    hsl(198deg 100% 37%) 0%,
    hsl(196deg 100% 36%) 1%,
    hsl(193deg 100% 35%) 4%,
    hsl(188deg 100% 33%) 8%,
    hsl(182deg 100% 30%) 15%,
    hsl(174deg 100% 29%) 26%,
    hsl(165deg 100% 30%) 41%,
    hsl(157deg 100% 30%) 65%,
    hsl(147deg 100% 30%) 100%
  );
}

.report-button {
  padding: 10px 40px;
  border-radius: 15px 0 15px;
  border-color: #7d7d7d;
  background-color: #7d7d7d;
  border-style: double;
  color: white;
}
.report-button:hover {
  background-color: white;
  background-image: none;
  color: black;
}

.first-row,
.second-row {
  margin: 30px 12vw !important;
}

/* .calculator-button:hover {
    background-color: white;
    background-image: none;
    color: black;
} */

.slider-container {
  padding: 25px 10px;
  background-color: white;
  width: 23vw;
  position: relative;
  border-radius: 10px;
}

.slider-container-two {
  padding: 25px 10px;
  background-color: white;
  width: 35.5vw;
  position: relative;
  border-radius: 10px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #7d7d7d;
  border-radius: 5px;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 35px;
  height: 35px;
  background: url("../images/calc-arrows.svg") center center no-repeat;
  background-size: cover;
  cursor: e-resize;
}

#result {
  margin-left: 12vw;
  margin-right: 12vw;
  width: 76vw;
}

.result-box {
  margin: 50px 0;
  padding: 10px 40px;
  border-radius: 30px 0 15px;
  border-style: solid;
  border-width: 1px;
  background-color: #c8c6c631;
}

.red {
  color: rgb(194, 0, 0);
  font-weight: 750;
}

.green {
  color: rgb(0, 147, 3);
  font-weight: 750;
}

#result-box {
  display: none;
}
