html {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  color: #262626;
}

main {
  max-width: 500px;
  margin: 2rem auto 6rem auto;
  padding: 3rem 1.6rem 6rem 1.6rem;
  color: #262626;
  background-color: #0DC338;
  border-radius: 4rem;
}
h1 {
  text-align: center;
  font-size: 3rem;
  margin: 0;
  padding-bottom: 3rem;
}

h4 {
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

section {
  background-color: white;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  border-radius: 1rem;
}

section > div {
  padding: 1.6rem 0;
}

.bill {
  display: flex;
}
.bill label {
  flex: 1;
  align-self: center;
}
.bill input {
  flex: 2;
}

.rowpadding {
    padding: 1rem 1.6rem;
}

input[type='number'] {
  font-family: inherit;
  background: #f4f4f5;
  font-size: 1.6rem;
  border: 1px solid lightgray;
  border-radius: 0.5rem;
  padding: 0.8rem 0 0.8rem 1rem;
  box-shadow: inset 0 2px 2px lightgray;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.total {
  font-size: 2rem;
  font-weight: bolder;
}

.range {
  -webkit-appearance: none;
  width: 94%;
  height: 8px;
  margin-top: 1.2rem;
  background: #eee;
  border-radius: 0.3rem;
  outline-color: #5bceae;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #3dc0c0;
  cursor: pointer;
}

.range::-moz-range-thumb {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #3dc0c0;
  cursor: pointer;
  border: 0;
}

.range::-moz-focus-outer {
  border: 0;
}
@media only screen and (max-width: 767px) {
	/*h1{margin-bottom:2rem !important;
    clear: left !important;}*/
    header{width:100%; padding:0;}
}