body {
  padding-left: 5%;
  padding-right: 5%;
}
.deco {
  text-decoration: none;
}
.padd {
  padding-left: 5%;
}
.input_area {
  width: 50%;
  background-color: rgb(204, 236, 255);
}
.form-check {
  padding-left: 5%;
}
#threshold {
  width: 60px;
}
.mainblock {
  margin-bottom: 100px;
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;
  width: 50%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #1a7ad3;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #1a7ad3;
  cursor: pointer;
}
#btn-back-to-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: none;
}
#mainHeading {
  background-color: #a29cd6;
}
.nav-size {
  height: 60px;
  padding-top: 20px;
}
.heading-color {
  color: #5e52c7;
}
.email {
  text-decoration: none;
}
.dataset {
  height: 100%;
  width: 100%;
}
.dataset-td {
  width: 30px;
}
.dataset-div {
  display: flex;
  justify-content: center;
}
.help-image {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 600px) {
  #footerHide {
    display: none;
  }
}
.bounce {
  height: 50px;
  /* overflow: hidden; */
  background: #fefefe;
 
}
.bounce h6 {
  color: rgb(58, 54, 94);
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 20px;
  text-align: center;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: bouncing-text 5s linear infinite alternate;
  -webkit-animation: bouncing-text 5s linear infinite alternate;
  animation: bouncing-text 5s linear infinite alternate;
}

@-moz-keyframes bouncing-text {
  0% {
      -moz-transform: translateX(50%);
  }
  100% {
      -moz-transform: translateX(-50%);
  }
}

@-webkit-keyframes bouncing-text {
  0% {
      -webkit-transform: translateX(50%);
  }
  100% {
      -webkit-transform: translateX(-50%);
  }
}

@keyframes bouncing-text {
  0% {
      -moz-transform: translateX(50%);
      -webkit-transform: translateX(50%);
      transform: translateX(10%);
  }
  100% {
      -moz-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-10%);
  }
}