body {
    font-family: 'Roboto', sans-serif;
}
.wrapper {
    width: 90%;
    height: 90%;
    margin: 10px auto;
    -webkit-box-shadow: 0px 0px 13px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 13px -1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 13px -1px rgba(0,0,0,0.75);
}
.header {
	text-align: center;
    padding: 15px;
}
.list {
	list-style: none;
    padding: 0;
    width: 95%;
    margin: 0 auto;
}
.list-item {
    position: relative;
	height: auto;
    border: 1px solid #dedede;
    margin-bottom: 10px;
    padding: 10px 30px 10px 10px;
    line-height: 25px;
}
.item-delete {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 25px;
    width: 25px;
    border-radius: 3px;
    text-align: center;
    line-height: 25px;
    background-color: #ff3333;
    color: #fff;
    cursor: pointer;
    -webkit-box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
}
.item-delete:hover {
    background-color: #d12a2a;
}
.item-edit {
    position: absolute;
    right: 45px;
    top: 10px;
    height: 25px;
    width: 25px;
    border-radius: 3px;
    text-align: center;
    line-height: 25px;
    background-color: #ffb133;
    color: #fff;
    cursor: pointer;
    -webkit-box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
}
.item-edit:hover {
    background-color: #f0a325;;
}
.input-wrapper {
	height: 30px;
    width: 40vw;
    margin:20px auto;
}
.item-value {
    box-sizing: border-box;
	height: 30px;
    width: 80%;
    float: left;
    padding-left: 15px;
    border: 1px solid #dedede;
}
.item-add {
    float: right;
    width: 18%;
    height: 30px;
    text-transform: uppercase;
    color: #fff;
    background-color: #49d149;
    border: none;
    border-radius: 3px;
    font-size: 2vh;
    cursor: pointer;
    -webkit-box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 6px -2px rgba(0,0,0,0.75);
}
.item-add:hover {
    background-color: #41b541;
}
