html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
figure,
header,
footer,
nav,
img,
section,
details,
summary,
main {
	display: block;
}

img {
    max-width: 100%;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

.clear-floats:before,
.clear-floats:after {
	display: block;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	content: "\0020";
}
.clear-floats:after {
	clear: both;
}
.clear-floats {
	zoom: 1;
}  

.hilight {
    font-weight: bold;
    color: red;
}

.single-line {
    height: 2px;
    border-bottom: 2px solid #000;
}

.double-line {
    font-size: 2px !important;
    height: 2px !important;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.small-text {
    font-size: 85%;
}

.right-align {
    text-align: right;
}

figure {
    margin-bottom: 30px;
}

figure > img {
    margin: 0 auto;
}

figcaption {
    padding: 10px;
    font-size: 1em;
    line-height: 1.1;
    text-align: center;
}

q {
    font-style: italic;
}

a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover,
a:active {
    text-decoration: underline;
}

h1 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

h2 {
    margin: 0 0 15px;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
}

p {
    margin: 0 0 0.9em;
    font-size: 1.2em;
    line-height: 1.4;
}

table {
    width: 100%;
}

th {
    padding: 10px;
    font-weight: bold;
    text-align: center;
    color: #000;
    background-color: #ccc;
}

td {
    padding: 10px 20px;
    font-family: "Courier New", Courier, monospace;
}

button[type = "button"] {
    padding: 5px 10px;
    font-size: 80%;
    color: #fff;
    background-color: red;
    border-radius: 5px;
    border: 0;
}
button[type = "button"]:hover {
    color: black;
    background-color: yellow;
    cursor: pointer;
}
button[type = "button"]:disabled {
    background-color: #ccc !important;
    color: #000 !important;
    cursor: inherit !important;
}

input[type = "text"] {
    width: 30px;
}

html {
	overflow-y: scroll; /* force a vertical scrollbar to prevent a jumpy page */
	overflow-wrap: break-word;
	font-size: 100%; /* This means 16px by default */
}

body {
	width: 100%;
	min-width: 320px;
	font-family: "Roboto", sans-serif;
	background-color: #ffbdf3;
}

header {
    width: 100%;
    padding: 20px;
    background-color: #000;
}

main {
    padding: 10px;
}

#controls {
    margin: 20px -10px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    color: #fff;
    background-color: #000;
}

h6 {
    cursor: pointer;
}

h6 > span {
    min-width: 25px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    color: #000;
    background-color: #fff;
}

#my-order {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #000;
    border-top: none;
    position: absolute;
    top: 100%;
    right: 0;
    color: #000;
    background-color: #eee;
}

#my-order tr.order-row:hover {
    color: #fff;
    background-color: #ccc;
    cursor: pointer;
}

@media only all and (max-width: 500px) {
    td,
    th {
        display: block;
    }
}

.category {
    margin: 0 -10px 20px;
}

@media only all and (min-width: 800px) {
    main {
        padding: 20px;
    }
    #controls {
        margin: 20px 0;
    }
    .columns {
        margin-top: 40px;
    }
    .column1 {
        width: 59%;
        float: left;
    }
    .column2 {
        width: 39%;
        float: right;
    }
    .category {
        margin: 0 0 30px;
    }
}

@media only all and (min-width: 1200px) {
    main {
        padding: 20px 40px;
    }
}

.category h3 {
    padding: 10px 20px;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    background-color: #7f0404;
    
}

.menu-item {
    margin: 0 0 5px;
    padding: 20px;
    background-color: #fff;
}
.menu-item h4 { /* item name */
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.5;
}
.menu-item p {
    margin: 0 0 0.5em;
    line-height: 1.6;
}
.menu-item p:last-child {
    margin: 0;
}
.menu-item .price {
    font-size: 90%;
    font-weight: bold;
    color: green;
}

footer {
    padding: 20px;
    text-align: center;
    color: #fff;
    background-color: #000;
}
footer > address {
    margin-bottom: 40px;
    font-style: normal;
}
footer > address > p {
    margin: 0 0 5px;
}
footer > address > p:first-child {
    font-size: 200%;
    font-weight: bold;
}
