* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
html, body {
  width: 100%;
  height: 100%;    
  color: #fffffff;
  background: #000000;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  text-align: center;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: auto;
  width:100%;
  height: 100%;
  color: #222;
}
header {
  background: #000;      
}
ul#menu {
  list-style: none;
  display: flex;
}      
ul#menu li {
  position:relative;
  flex:1;
  color: #fffff;
  font-size:0px;
  padding: 10px 4px 12px;
  background: #000000;      
  cursor: pointer;
}
ul#menu li img {
  width: 45px;
  height: 45px;
}      
ul#menu li.selected {
  background: #FF6030;
}
header ul {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
header ul li {
  position:relative;
}
.logo {
  flex: 1;        
}
.logo img {
  margin: 10px;
  height: 60px;
}
.info {
  width: 110px;
  cursor: pointer;
}
.info img {
  width: 40px;
  height: 40px;
}
.promo {
  width: 110px;
  cursor: pointer;
}
.promo img {
  width: 45px;
  height: 45px;
}
.main {
  flex: 1;
  color: #222222;
  background: #eeeeee;        
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}
.footer {
  border-top: 3px solid #FF6030;
}
ul#menu {
  list-style: none;
  display: flex;
}      
ul#menu li {
  position:relative;
  flex:1;
  color: #fffff;
  font-size:0px;
  padding: 10px 4px 12px;
  background: #000000;      
  cursor: pointer;
}
ul#menu li img {
  width: 45px;
  height: 45px;
}      
ul#menu li.selected {
  background: #FF6030;
}
.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}
.ripple:active:after {
  transform: scale(0, 0);
  opacity: .2;
  transition: 0s;
}
article {
  text-align:left;
}
article img {
}
article h2 {
  padding: 6px 15px;
  background: #999999;
  font-size: 24px;
}
.notice {
  padding: 0 20px;
  margin-bottom: 45px;
  text-align: center;
}
.notice p {
  margin-bottom: 5px;
  font-size: 12px;        
}         
article ul {
  margin: 25px;
  list-style-type: square;
}
article ul li {
  margin: 8px;
  font-size: 18px;
}        
article ul li p {
  padding: 5px;
  color: #666;
  font-size: 16px;
  line-height: 1.4em;
  text-align: left;
}
.tab {
  display: none;
}
.featurepic {
  padding:40px 0;
  min-height:375px;
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;       
}
.featurepic ul {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.5);
  list-style: none;
}
.featurepic ul li {
  font-size: 34px;
  color: #ffffff;  
}
#brewbar .featurepic {
  background: #000000 url("../images/brewbar.jpg") no-repeat right bottom;     
}      
#hotdrinks .featurepic {
  background: #000000 url("../images/hot_drinks.jpg") no-repeat center center;     
}
#colddrinks .featurepic {
  background: #000000 url("../images/cold_drinks.jpg") no-repeat center bottom;     
}
#food .featurepic {
  background: #000000 url("../images/food.jpg") no-repeat center center;     
}
#dessert .featurepic {
  background: #000000 url("../images/dessert.jpg") no-repeat center center;     
}
strong {
  padding: 0 5px;
  font-weight: 100;
  font-size: 16px;
  color: #999999;
  white-space: nowrap;
  display:block;
}
#info {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000 url("../images/bdc.jpg") no-repeat left center; 
  background-size: cover;          
}
#closeinfo {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 12px 15px;
  color: #000000;
  font-size: 28px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: right;
  cursor: pointer;
}       
#infocontent {
  text-align:left;
  background: rgba(256, 256, 256, 0.7);
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;         
}
#infocontent h2 {
  padding: 12px 15px;
  background: #999999;
  font-size: 24px;         
}
#infocontent p {
  padding: 25px;
  color: #222222;
  font-size: 18px; 
  line-height: 1.5em;
  letter-spacing: 1px;
}
#infocontent ul{
  list-style: none;
  display: flex;
  width: 100%;
}     
#infocontent ul li {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;        
  flex: 1;
}      
#infocontent ul li img {
  height: 45px;
}
#promo {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(256, 256, 256, 0.5);
}
#picsp {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: url("../images/promo.jpg") no-repeat center center; 
  background-size: contain;
}
@media screen and (min-width: 568px) {
  .logo img {
    margin: 15px;
    width: 134px;
    height: 75px;
  }
  ul#menu li img {
    width: 60px;
    height: 60px;
  }
  strong {
    display: inline-block;
    padding: 0 0 0 20px;
  }
}
@media screen and (min-width: 768px) {
  #brewbar .featurepic {
    background-position: center bottom;     
  }      
  #hotdrinks .featurepic {
    background-position: center center;     
  }
  #colddrinks .featurepic {
    background-position: center bottom;     
  }
  #food .featurepic {
    background-position: center center;     
  }
  #dessert .featurepic {
    background-position: center center;     
  }
}
@media screen and (max-height: 420px) {
  .wrapper {
    display:block;
  }
}      