* {
    font-family: Open Sans,Arial,Helvetica,sans-serif;
}

.header-logo {
    text-align: center;
}

nav {
    text-align: right;
}

nav a {
    text-decoration: none !important;
}

header img {
    width: 40%;
    padding: 20px;
}

.container {
    width: 50%;
    margin: auto;
}

input[type=submit], button, a.btn, button.btn {
    border-radius: 20px;
    background: #7ab93b;
    color: white !important;
    border: 1px solid #7ab93b;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    padding: 8px 18px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    text-decoration: none;
}

button.btn-secondary, a.btn-secondary {
    background-color: #6c757d;
    border: #6c757d;
}

input[type=submit]:hover, button:hover, a.btn:hover {
    background: #74a837;
    border-color: #74a837;
}

input[type=text], input[type=number], input[type=email], textarea {
    border: 1px solid #c2c2c2;
    border-radius: 1px;
    font-size: 14px;
    line-height: 1.43;
    width: 60%;
    padding: 4px 9px;
    box-sizing: border-box;
}

input[type=number].barcode {
    width: 100%;
}

textarea {
    width: 100%;
}

ul.box-list {
    list-style: none;
    -webkit-padding-start: 0;
}
  
ul.box-list li {
    width: 100%;
    padding: 10px;
    margin: -1px;
    border: 1px solid #c2c2c2;
    border-collapse: collapse;
    border-radius: 1px;
}

#submitReturn {
    font-size: 16px;
    width: 251px;
    padding: 15px;
    border-radius: 50px;
}

.inset_box {
    background-color: #ddd;
    border: 1px solid #666;
    padding: 0 10px 10px;
    font-size: 12px;
}

.inset-input {
    line-height: 12px !important;
    padding: 6px 12px !important;
}

.error {
    background-color: rgba(255,0,0,0.3);
    border: 1px solid red;
    padding: 5px;
}

input[type=submit].delete {
    background-color: red ;
    border: red;
    display: inline;

}

.version {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: right;
    color: grey;
}

.test {
    color: red;
    font-size: 30px;
}

.banner {
    background-color: lightgray;
    border: 1px solid black;
    text-align: center;
    font-size: x-large;
    font-weight: bold;
}

.delete {
    color: red;
    float: right;
}

li.deleted {
    display: none;
}

i.red {
    color: red;
}

a {
    text-decoration: underline;
}

tr.green {
    background-color: rgba(0,255,0,0.6);
}

/* Keypad */
#keypad-input {
    font-size: xx-large;
    text-align: center;
    padding: 0.6em 0;
    width: 100%;
}

.keypad {
    /* padding-top: 2rem; */
    display: flex;
    font-family: Helvetica;
    font-weight: 400;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
    width: 340px;
}

.keypad-button {
    border: 1px solid black;
    border-radius: 5%;
    color: black;
    cursor: pointer;
    display: inline-block;
    font-size: 26px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    margin: 5px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.keypad-button:hover {
    background-color: #c2c2c2;
    color: #FFFFFF;
}

.keypad-button-danger {
    border: red;
    background-color:red;
    color: white;
}

.keypad-button-danger:hover {
    background-color: rgba(255,0,0,0.3);
}

.keypad-button-success {
    border: #7ab93b;
    background-color: #7ab93b;
    color: white;
}

.keypad-button-success:hover {
    background-color: green;
}

div.chart-container {
    position: relative;
    width:100%;
    min-height: 30vh;
}

ul.hover-select li:hover {
    background: lightgrey;
}

.errorModal {
    background-color: rgba(255,0,0,0.6);
}
