.input-container {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  width: 100%;
}

.icon {
  background: #5ec3ad;
  color: white;
  text-align: center;
  padding: 15px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.input-field {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  outline: none;
  border: 2px solid #5ec3ad;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.input-field:focus {
  border: 2px solid #5ec3ad;
}
.card {
  transition: 0.5s;
  /* height: 500px; */
  width: 600px;
  margin: 0;
  padding: 10px;
}
.card-2 {
  transition: 0.5s;
  /* height: 500px; */
  width: 550px;
  padding: 10px;
}
.gradient-heading {
  text-align: center;
  color: #4a5568;
}
.row {
  padding: 0;
  width: 100%;
}
.column {
  float: left;
  width: 50%;
  padding: 10px;
  font-size: large;
}
.column-data {
  margin-left: 60px;
  width: 100%;
  padding: 10px;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.slider {
  -webkit-appearance: none;
  width: 99%;
  height: 4px;
  border-radius: 20px;
  background: lightgray;
  border: none;
  outline: none;
}
.slider:focus {
  outline: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  border: 2px solid white;
  border-radius: 13px;
  background: #ff6347;
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border: 2px solid white;
  border-radius: 15px;
  background: #ff6347;
  cursor: pointer;
}
.slider::-ms-thumb {
  width: 25px;
  height: 25px;
  border: 2px solid white;
  border-radius: 15px;
  background: #ff6347;
  cursor: pointer;
}
.range-wrap {
  width: 100%;
  position: relative;
}
.range-value {
  position: absolute;
  top: -50%;
}
.range-value span {
  width: 30px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #ff6347;
  color: #fff;
  font-size: 12px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
  margin-top: -5px;
}
.range-value span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #ff6347;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}
/* .slider:: */
.heading {
  font-size: 20px;
  /* font-weight: bold; */
  color: #4a5568;
}
.text-heading {
  color: #4a5568;
  font-size: 20px;
}
.data-number {
  font-size: 30px;
  width: 60%;
  margin: 5px;
  color: #2d3748;
  border: dotted lightgray 1px;
  padding: 4px;
  border-radius: 4px;
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  font-size: 15px;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 10px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.dot-first {
  width: 100%;
  height: 95%;
}
.dot-second {
  width: 100%;
  height: 95%;
}
.container-my {
  padding: 40px;
}
@media only screen and (max-width: 1200px) {
  .container-my {
    /* display: table; */
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  .card-2 {
    width: 50%;
    /* height: 600px; */
  }
  .card {
    width: 50%;
    /* height: 600px; */
  }
  .dot-first {
    width: 100%;
    height: 100%;
  }

  .dot-second {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .container-my {
    display: table;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  .card-2 {
    width: 100%;
    /* height: 600px; */
    margin: 0;
  }
  .card {
    width: 100%;
    /* height: 600px; */
    margin: 0;
  }
  .dot-first {
    width: 100%;
    height: 100%;
  }
  .column-data {
    margin-left: 0;
  }
  .dot-second {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .container-my {
    width: 100%;
    display: table;
    padding: 0;
  }
  .row {
    display: table;
  }
  .card {
    width: 100%;
    /* height: 600px; */
    margin: 0;
  }
  .text-heading {
    margin-top: 10px;
  }
  .card-2 {
    width: 100%;
    /* height: 600px; */
    margin: 0;
  }
  .column {
    font-size: 18px;
  }
  .data-number {
    width: 80%;
  }
  .column-data {
    margin-left: 0;
  }
  .dot-first {
    width: 100%;
    height: 100%;
  }
  .dot-second {
    width: 100%;
    height: 100%;
  }
}
