@import url('https://fonts.googleapis.com/css?family=Fjalla+One');

body {
    font-family: 'Fjalla One', sans-serif;
	background-color: black;
    color: white;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button {
	margin: 5px;
}

ul {
	text-align: center;
	list-style-type:none;
    display: block;
	margin: 25px auto 25px auto;
    padding: 0;
}

li {
	background-color: #db4d8d;
    border: 2px solid white;
    border-radius: 7px;
    color: white;
    text-align: center;
    text-decoration: none;
    margin: 7px auto 7px auto;
    width: 50%;
    overflow: hidden;
    transition: background-color 0.5s;
}

li:hover {
	cursor:pointer;
	background-color: #db8cb0;
}

img {
    display: block;
    margin: 7% auto 0px auto;
    width: 47%;
    animation: 5.0s linear 0s 100 turnProcess;
}

.la {
	animation: 1s ease-out 0s 1 myFade;
}

.error {
	animation: 0.25s linear 0s 3 errorBorder;
}

@keyframes myFade {
    from { opacity: 0}
    to   { opacity: 1}
}

@keyframes errorBorder {
    0% { border: 3px solid black;}
    50%   { border: 3px solid red;}
    100% { border: 3px solid black;}
}

@keyframes turnProcess {
    0% { transform: rotate(0deg)}
    25%   { transform: rotate(90deg)}
    50% { transform: rotate(180deg)}
    75% { transform: rotate(270deg)}
    100% { transform: rotate(360deg)}
}

#headerImg {
	background: url('https://i.imgur.com/BFtC16c.png') no-repeat center;
    background-size: contain;
    margin-top: 3%;
    height: 13%;
}

#title {
	font-size: 150%;
    text-align: center;
    margin: auto;
}

#main {
    /*border: 2px solid green;/**/
    /*min-height: 150px;/*?May not keep?*/
    margin: auto;
}

#section {
    text-decoration: underline;
	/*border: 2px solid green;/**/
	font-size: 140%;
    text-align: center;
    margin: auto;
    clear: both;
}

#menu {
	/*border: 2px solid purple;/**/
	max-height: 100px;
    display: block;
    margin: auto;
}

#leftMenu {
	float: left;
    /*border: 2px solid blue;/**/
    padding: 2px;
    margin: 0px auto 0px 10%;
    min-width: 175px;
}

#rightMenu {
	float: right;
    /*border: 2px solid red;/**/
    padding: 2px;
    margin: 0px 10% 0px auto;
    min-width: 175px;
}

#menuItem {
	display: block;
    background-color: #8a1349;
    border: 2px solid white;/**/
    border-radius: 7px;
    padding: 4px;
    margin: 4px;
    text-align: left;
    transition: background-color 0.5s;
}

#menuItem:hover {
    background-color: #c43f7b;
}

#summary {
	display: block;
	/*border: 2px solid pink;/**/
    align-content: center;
    margin: auto;
	width: 45%;
}

#listContainer {
	display: block;
	/*border: 2px solid pink;/**/
    align-content: center;
    padding: 1px;
    margin: auto;
	width: 58%;
	max-height: 32px;
}

#prev {
    background-color: #8a1349;
    display: block!important;
	float: left;
	transition: background-color 0.5s;
}

#next {
    background-color: #8a1349;
    display: block!important;
	float: right;
	transition: background-color 0.5s;
}

#prev:hover, #next:hover {
    background-color: #c43f7b;
}

#total {
    color: #db8cb0;
    display: block;
    font-size: 120%;
    text-align: center;
    margin: auto auto 0px auto;
}

#process {
    /*border: 2px solid pink;/**/
    margin: auto;
}

#order {
    border: 2px solid white;/**/
    border-radius: 15px;
    font-size: 170%;
    text-align: center;
    line-height: 70px;
    vertical-align: middle;
    background-color: #db4d8d;
    width: 250px;
    height: 70px;
    margin: 10% auto 10% auto;
    transition: background-color 0.5s;
}

#iframe {
    color: black;
    /*display: none;/*Will need to be disabled for testing - use data/html url*/
    height: 200px;
    width: 100%;
    background-color: white;
}

[type=number] {
	width: 40px;
    float: right;
}

[value=Submit] {
	background-color: #db4d8d;
	display: block;
	float: left;
}

[value=Cancel] {
	background-color: #717171;
	display: block;
	float: right;
}

[value=FCancel] {
	background-color: #717171;
    display: block!important;
    width: 75px!important;
    margin: auto;
}

[type=button] {
    outline: none;
    border: 2px solid white;
    border-radius: 7px;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;/**/
    font-size: 16px;
    font-weight: bold;
    width: 95px;
    height: 30px;
    margin: 10px auto auto auto;
    transition: background-color 0.5s;
}

[type=button]:hover, #order:hover {
    cursor:pointer;
	background-color: #db8cb0;
}