html {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.box {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4vmin;
  border-radius: 2vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  font-size: 4vmin;
  font-weight: 100;
  width: 100%;
  height: auto;
  padding: 2.66666667vmin;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}



body #gasPrices {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 3vmin;
  border-radius: 2vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
  background: #222;
  width: 100%;
}
body #gasPrices #titleBlockHolder {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 27px;
}

body #gasPrices #currentPrices {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
}
body #gasPrices #currentPrices .priceHolder {
  position: relative;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 3px solid #bbb;
  padding-bottom: 2px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-weight: 300;
}
body #gasPrices #currentPrices .priceHolder:nth-child(1) {
  color: #f55869;
}
body #gasPrices #currentPrices .priceHolder:nth-child(2) {
  color: #ffab56
}
body #gasPrices #currentPrices .priceHolder:nth-child(3) {
  color: #1abb9c;
	
}
body #gasPrices #currentPrices .priceHolder .info {
  display: block;
  text-align: left;
  font-size: 25px;
}

body #gasPrices #currentPrices .priceHolder .price {
  display: block;
  text-align: right;
  line-height: 50px;
  font-size: 40px;
  margin-left: 10px;
}
body #gasPrices #currentPrices .priceHolder .price:after {
  content: 'EURO';
  display: block;
  color: #888;
  line-height: 20px;
  font-size: 15px;
}
body #sponsor {
  color: #aaa;
  position: relative;
  width: 100%;
  font-size: 3.4vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
  font-weight: 300;
}
body #sponsor #sponsorTitle {
  color: #eee;
  font-weight: 500;
}
body #sponsor a {
  color: inherit;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
body #sponsor a:hover {
  color: #ddd;
}
body #gasCalc .title,
body #gasUsage .title,
body #txCount .title,
body #confirmTime .title {
  display: block;
  text-align: left;
  width: 100%;
  font-weight: 500;
}
body #gasCalc {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 3vmin;
  border-radius: 2vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
  background: #222;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
body #gasCalc .title {
  margin-bottom: 15px;
	font-size: 27px;
}
body #gasCalc #calcInputs {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 900px) {
  body #gasCalc #calcInputs {
    margin-bottom: 4vmin;
    width: 100%;
  }
}
body #gasCalc #calcInputs #limitPrice {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  font-size: 3vmin;
  margin-bottom: 1vmin;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper1 {
  width: 30%;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper1 #gasUsed1 {
  color: #fff;
  width: 100%;
  text-align: left;
  font-size: 40px;
  font-weight: 100;
  background: transparent;
  border: none;
  border-bottom: 0.66666667vmin solid #1abb9c;
  padding-bottom: 2vmin;
  box-sizing: border-box;
  transition: border-bottom-color 0.3s ease-in-out;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper1 #gasUsed1:focus,
body #gasCalc #calcInputs #limitPrice #gasInputWrapper1 #gasUsed1:hover {
  outline: none;
  border-bottom-color: #ffab56;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper1:after {
  content: 'Τιμή Βενζίνης (€/L)';
  color: #888;
  display: block;
  width: 100%;
  padding-top: 15px;
  box-sizing: border-box;
  text-align: left;
  font-size: 20px;
}


body #gasCalc #calcInputs #limitPrice #gasInputWrapper2 {
  width: 30%;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper2 #gasUsed2 {
  color: #fff;
  width: 100%;
  text-align: left;
  font-size: 40px;
  font-weight: 100;
  background: transparent;
  border: none;
  border-bottom: 0.66666667vmin solid #1abb9c;
  padding-bottom: 2vmin;
  box-sizing: border-box;
  transition: border-bottom-color 0.3s ease-in-out;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper2 #gasUsed2:focus,
body #gasCalc #calcInputs #limitPrice #gasInputWrapper2 #gasUsed2:hover {
  outline: none;
  border-bottom-color: #ffab56;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper2:after {
  content: 'Τιμή Υγραερίου (€/L)';
  color: #888;
  display: block;
  width: 100%;
  padding-top: 15px;
  box-sizing: border-box;
  text-align: left;
  font-size: 20px;
}


body #gasCalc #calcInputs #limitPrice #gasInputWrapper3 {
  width: 30%;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper3 #gasUsed3 {
  color: #fff;
  width: 100%;
  text-align: left;
  font-size: 40px;
  font-weight: 100;
  background: transparent;
  border: none;
  border-bottom: 0.66666667vmin solid #1abb9c;
  padding-bottom: 2vmin;
  box-sizing: border-box;
  transition: border-bottom-color 0.3s ease-in-out;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper3 #gasUsed3:focus,
body #gasCalc #calcInputs #limitPrice #gasInputWrapper3 #gasUsed3:hover {
  outline: none;
  border-bottom-color: #ffab56;
}
body #gasCalc #calcInputs #limitPrice #gasInputWrapper3:after {
  content: 'Τιμή Φυσικού αερίου (€/kg)';
  color: #888;
  display: block;
  width: 100%;
  padding-top: 15px;
  box-sizing: border-box;
  text-align: left;
  font-size: 20px;
}






body #gasCalc2 {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 3vmin;
  border-radius: 2vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
  background: #222;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
body #gasCalc2 .title {
  margin-bottom: 25px;
	font-size: 27px;
}
body #gasCalc2 #calcInputs {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 900px) {
  body #gasCalc2 #calcInputs {
    margin-bottom: 4vmin;
    width: 100%;
  }
}
body #gasCalc2 #calcInputs #calcSliderWrapper {
  width: 100%;
  height: auto;
  font-size: 20px;
}
body #gasCalc2 #calcInputs #calcSliderWrapper #gasSlider {
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  height: 1.33333333vmin;
  border-radius: 0.66666667vmin;
  background: #444;
  opacity: 0.75;
  transition: opacity 0.3s ease-in-out;
}
body #gasCalc2 #calcInputs #calcSliderWrapper #gasSlider:hover {
  opacity: 1;
}
body #gasCalc2 #calcInputs #calcSliderWrapper #gasSlider:hover::-webkit-slider-thumb {
  background: #ffab56;
}
body #gasCalc2 #calcInputs #calcSliderWrapper #gasSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2vmin;
  height: 6vmin;
  border-radius: 1vmin;
  background: #1abb9c;
  transition: background 0.3s ease-in-out;
}
body #gasCalc2 #calcInputs #calcSliderWrapper #sliderOutputs {
  color: #888;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  font-size: 20px;
  padding-top: 20px;
}
body #gasCalc2 #calcInputs #calcSliderWrapper #sliderOutputs #calcMins {
  color: #fff;
  font-size: 30px;
}




body #gasCalc3 {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 3vmin;
  border-radius: 2vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
  background: #222;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
	font-size: 30px;
}
body #gasCalc3 .title {
  margin-bottom: 25px;
	font-size: 27px;
}
body #gasCalc3 #calcInputs {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 900px) {
  body #gasCalc3 #calcInputs {
    margin-bottom: 4vmin;
    width: 100%;
  }
}
body #gasCalc3 #calcInputs #calcSliderWrapper {
  width: 100%;
  height: auto;
  font-size: 20px;
}
body #gasCalc3 #calcInputs #calcSliderWrapper #gasSlider {
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  height: 1.33333333vmin;
  border-radius: 0.66666667vmin;
  background: #444;
  opacity: 0.75;
  transition: opacity 0.3s ease-in-out;
}
body #gasCalc3 #calcInputs #calcSliderWrapper #gasSlider:hover {
  opacity: 1;
}
body #gasCalc3 #calcInputs #calcSliderWrapper #gasSlider:hover::-webkit-slider-thumb {
  background: #ffab56;
}
body #gasCalc3 #calcInputs #calcSliderWrapper #gasSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2vmin;
  height: 6vmin;
  border-radius: 1vmin;
  background: #1abb9c;
  transition: background 0.3s ease-in-out;
}
body #gasCalc3 #calcInputs #calcSliderWrapper #sliderOutputs {
  color: #888;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  font-size: 20px;
  padding-top: 20px;
}
body #gasCalc3 #calcInputs #calcSliderWrapper #sliderOutputs #calcMins {
  color: #fff;
  font-size: 30px;
}








body #gasUsage {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4vmin;
  border-radius: 2vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
  background: #222;
  width: 33%;
}
body #gasUsage #guageHolder {
  position: relative;
  width: 100%;
  height: 22vmin;
  margin-top: 2vmin;
}
@media only screen and (max-width: 900px) {
  body #gasUsage #guageHolder {
    height: 14.66666667vmin;
  }
}
body #gasUsage #guageHolder #usagePercent {
  color: #f55869;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  font-size: 8vmin;
  font-weight: 400;
}
@media only screen and (max-width: 900px) {
  body #gasUsage #guageHolder #usagePercent {
    font-size: 4vmin;
  }
}
body #gasUsage #guageHolder #useageMeter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body #gasUsage #blockInfo {
  color: #888;
  font-weight: 300;
  margin-top: 2vmin;
  font-size: 3.2vmin;
}
@media only screen and (max-width: 900px) {
  body #gasUsage #blockInfo {
    font-size: 2.64vmin;
  }
}
body #gasUsage #blockInfo #lastBlock {
  color: #ccc;
  font-weight: 400;
}
body #txCount {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4vmin;
  border-radius: 2vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
  background: #222;
  width: 49%;
}
body #confirmTime {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4vmin;
  border-radius: 2vmin;
  margin-bottom: 4vmin;
  box-sizing: border-box;
  background: #222;
  width: 49%;
}
::selection {
  background: #aaa;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}