:root{

	--col-variable: something;

}

* {
	margin: 0;
	padding: 0;
	text-decoration: none;
  font-family: Helvetica;
}

input:focus {outline:0;}

.pre-input {
  display: inline-block;
  width: 120px;
  font-size: 1.75rem;
  font-weight: lighter;
}

.lighter {
  font-weight: lighter;
}

.input {
  font-size: 25px;
  width: 150px;
  margin-left: 10px;
  margin-right: 5px;
  border: 0px;
  background: #eee;
  border-radius: 8px;
  /*border-bottom: 2px solid lightgrey;*/
  padding: 0px 8px;
}

.input:disabled {
  /*border-bottom: 2px solid white;*/
  /*background: #bbb;*/
  color: #999;
}

#buttons .btn {
  width: 80px;
  height: 80px;
  font-size: 40px;
  border-radius: 8px;
  /*display: block;*/
}

.header {
  /*height: 60px;*/
  /*background: #000;*/
  padding: 10px;
  margin-bottom: 30px
}

#myProgress {
  width: 100%;
  background: #ccc;
  border-radius: 8px;
  overflow: hidden;
}

#myBar {
  width: 100%;
  height: 60px;
  border-radius: 8px;
}

.bar {
  background: #28a745;
}

.bar.bar-warning {
  background: orange;
}

.display-text {
  margin-top: -50px;
  text-align: center;
  font-weight: 800;
  font-size: 20vw;
}

.display-text .col {
  padding: 0px;
}

/*---- Media Queries ----*/

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}

/* iPhone 5 (portrait &amp; landscape)----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px) {
/* STYLES GO HERE */
}
 
/* iPhone 5 (landscape)----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px)
and (orientation : landscape) {
/* STYLES GO HERE */
}
 
/* iPhone 5 (portrait)----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px)
and (orientation : portrait) {
/* STYLES GO HERE */
}

/* iPhone 6 landscape */
@media only screen and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (orientation: landscape)
  and (-webkit-min-device-pixel-ratio: 2)
{ }

/* iPhone 6 portrait */
@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (orientation: portrait)
  and (-webkit-min-device-pixel-ratio: 2)
{ }

/* iPhone 6 Plus landscape */
@media only screen
  and (min-device-width: 414px)
  and (max-device-width: 736px)
  and (orientation: landscape)
  and (-webkit-min-device-pixel-ratio: 3)
{ }

/* iPhone 6 Plus portrait */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 3)
{ }

/* iPhone 6 and 6 Plus */
@media only screen
  and (max-device-width: 640px),
  only screen and (max-device-width: 667px),
  only screen and (max-width: 480px)
{ }

/* Apple Watch */
@media
  (max-device-width: 42mm)
  and (min-device-width: 38mm)
{ }