/*Anything outside of media queries is for MOBILE
  This is Mobile first approach.
*/
body{
	font-family: 'Roboto',arial,sans-serif;
	background-color: #202124;
	color: #e8eaed;
	text-align: center;
	font-size: 6vw;
}
#myProgress {
	width: 100%;
	height: 10vw;
	background-color: #2d2e30;
	border: solid 1px #5f6368;
	border-radius: 10px;
}

#myBar {
	width: 100%;
	height: 10vw;
	position: absolute;
	z-index: 2;
	background-color: lime;
	border-radius: 10px;
	text-align: right;
	color: black;
	right: 3px;
}
#total{
	padding: 2.5vw 3vw 0 0;
	font-size: 5vw;
	color: #00000047;
}
#total2{
	font-size: 5vw;
    position: absolute;
    left: 3vw;
    margin-top: 2.5vw;
    z-index: 1;
	color: #e8eaed;
}
#form{
	text-align: left;
	margin-top: 10px;
	overflow: hidden;
}
.fields{
	width:100%;
	float: left;
	margin-top: 2vw;
}
.label{
	float: left;
	width: 25vw;
}
input{
    background-color: #222;
    color: #e6e6e6;
    border: solid 1px #5f6368;
    border-radius: 10px;
    height: 5vw;
    width: 11vw;
    padding: 5px;
    float: left;
    margin: 0 1vw 0 1vw;
    font-size: 4vw;
    text-align: center;
}
.curr{
	float: left;
	    margin-top: 0.5vw;
}
#btn_send_add, #btn_send_del{
    height: 8vw;
    width: 11vw;
    font-size: 7vw;
    border-radius: 10px;
    float: left;
    margin: 0px 1vw 0 4vw;
    text-align: center;
    cursor: pointer;
}
#btn_send_add{
	background-color: lime;
	color: black;
}
#btn_send_del{
	background-color: red;
	color: black;
}
#result{
	visibility: hidden;
	width: 98%;
	height: 30vw;
	float: left;
	border: solid 1px #5f6368;
	border-radius: 10px;
	margin-top: 10vw;
	background-color: #2d2e30;
	transition: visibility 0s, opacity 0.5s linear;
	line-height: 30vw;
}
#list ul{
	list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
    color: grey;
    font-size: 3vw;
}

#list ul li{
	border-top: 1px solid grey;
    padding-top: 2vw;
    padding-bottom: 2vw;
    width: 70%;	
}
#list ul li:first-child {
	border-top: none;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}