body {
    font-family: "Lato", sans-serif;
}

* {
    font-family: Arial, Helvetica, sans-serif;
}
 /* Style the navigation menu */
.topnav {
    overflow: hidden;
    display: block;
    background-color: #333;
    position: fixed;
    top:0px;
    left: 0px;
    width: 100%;
}

.main {
    padding: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
    /*height: 1500px;*/ /* Used in this example to enable scrolling */
}

#titlepage{
    color: white;
    padding: 14px 16px;
    font-size: 17px;
    display: block;
    background-color: #4CAF50;
}

/* Style navigation menu links */
.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}
/* Style the hamburger menu */
.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Style the active link (or home/logo) */
.active {
    background-color: #4CAF50;
    color: white;
}
.footernavbar {
    overflow: hidden;
    background-color: #4CAF50;
    position: fixed;
    bottom: 0;
    left:0;
    width: 100%;
    text-align:center;
    padding:5px;
}
.footernavbar button {
    color: #f2f2f2;
    text-align: center;
    background-color: red;
     border: none;
        outline: 0;
        padding: 10px;
        cursor: pointer;
        width: 150px;
        font-size: 16px;
        font-weight: bold;
        border-radius: 20px;
}
.footernavbar #btnContinue{
    width: 180px;
}

.footernavbar button:hover {
    background-color: gray;
}
.card {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        max-width: 800px;
        margin: auto;
        text-align: center;
        font-family: arial;
}

.price {
        color: grey;
        font-size: 22px;
}

.card .button {
        border: none;
        outline: 0;
        padding: 12px;
        color: white;
        background-color: #000;
        text-align: center;
        cursor: pointer;
        width: 100%;
        font-size: 18px;
}

.card .button:hover {
        opacity: 0.7;
}

#mySidenav{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
}

.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 250px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
#menudate{
    text-align: center;
    margin: 5px;
}
#menudate input[type=date] {
    padding:10px;
}
/* Full-width input fields */
#msg_display{
 display: none;
 position: fixed;
 z-index: 10;
 top:0;


 width:400px;
}



/* Center the loader */
#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
}

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 }
    to { bottom:0px; opacity:1 }
}

@keyframes animatebottom {
    from{ bottom:-100px; opacity:0 }
    to{ bottom:0; opacity:1 }
}

#msgbox{
    display: none;
    position: fixed;
    font-size: 18px;
    top:0px;
    right: 50px;
    left: 50px;
    margin:0px;
    padding: 10px;
    background-color: red;
    color: white;
    border-radius: 5px;
    text-align:center;
    z-index:1;
}
#welcomemsg{
    top:15px;
    right:150px;
    position: fixed;
    color: white;
    font-size: 12px;
}
