@import "open-sans.css";
.anim-gets {
  display: flex;
  justify-content: space-between;
}

.anim-get {
  display: block;
  width: 23%;
  box-sizing: border-box;
  position: relative;
}

.anim-gets .placeholder {
  width: 100%;
  height: auto;
  display: block;
}

.anim-gets .get {
  background-image: url("../img/anim_gets.png");
  background-size: 200% auto;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.anim-gets .get.inactive {
  opacity: 0.3;
  background-position: -100% 0%;
}

.anim-gets .get.active {
  opacity: 0;
  transform: scale(1.5);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.anim-get.active .get.active {
  opacity: 1;
  transform: scale(1);
}

#app[data-login-type=participant] .anim-gets .get {
  background-position: 0% -100%;
}

#app[data-login-type=participant] .anim-gets .get.inactive {
  background-position: -100% -100%;
}

/*
:root {
    --f7-safe-area-top: 44px;
    --f7-safe-area-bottom: 44px;
}
*/
/* iOS Cordova Tweak */
.device-cordova.device-ios {
  height: 100vh;
}

@keyframes md-page-next-to-current {
  from {
    transform: translate3d(56px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes md-page-current-to-next {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(56px, 0, 0);
    opacity: 0;
  }
}
html.with-modal-toast .view {
  pointer-events: none;
}

input.submit {
  position: absolute;
  width: 1px;
  height: 1px;
  visibility: hidden;
}

.avatar {
  max-width: 75px;
  width: auto;
  height: auto;
  border-radius: 50%;
}

.md .list.media-list.large-media .item-media {
  width: 30%;
}
.md .list.media-list.large-media .item-media img {
  width: 100%;
  height: auto;
}

.block-title {
  white-space: normal;
}

.num-gets {
  font-size: 65px;
  font-weight: normal;
}

.card-expandable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.card {
  margin-left: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));
  margin-right: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right));
  border-radius: calc(var(--f7-card-border-radius) * 2);
}

/* Avatar or logo in top navbar */
.navbar .avatar,
.navbar .logo {
  max-height: 35px;
}

/* Pictures with ratio placeholder */
div.picture {
  overflow: auto;
  position: relative;
  background-color: #f0f0f0;
}
div.picture img {
  display: block;
}
div.picture img.picture {
  position: absolute;
  top: 0px;
}
div.picture .header {
  font-size: var(--f7-card-expandable-header-font-size);
  font-weight: var(--f7-card-expandable-header-font-weight);
  position: absolute;
  top: 0px;
  left: 0px;
  padding: var(--f7-card-header-padding-vertical) var(--f7-card-header-padding-horizontal);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

/* ---- */
.owner-icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.eot");
  src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --f7-block-title-medium-font-size: 18px;
  --f7-page-bg-color: #efeff3;
  --f7-card-margin-vertical: 24px;
  --f7-card-expandable-font-size: 14px;
  --f7-list-item-text-max-lines: 5;
  --f7-block-title-large-font-size: 26px;
}

.md {
  --f7-font-family: "Open Sans", Roboto, system-ui, Noto, Helvetica, Arial, sans-serif;
}

.big-qr,
.medium-qr {
  display: block;
  width: 75%;
  height: auto;
  margin: auto;
}

.medium-qr {
  width: 50%;
}

/* Edit button */
.button-edit {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 15;
  height: var(--f7-button-height);
  width: var(--f7-button-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
.button-edit span, .button-edit i {
  font-size: 1.3em;
}

.button-edit-inside {
  top: 15px;
  right: 15px;
}

.button-edit-center {
  top: 50%;
  left: 50%;
  margin-top: calc( 0px - (var(--f7-button-height) / 2) );
  margin-left: calc( 0px - (var(--f7-button-height) / 2) );
}

/* ---- */
/* Language selector */
.language_selector .flag {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 100%;
  background-color: #fff;
}
.language_selector .flag span {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0.3;
}
.language_selector .flag.nl_NL span {
  background-image: url("../img/flags/nl.svg");
}
.language_selector .flag.en_US span {
  background-image: url("../img/flags/gb.svg");
}
.language_selector .flag.de_DE span {
  background-image: url("../img/flags/de.svg");
}
.language_selector .flag.selected span {
  opacity: 1;
}

hr {
  margin: 0px;
  position: relative;
  border-width: 0px;
  height: 1px;
  margin: var(--f7-block-margin-vertical) 0;
}
hr:after {
  content: "";
  position: absolute;
  background-color: var(--f7-list-item-border-color);
  display: block;
  z-index: 15;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  transform-origin: 50% 100%;
  transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
}

/* ---- */
/* Info bubbles */
.info-bubble ul {
  background-color: #deebfb !important;
  --f7-list-bg-color: #deebfb;
  border-radius: calc( var(--f7-card-border-radius) * 2);
  font-size: var(--f7-card-expandable-font-size);
}
.info-bubble ul:before,
.info-bubble ul:after {
  display: none;
}
.info-bubble .item-media {
  justify-content: center;
}
.info-bubble .owner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Account card / Get card / Give gets panel */
.account-card .block,
.get-card .block,
.voucher .block {
  margin-top: var(--f7-block-margin-vertical);
  margin-bottom: var(--f7-block-margin-vertical);
}
.account-card .block-title-medium,
.get-card .block-title-medium,
.voucher .block-title-medium {
  margin-left: 0px;
  margin-right: 0px;
}

.block.gets {
  margin-top: 0px;
  margin-bottom: 0px;
}
.block.gets .get {
  position: relative;
  margin-top: var(--f7-grid-gap);
}

.get-preview {
  position: relative;
}

.block.gets .get .get-overlay,
.get-preview .get-overlay {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 10;
}
.block.gets .get .get-image,
.block.gets .get .get-border,
.get-preview .get-image,
.get-preview .get-border {
  position: absolute;
  display: block;
  z-index: 9;
  width: 87%;
  height: 90%;
  top: 4%;
  left: 6%;
}
.block.gets .get .get-border,
.get-preview .get-border {
  z-index: 11;
  box-shadow: inset 0px 0px 0px 1px #e0e0e0;
  display: none;
}
.block.gets .get.placeholder .get-overlay,
.get-preview.placeholder .get-overlay {
  opacity: 0;
}
.block.gets .get.placeholder .get-image,
.get-preview.placeholder .get-image {
  opacity: 0.1;
  filter: grayscale(100%);
}
.block.gets .get.placeholder .get-border,
.get-preview.placeholder .get-border {
  display: block;
}

.account-card .num-gets-collected {
  background-color: var(--f7-button-fill-bg-color, var(--f7-theme-color));
  color: var(--f7-button-fill-text-color, #fff);
  border-radius: 3px;
  font-size: var(--f7-block-title-large-font-size);
  font-weight: var(--f7-block-title-large-font-weight);
}

/* ---- */
/* Expandable cards */
.card-expandable {
  height: 250px;
}

.card-expandable .safe-area-top {
  transition-property: all;
  transition-duration: 0.3s;
  transform: translate3d(0, 0, 0);
  position: relative;
  top: 0px;
}

.page.safe .card-expandable .safe-area-top {
  top: var(--f7-safe-area-top);
}

.page.safe .card-expandable .card-close {
  margin-top: var(--f7-safe-area-top);
}

.fab.safe {
  transition-property: all;
  transition-duration: 0.3s;
  transform: translate3d(-50%, 0, 0);
}

.page.safe .fab.safe {
  transform: translate3d(-50%, 56px, 0);
  /*
  	    transform: translate3d(-50%, calc(var(--f7-fab-margin) + var(--f7-safe-area-bottom) + var(--f7-tabbar-labels-height) + 56px), 0);
  */
}

.card-header .material-icons {
  margin-top: -6px;
}

.card-content .card-placeholder .card-header,
.card-content .card-placeholder .card-close {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.card-content .card-placeholder {
  position: relative;
  background-position: center !important;
}

.card-content .get-card-invalid,
.card-content .gift-invalid {
  position: absolute;
  bottom: 0px;
  color: #fff;
  left: 0px;
  right: 0px;
}
.card-content .get-card-invalid .icon,
.card-content .gift-invalid .icon {
  float: right;
}

/* ---- */
/* Get card participants list */
.get-card-participants .get-card {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  min-width: 90px;
  border-radius: var(--f7-button-border-radius);
  margin-bottom: 5px;
}
.get-card-participants .num-gets-collected {
  text-align: center;
  line-height: 1.5em;
  font-size: 2.3em;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

/* ---- */
/* Intro blocks */
.with-intro-description {
  margin-top: -32px;
  margin-bottom: 16px;
}

.intro_description {
  border-radius: calc( var(--f7-card-border-radius) * 2 );
  padding: 16px;
  background-color: #f0f5fb;
}

/* ---- */
.card.no-hairlines-between .card-header:after,
.card.no-hairlines-between .card-footer:before {
  display: none !important;
}

.md .toast.toast-center {
  min-width: 75%;
}

/* Owner logo in cards */
.card-placeholder .owner-logo {
  position: absolute;
  bottom: var(--f7-card-header-padding-horizontal);
  right: var(--f7-card-header-padding-horizontal);
}
.card-placeholder .owner-logo .avatar {
  max-height: 35px;
  width: auto;
  display: block;
}

/*# sourceMappingURL=app.css.map */
