
/*main {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
}
*/

.field {
  background-color: #fff;
  /*width: 100%;*/
  width: calc(100% - 30px);
  padding: 6px 15px 6px 15px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.19), 0px 6px 6px 0px rgba(0, 0, 0, 0.23);
}
.field label {
  margin-bottom: 16px;
  display: block;
  font-weight: bold;
  font-size: 16px;
}

.inputslider {
  position: relative;
}
.inputslider input {
  display: none;
}
.inputslider .values {
  position: relative;
  margin-left: 14px;
  margin-right: 14px;
  height: 30px;
  margin-bottom: 8px;
  z-index: 1;
    
    display:none;
}
.inputslider .values span {
  position: absolute;
  top: 0;
  background-color: #E6E9ED;
  color: #434A54;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
  display: block;
  font-size: 12px;
  transform: translateX(-50%);
  z-index: 1;
  transition: all 0.2s ease;
}
.inputslider .values span.selected {
  background-color: #434A54;
  color: #fff;
  z-index: 2;
}
.inputslider .area {
  position: relative;
  height: 28px;
}
.inputslider .area .track {
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #E6E9ED;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  z-index: 1;
  transform: translateY(-50%);
}
.inputslider .area .fill {
  position: absolute;
  top: 50%;
  left: 0;
  background: #AAB2BD;
  width: 0;
  height: 6px;
  border-radius: 3px;
  z-index: 2;
  transform: translateY(-50%);
}
.inputslider .area .knob {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #434A54;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1), 0px 7px 12px rgba(0, 0, 0, 0.12);
  z-index: 3;
}


@media only screen and (max-width: 750px) {
    .inputslider .values {
        display:none;    
    }
    
    .field {
       padding: 0px 15px 0px 15px;   
    }
}