html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    width: 100%;
}

*,
* :before,
*:after {
    box-sizing: border-box;
}

.menu-container {
    height: 90%;
    padding: 5%;
    width: 100%;
    position: relative;
    top: 10%;
}

#welcome {
    font-size: 1.2rem;
}

.box {
    display: flex;
    flex-wrap: wrap;
    padding: 5%;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 11px #ccc;
    background-color: #ffffff;
    margin-top: 25px;
    border-right: 4px solid #1d90e2;
}

.label {
    display: inline-flex;
    justify-items: center;
    align-items: center;
}

.icon {
    height: 40px;
    width: 40px;
    margin-right: 35px;
}

a {
    text-decoration: none;
    width: 100%;
}

button {
    background-color: #1d90e2;
    padding: 0 20px;
    display: flex;
    justify-items: center;
    align-items: center;
    width: 100%;
    border: none;
    outline: none;
    margin-top: 14px;
}

button:hover,
button:active {
    background-color: #3fb2f4;
}

.button-icon {
    height: 15px;
    width: 15px;
}

.button-text {
    margin: 9px;
    color: #ffffff;
}

.break {
    width: 100%;
}

#receipt-label {
    margin-bottom: 10px;
}

#search {
    width: 100%;
    display: flex;
    border: 1px solid #f1f1f1;
    padding: 6px 13px;
    justify-content: space-between;
    align-items: center;
}

#search:hover,
#search:active {
    border: 1px solid #c0c0c0;
}

input {
    border: none;
    outline: none;
    width: 100%;
    height: 25px;
}

#search-image {
    position: relative;
}

#search input:focus~#search-image {
    display: none;
}