#loader {
  margin-top: 45vh;
  transform: translateY(-50%);
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  width: 100vw;
  height: 100vw;
  max-width: 120px;
  max-height: 120px;
  transform: translateX(-50%);
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d283b;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
html {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

h2 {
  font-size: 19px;
}
h2:first-child {
  margin-top: 0.5em;
}

.clear {
  width: 100%;
  clear: both;
}

body {
  min-height: 100vh;
  background: url("../images/app-bg.jpg") center center no-repeat;
  background-size: cover;
  padding-top: 32px;
  padding-bottom: 128px;
}

.container-fluid {
  padding: 0px;
}

.area-dark {
  padding: 12px 0;
  margin-left: -10px;
  margin-right: -10px;
  background: #dbdbdb;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}

.vgh-button {
  background: #0d283b;
  text-align: center;
  padding: 1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
}

.vgh-panel {
  padding-top: 10px;
  padding-bottom: 10px;
}

#app {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
  margin-top: -1px;
  padding-top: 32px;
}
#app.loading {
  background: transparent;
}
#app #top-bar {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  background: #333;
  color: #fff;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}
#app #top-bar p {
  text-align: center;
  margin: 3px 0 0 0;
  font-size: 12px;
}
#app #nav-bar {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #0d283b;
  border-top: 1px solid #040c11;
  color: #fff;
  margin: 0;
  text-align: center;
  padding: 0;
  z-index: 100;
}
#app #nav-bar li {
  display: inline-block;
  margin: 0 10px;
  padding: 10px;
  cursor: pointer;
}
#app #nav-bar li i {
  display: block;
  margin-bottom: 2px;
  color: #297db8;
  min-height: 1.2em;
  font-size: 1.2em;
}
#app #nav-bar li .label {
  font-size: 0.85em;
}
#app #start h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
#app #start div.start-offers {
  display: flex;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
}
#app #start div.start-offers[data-count="2"] .single-poi {
  width: 50%;
}
#app #start div.start-offers[data-count="3"] .single-poi {
  width: 33.333%;
}
#app #start div.start-offers .single-poi {
  display: flex;
  flex-direction: column;
  padding: 5px;
  border-top: none;
  width: 33%;
}
#app #start div.start-offers .single-poi a {
  color: inherit;
  display: block;
  width: 100%;
}
#app #start div.start-offers .single-poi a .poi-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 5px;
}
#app #start div.start-offers .single-poi a .poi-image img {
  width: 100%;
  height: auto;
}
#app #start div.start-offers .single-poi a img,
#app #start div.start-offers .single-poi a h2,
#app #start div.start-offers .single-poi a p {
  width: 100%;
  text-align: left;
  display: block;
}
#app #start div.start-offers .single-poi a h2 {
  font-size: 12px;
  padding: 0 3px;
  margin: 0 0 0.25em 0;
  font-weight: 700;
}
#app #start div.start-offers .single-poi a p {
  padding: 0 3px;
  font-size: 10px;
}
#app #start ul#codes {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
}
#app #start ul#codes li {
  width: 50%;
  text-align: center;
}
#app #start ul#codes li i {
  display: block;
  font-size: 64px;
  text-align: center;
  color: #aaa;
}
#app #start ul#codes li .label {
  font-size: 11px;
  display: block;
  text-align: center;
  margin: 5px 0;
}
#app #start ul#codes li .single-code {
  display: inline-block;
  margin: 5px auto;
  font-size: 21px;
  padding: 4px 12px;
  border-bottom: 1px solid #0d283b;
}
#app #start .infotext-panel {
  border-bottom: 1px solid #ebebeb;
  font-size: 12px;
}
#app #start ul.start-quicknav {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  #app #start ul.start-quicknav {
    flex-direction: row;
  }
}
#app #start ul.start-quicknav li {
  width: 90%;
  margin: 5%;
}
@media (min-width: 768px) {
  #app #start ul.start-quicknav li {
    width: 40%;
    margin: 5%;
  }
}
#app #start ul.start-quicknav li span.label {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
#app #start ul.start-quicknav li span.byline {
  display: block;
  font-weight: 300;
  font-size: 12px;
}
#app div.offers {
  display: flex;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  /*
  padding-top: 32px;
  padding-bottom: 32px;

  .single-poi {
    border-top: 1px solid #ebebeb;
    padding: 8px 0;
    display: block;
    position: relative;
    clear: both;

    &:first-child {
      border-top: none;
    }
    &:last-child {
      border-bottom: none;
    }

    img {
      float: left;
      max-width: 25vw;
      margin-right: 0.5em;
      margin-bottom: 0.25em;
    }
    h2 {
      font-size: 15px;
    }
    p {
      font-size: 12px;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }
  */
}
#app div.offers[data-count="2"] .single-poi {
  width: 50%;
}
#app div.offers[data-count="3"] .single-poi {
  width: 33.333%;
}
#app div.offers .single-poi {
  display: flex;
  flex-direction: column;
  padding: 5px;
  border-top: none;
  width: 33%;
}
#app div.offers .single-poi a {
  color: inherit;
  display: block;
  width: 100%;
}
#app div.offers .single-poi a .poi-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 5px;
}
#app div.offers .single-poi a img,
#app div.offers .single-poi a h2,
#app div.offers .single-poi a p {
  width: 100%;
  text-align: left;
  display: block;
}
#app div.offers .single-poi a h2 {
  font-size: 12px;
  padding: 0 3px;
  margin: 0 0 0.25em 0;
  font-weight: 700;
}
#app div.offers .single-poi a p {
  padding: 0 3px;
  font-size: 10px;
}
#app #orderableitems ul {
  list-style: none;
  padding: 0;
}
#app #orderableitems ul li.app-product {
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
#app #orderableitems ul li.app-product:first-child {
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
}
#app #orderableitems ul li.app-product .product-info {
  position: relative;
  display: flex;
  justify-content: space-between;
}
#app #orderableitems ul li.app-product .product-info .product-name {
  display: block;
  padding-right: 65px;
}
#app #orderableitems ul li.app-product .product-info span.description {
  display: block;
  font-size: 0.8em;
}
#app #orderableitems ul li.app-product .product-purchase {
  display: flex;
}
#app #orderableitems ul li.app-product .product-purchase .amount-container {
  width: 50%;
  display: flex;
}
#app #orderableitems ul li.app-product .product-purchase .amount-container input {
  width: 50px;
  text-align: center;
  border: 1px solid #0d283b;
  border-left: 0px;
  border-right: 0px;
}
#app #orderableitems ul li.app-product .product-purchase .amount-container button {
  background: #0d283b;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  border: none;
}
#app #orderableitems ul li.app-product .product-purchase .addtocart-container {
  width: 50%;
  text-align: right;
}
#app #orderableitems ul li.app-product .product-purchase .addtocart-container button {
  width: auto;
  text-align: center;
  font-size: 12px;
}
#app #orderableitems ul li.app-product .vgh-button {
  width: 100%;
  text-align: left;
}
#app #orderableitems ul li.app-product button {
  position: relative;
}
#app #orderableitems ul li.app-product button:focus {
  outline: none;
  background: #081a26;
}
#app #orderableitems ul li.app-product .confirmation {
  margin-top: 10px;
  margin-bottom: 10px;
}
#app #orderableitems .send-order-container {
  position: fixed;
  bottom: 80px;
  left: 5%;
  right: 5%;
  width: 90%;
  background: #fff;
  border: 4px solid #0d283b;
  color: #3f3f3f;
  font-size: 12px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
}
#app #orderableitems .send-order-container select {
  margin-bottom: 1em;
}

.slide-up-enter-active, .slide-up-leave-active {
  transition: opacity 0.5s, transform 0.5s;
}

.slide-up-enter, .slide-up-leave-to {
  opacity: 0;
  transform: translateY(100%);
}
