* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #151515;
  color: #202720;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.kiosk-shell {
  width: 1080px;
  max-width: 100%;
  height: 1920px;
  max-height: none;
  min-height: 1920px;
  margin: 0 auto;
  background: #f4f7f0;
  overflow: hidden;
  position: relative;
  text-align: left;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.topbar {
  height: 116px;
  background: #18cf09;
  background: -webkit-linear-gradient(left, #0ea703, #18cf09);
  background: linear-gradient(90deg, #0ea703, #18cf09);
  color: #ffffff;
  position: relative;
  z-index: 4;
}

.icon-button {
  position: absolute;
  left: 24px;
  top: 22px;
  width: 72px;
  height: 72px;
  border-radius: 7px;
  background: rgba(37, 50, 44, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}

.icon-button span {
  width: 38px;
  height: 5px;
  border-radius: 2px;
  background: #fff;
  display: block;
  margin: 0 auto 6px;
}

.icon-button span:first-child {
  margin-top: 21px;
}

.brand {
  position: absolute;
  left: 126px;
  right: 90px;
  top: 18px;
  height: 82px;
  color: #ffffff;
  display: block;
}

.brand-mark {
  float: left;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.92);
  text-align: center;
  line-height: 62px;
  font-weight: 900;
  font-size: 36px;
}

.brand-copy {
  display: block;
  margin-left: 86px;
  padding-top: 4px;
}

.brand-copy strong {
  display: block;
  font-size: 42px;
  line-height: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: 0;
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 700;
  text-transform: lowercase;
  opacity: 0.94;
}

.dots {
  position: absolute;
  right: 22px;
  top: 24px;
  width: 58px;
  height: 70px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  display: block;
  margin: 0 auto 6px;
}

.dots span:first-child {
  margin-top: 9px;
}

.screen {
  height: -webkit-calc(100% - 116px);
  height: calc(100% - 116px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #eef2e9;
}

.grid-view,
.subgrid {
  padding: 5px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.home-grid {
  height: 100%;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
  padding: 0;
}

.tile {
  display: block;
  float: left;
  width: 50%;
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  border: 3px solid rgba(255,255,255,0.9);
  background: #2d342d;
  color: #fff;
}

.home-row {
  display: table-row;
  height: 25%;
}

.home-grid .tile {
  display: table-cell;
  float: none;
  width: 50%;
  height: auto;
  vertical-align: top;
}

.tile-wide {
  width: 100%;
}

.tile-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tile-shade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,0.32);
}

.tile-title {
  position: absolute;
  left: 24px;
  right: 20px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0;
  text-shadow: 0 3px 10px rgba(0,0,0,0.66);
  word-wrap: break-word;
}

.grid-back-button,
.back-button {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  width: 58px;
  height: 52px;
  border-radius: 7px;
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-size: 42px;
  line-height: 47px;
  text-align: center;
}

.grid-back-button + .tile {
  margin-top: 0;
}

.detail {
  min-height: 100%;
  background: #f5f7f0;
}

.hero {
  height: 700px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,0.38);
}

.hero-title {
  position: absolute;
  left: 28px;
  right: 22px;
  bottom: 26px;
  margin: 0;
  color: #fff;
  z-index: 1;
  text-transform: uppercase;
  font-size: 66px;
  line-height: 70px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 4px 14px rgba(0,0,0,0.7);
  word-wrap: break-word;
}

.content {
  padding: 24px 26px 34px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: #3d493e;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a {
  display: inline-block;
  margin: 0 8px 8px 0;
  background: #dce6d6;
  color: #263026;
  border-radius: 5px;
  padding: 8px 10px;
  font-weight: 800;
}

.text {
  font-size: 20px;
  line-height: 31px;
  color: #263026;
}

.text p {
  margin: 0 0 17px;
}

.subheading {
  clear: both;
  margin: 26px 0 14px;
  font-size: 19px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  color: #263026;
}

.subgrid {
  min-height: 0;
  margin: 0 -4px 8px;
  padding: 0;
}

.subgrid .tile {
  height: 340px;
}

.subgrid .tile-title {
  font-size: 22px;
  line-height: 25px;
}
