@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700|Pacifico&subset=latin-ext');
.color-gradient {
  background-color: #fdeae7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8d0cb), to(#fdeae7));
  background-image: -webkit-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -moz-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -o-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -ms-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: linear-gradient(top, #f8d0cb, #fdeae7);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f8d0cb', EndColorStr='#fdeae7');
  background-size: 100vw 100vh;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.strip_browser_chrome {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.strip_anchor_styling {
  background: none;
  box-shadow: none;
  border-radius: 0;
}
/* ==========
   ANIMATIONS
   ========== */
@keyframes bouncing_right {
  0% {
    transform: translateX(-2px);
  }
  15% {
    transform: translateX(4px);
  }
  50% {
    transform: translateX(-2px);
  }
  65% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(-2px);
  }
}
@keyframes bouncing_down {
  0% {
    transform: translateY(-2px);
  }
  15% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-2px);
  }
  65% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes heart_beat_logo {
  0% {
    transform: rotate(-11deg) scale(1);
  }
  52% {
    transform: rotate(-11deg) scale(1);
  }
  64% {
    transform: rotate(-10deg) scale(1.05);
  }
  76% {
    transform: rotate(-11deg) scale(1);
  }
  88% {
    transform: rotate(-10deg) scale(1.05);
  }
  100% {
    transform: rotate(-11deg) scale(1);
  }
}
@keyframes heart_beat_email {
  0% {
    transform: rotate(0deg) scale(1);
  }
  52% {
    transform: rotate(0deg) scale(1);
  }
  64% {
    transform: rotate(1deg) scale(1.05);
  }
  76% {
    transform: rotate(0deg) scale(1);
  }
  88% {
    transform: rotate(1deg) scale(1.05);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes heart_beat {
  0% {
    transform: scale(1);
  }
  52% {
    transform: scale(1);
  }
  64% {
    transform: scale(1.2);
  }
  76% {
    transform: scale(1);
  }
  88% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  10% {
    transform: scale(1.4);
    opacity: 1;
  }
  15% {
    transform: scale(0.7);
    opacity: 1;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  90% {
    transform: scale(1);
    opacity: 1;
  }
  93% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes pop_stay {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  10% {
    transform: scale(1.4);
    opacity: 1;
  }
  15% {
    transform: scale(0.7);
    opacity: 1;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ================
   iPHONE X SUPPORT
   ================ */
/* ==============
   GLOBAL STYLING
   ============== */
*,
*:before,
*:after,
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  font-family: sans-serif;
  font-family: 'Open Sans', sans-serif;
  background-color: #fdeae7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8d0cb), to(#fdeae7));
  background-image: -webkit-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -moz-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -o-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -ms-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: linear-gradient(top, #f8d0cb, #fdeae7);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f8d0cb', EndColorStr='#fdeae7');
  background-size: 100vw 100vh;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
body {
  height: 100%;
}
main#contents {
  margin: auto;
  padding: 0 20px 40px 20px;
  padding: env(safe-area-inset-top) calc(20px + env(safe-area-inset-right)) calc(40px + env(safe-area-inset-bottom)) calc(20px + env(safe-area-inset-left));
  max-width: 500px;
  min-height: 100vh;
  position: relative;
  color: #313131;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
@media screen and (min-width: 380px) {
  main#contents {
    padding-left: 40px;
    padding-left: calc(40px + env(safe-area-inset-left));
    padding-right: 40px;
    padding-right: calc(40px + env(safe-area-inset-right));
  }
}
main#contents.invite {
  max-width: none;
  padding: 0 0 100px 0;
}
.logo {
  padding-left: 4px;
}
.logo svg {
  margin: auto;
  display: block;
  fill: white;
  transform: rotate(-11deg);
  animation: 1.5s infinite heart_beat_logo;
}
.invite_line,
header {
  text-align: center;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.invite_line span.lined,
header span.lined {
  font-family: 'Pacifico', cursive;
  font-size: 20px;
}
.invite_line span.lined:before,
header span.lined:before,
.invite_line span.lined:after,
header span.lined:after {
  background-color: #FFAA9C;
  content: "";
  display: inline-block;
  height: 1.5px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
.invite_line span.lined:before,
header span.lined:before {
  right: 10px;
  margin-left: -50%;
}
.invite_line span.lined:after,
header span.lined:after {
  left: 10px;
  margin-right: -50%;
}
.invite_line h1,
header h1 {
  font-size: 46px;
  line-height: 52px;
  margin: 20px 0 20px;
}
@media screen and (min-width: 370px) {
  .invite_line h1,
  header h1 {
    font-size: 53px;
    line-height: 55px;
  }
}
@media screen and (min-width: 600px) {
  .invite_line h1,
  header h1 {
    font-size: 70px;
    line-height: 72px;
    margin: 40px 0 35px;
  }
}
.invite_line h1 span,
header h1 span {
  display: block;
  position: relative;
}
.invite_line.guest span.lined,
header.guest span.lined {
  font-size: 16px;
}
.invite_line.guest h1,
header.guest h1 {
  font-size: 22px;
  line-height: 34px;
  margin: 10px 0;
}
.invite_line.guest h1 span,
header.guest h1 span {
  display: inline-block;
}
.invite_line.error h1,
header.error h1 {
  font-size: 35px;
  font-style: italic;
}
.invite_line {
  margin-top: 60px;
  margin-top: calc( 60px + env(safe-area-inset-top) );
  margin-bottom: 60px;
}
.logo.error svg {
  animation: none;
}
.text-block.center p {
  text-align: center;
}
.logo,
header,
.text-block,
footer {
  margin: 50px auto 0px auto;
  width: 100%;
}
.logo:last-child,
header:last-child,
.text-block:last-child,
footer:last-child {
  margin-bottom: 50px;
}
@media screen and (min-width: 600px) {
  .logo,
  header,
  .text-block,
  footer {
    margin: 60px auto 0px auto;
  }
  .logo:last-child,
  header:last-child,
  .text-block:last-child,
  footer:last-child {
    margin-bottom: 60px;
  }
}
p {
  line-height: 1.6em;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
section.invite_block p,
.text-block p,
section.invite_block h1,
.text-block h1,
section.invite_block h2,
.text-block h2,
section.invite_block h3,
.text-block h3,
section.invite_block h4,
.text-block h4,
section.invite_block h5,
.text-block h5,
section.invite_block h6,
.text-block h6 {
  padding: 0;
}
section.invite_block h2,
.text-block h2 {
  font-family: 'Pacifico', cursive;
  line-height: 1.2em;
}
section.invite_block ul,
.text-block ul {
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.6em;
}
section.invite_block ul li + li,
.text-block ul li + li {
  margin-top: .5em;
}
footer {
  width: 100%;
}
footer span.refresh_page {
  display: none;
}
footer p.standalone_text {
  display: none;
}
footer.standalonable p.standalone_text {
  display: block;
}
footer.standalone span.refresh_page {
  display: inline;
}
footer p,
p.secondary_action {
  text-align: right;
  opacity: .5;
  font-size: .8rem;
}
footer p button,
p.secondary_action button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  display: inline;
}
#new_did_you_know p.secondary_action {
  margin-top: -10px;
  /*
    float: right;
    margin-left: 10px;
    margin-right: -5px;
    button {
        padding: 5px;
        background-position: 0 2.4em;
        &:hover {
            background-position: 0 0;
        }
    }
*/
}
/* *
   * “Lord Vader’s Handle Formerly Anakin” -  the order for defining anchor pseudo classes in CSS. (LVHFA)
   * :link :visited :hover :focus :active
   * https://twitter.com/humantorch/status/917123893659361281
 */
/* *
   * Background effect: 
   * https://codepen.io/elifitch/pen/QyzJWb?editors=1100
 */
#new_did_you_know button,
#add_to_calendar button.download,
#rsvpFromGuest button.cancel,
#rsvpFromGuest button.edit,
a {
  color: #313131;
  text-decoration: none;
  transition: background-position 0.15s linear 0.1s, box-shadow 0.15s linear 0s;
  background-image: linear-gradient(to bottom, #FFAA9C 0%, #FFAA9C 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 1.3em;
  overflow: hidden;
}
#new_did_you_know button:hover,
#add_to_calendar button.download:hover,
#rsvpFromGuest button.cancel:hover,
#rsvpFromGuest button.edit:hover,
a:hover {
  cursor: pointer;
  border-radius: 3px;
  background-position: 0 0em;
  box-shadow: 0.2em 0 0 #FFAA9C, -0.2em 0 0 #FFAA9C;
  transition: background-position 0.1s linear 0s, box-shadow 0.1s linear 0.1s;
}
#new_did_you_know button,
#add_to_calendar button.download,
#rsvpFromGuest button.cancel,
#rsvpFromGuest button.edit {
  background-position: 0 1.5em;
}
form.login {
  position: relative;
  margin: 20px auto 0px auto;
  max-width: 360px;
}
form.login input[type="password"],
form.login input[type="submit"],
form.login input[type="email"],
form.login input[type="text"] {
  border-radius: 20px;
}
button,
textarea,
input[type="password"],
input[type="submit"],
input[type="email"],
input[type="text"] {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
}
input[type="submit"] {
  position: absolute;
  top: 3px;
  right: 3px;
  height: 34px;
  width: 34px;
  background-color: white;
}
input[type="submit"]:hover + .floating-arrow {
  color: #313131;
}
.placeholder_normal_styling {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
.placeholder_normal_styling_all_browsers::-webkit-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
.placeholder_normal_styling_all_browsers::-ms-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
.placeholder_normal_styling_all_browsers:-ms-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
.placeholder_normal_styling_all_browsers::-moz-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
.placeholder_normal_styling_all_browsers:-moz-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
.placeholder_normal_styling_all_browsers::placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
.placeholder_normal_styling_all_browsers:placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
.placeholder_focus_styling {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
.placeholder_focus_styling_all_browsers::-webkit-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
.placeholder_focus_styling_all_browsers::-ms-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
.placeholder_focus_styling_all_browsers:-ms-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
.placeholder_focus_styling_all_browsers::-moz-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
.placeholder_focus_styling_all_browsers:-moz-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
.placeholder_focus_styling_all_browsers::placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
.placeholder_focus_styling_all_browsers:placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
textarea,
input[type="password"],
input[type="email"],
input[type="text"] {
  border: 1px solid #FFAA9C;
  width: 100%;
  transition: 0.2s ease box-shadow;
}
textarea::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
textarea::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
textarea:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
textarea::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="text"]::-moz-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
textarea:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="text"]:-moz-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
textarea::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="text"]::placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
textarea:placeholder,
input[type="password"]:placeholder,
input[type="email"]:placeholder,
input[type="text"]:placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
textarea:focus::-webkit-input-placeholder,
input[type="password"]:focus::-webkit-input-placeholder,
input[type="email"]:focus::-webkit-input-placeholder,
input[type="text"]:focus::-webkit-input-placeholder,
textarea:hover::-webkit-input-placeholder,
input[type="password"]:hover::-webkit-input-placeholder,
input[type="email"]:hover::-webkit-input-placeholder,
input[type="text"]:hover::-webkit-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
textarea:focus::-ms-input-placeholder,
input[type="password"]:focus::-ms-input-placeholder,
input[type="email"]:focus::-ms-input-placeholder,
input[type="text"]:focus::-ms-input-placeholder,
textarea:hover::-ms-input-placeholder,
input[type="password"]:hover::-ms-input-placeholder,
input[type="email"]:hover::-ms-input-placeholder,
input[type="text"]:hover::-ms-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
textarea:focus:-ms-input-placeholder,
input[type="password"]:focus:-ms-input-placeholder,
input[type="email"]:focus:-ms-input-placeholder,
input[type="text"]:focus:-ms-input-placeholder,
textarea:hover:-ms-input-placeholder,
input[type="password"]:hover:-ms-input-placeholder,
input[type="email"]:hover:-ms-input-placeholder,
input[type="text"]:hover:-ms-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
textarea:focus::-moz-placeholder,
input[type="password"]:focus::-moz-placeholder,
input[type="email"]:focus::-moz-placeholder,
input[type="text"]:focus::-moz-placeholder,
textarea:hover::-moz-placeholder,
input[type="password"]:hover::-moz-placeholder,
input[type="email"]:hover::-moz-placeholder,
input[type="text"]:hover::-moz-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
textarea:focus:-moz-placeholder,
input[type="password"]:focus:-moz-placeholder,
input[type="email"]:focus:-moz-placeholder,
input[type="text"]:focus:-moz-placeholder,
textarea:hover:-moz-placeholder,
input[type="password"]:hover:-moz-placeholder,
input[type="email"]:hover:-moz-placeholder,
input[type="text"]:hover:-moz-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
textarea:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="text"]:focus::placeholder,
textarea:hover::placeholder,
input[type="password"]:hover::placeholder,
input[type="email"]:hover::placeholder,
input[type="text"]:hover::placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
textarea:focus:placeholder,
input[type="password"]:focus:placeholder,
input[type="email"]:focus:placeholder,
input[type="text"]:focus:placeholder,
textarea:hover:placeholder,
input[type="password"]:hover:placeholder,
input[type="email"]:hover:placeholder,
input[type="text"]:hover:placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
textarea:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus {
  box-shadow: inset 0px 0px 0px 2px #ffffff;
}
input[type="password"],
input[type="email"],
input[type="text"] {
  text-indent: 15px;
  height: 40px;
  padding: 0 40px 1px 5px;
}
.floating-label {
  position: absolute;
  pointer-events: none;
  border-radius: 4px;
  left: 15px;
  top: 8px;
  padding: 0 5px;
  transition: 0.2s ease-out all;
  background-color: #fdeae7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8d0cb), to(#fdeae7));
  background-image: -webkit-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -moz-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -o-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -ms-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: linear-gradient(top, #f8d0cb, #fdeae7);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f8d0cb', EndColorStr='#fdeae7');
  background-size: 100vw 100vh;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.floating-arrow {
  position: absolute;
  pointer-events: none;
  color: #FFAA9C;
  font-size: 24px;
  line-height: 40px;
  right: 9px;
  top: 0px;
  transition: color 0.2s ease-out;
}
.input-error {
  background-color: #313131;
  color: white;
  position: relative;
  border-radius: 20px;
  font-size: 12px;
  padding: 3px 10px;
  top: 3px;
}
.input-error:after {
  content: "";
  background: inherit;
  height: 10px;
  width: 10px;
  transform: rotate(45deg);
  position: absolute;
  top: -5px;
  left: 30px;
}
.input-error.rsvp {
  transform: scale(0);
  transform-origin: center top 0;
  transition: transform cubic-bezier(0.5, -0.5, 0.5, 1.5) 0.2s, opacity ease 0.2s;
  opacity: 0;
  left: 120px;
}
@media screen and (max-width: 370px) {
  .input-error.rsvp {
    left: 40px;
  }
}
.rsvp_input_error {
  position: absolute;
  z-index: 3;
}
.mini_label {
  top: -8px;
  font-size: 10px;
  left: 20px;
  opacity: 1;
  color: #313131;
}
input:hover ~ .floating-label,
input:focus ~ .floating-label,
input.filled:not(:focus) ~ .floating-label,
input:not(:focus):valid ~ .floating-label {
  top: -8px;
  font-size: 10px;
  left: 20px;
  opacity: 1;
  color: #313131;
}
input:focus ~ .floating-arrow,
input.filled:not(:focus) ~ .floating-arrow {
  animation: 3s bouncing_right infinite;
}
.rsvp_save_message {
  position: absolute;
  right: 10px;
  top: 70px;
  font-size: 30px;
  transform: scale(0.5);
  opacity: 0;
  z-index: 2;
}
.rsvp_save_message.confirm {
  animation: 4s pop forwards;
  -webkit-animation: 4s pop forwards;
  color: #4CD964;
}
.rsvp_save_message.error {
  animation: 4s pop_stay forwards;
  -webkit-animation: 4s pop_stay forwards;
  color: #E10050;
}
.rsvp_save_error_text {
  position: absolute;
  z-index: 1;
  background: #F9CCDC;
  border: 1px solid #E10050;
  color: #E10050;
  right: 15px;
  top: 20px;
  padding: 8px 45px 8px 15px;
  border-radius: 20px;
  margin-top: 1px;
  overflow: hidden;
  transform: scale(0);
  transform-origin: right center 0;
  transition: transform cubic-bezier(0.5, -0.5, 0.5, 1.5) 0.2s, opacity ease 0.2s;
  opacity: 0;
}
.rsvp_save_message:hover + .rsvp_save_error_text,
.rsvp_save_error_text:hover {
  transform: scale(1);
  opacity: 1;
}
form#rsvpFromGuest ul {
  padding: 0;
}
form#rsvpFromGuest li:before {
  content: none;
}
form#rsvpFromGuest input,
form#rsvpFromGuest textarea {
  width: 100%;
  display: block;
  margin: 30px auto;
  border-radius: 20px;
}
form#rsvpFromGuest button.submit {
  display: block;
  margin: auto;
}
form#rsvpFromGuest button.submit_edit,
form#rsvpFromGuest button.submit {
  line-height: 39px;
  padding: 0 15px 0 20px;
  border-radius: 20px;
  background-color: white;
  transition: border ease-in-out 0.2s, color ease-in-out 0.2s, transform ease-in-out 0.2s;
  border: 1px solid white;
  color: #FFAA9C;
  font-weight: bold;
}
form#rsvpFromGuest button.submit_edit svg,
form#rsvpFromGuest button.submit svg {
  float: right;
  display: block;
  font-size: 20px;
  margin-left: 15px;
  height: 39px;
}
form#rsvpFromGuest button.submit_edit svg.submit_spinner,
form#rsvpFromGuest button.submit svg.submit_spinner {
  display: none;
  margin-right: 20px;
}
form#rsvpFromGuest button.submit_edit:hover,
form#rsvpFromGuest button.submit:hover {
  color: #313131;
  border: 1px solid #FFAA9C;
}
form#rsvpFromGuest button.submit_edit:hover svg,
form#rsvpFromGuest button.submit:hover svg {
  color: #FFAA9C;
}
form#rsvpFromGuest button.submit_edit:hover svg.submit_arrow,
form#rsvpFromGuest button.submit:hover svg.submit_arrow {
  animation: 3s bouncing_right infinite;
}
form#rsvpFromGuest button.submit_edit.submitted svg.submit_arrow,
form#rsvpFromGuest button.submit.submitted svg.submit_arrow,
form#rsvpFromGuest button.submit_edit.submitted span,
form#rsvpFromGuest button.submit.submitted span {
  display: none;
}
form#rsvpFromGuest button.submit_edit.submitted svg.submit_spinner,
form#rsvpFromGuest button.submit.submitted svg.submit_spinner {
  display: block;
}
form#rsvpFromGuest button.cancel {
  padding: 0;
  margin: 9px 0 9px 15px;
  line-height: 23px;
  background-position: 0 1.3em;
}
form#rsvpFromGuest button.cancel.submitted {
  display: none;
}
form#rsvpFromGuest textarea {
  overflow: auto;
  padding: 8px 20px 0px;
  max-width: 100%;
  height: 40px;
}
form#rsvpFromGuest textarea::-webkit-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest textarea::-ms-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
form#rsvpFromGuest textarea:-ms-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
form#rsvpFromGuest textarea::-moz-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest textarea:-moz-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest textarea::placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest textarea:placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest textarea::-webkit-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
form#rsvpFromGuest textarea::-ms-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
form#rsvpFromGuest textarea:-ms-input-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
form#rsvpFromGuest textarea::-moz-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
form#rsvpFromGuest textarea:-moz-placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
form#rsvpFromGuest textarea::placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
form#rsvpFromGuest textarea:placeholder {
  color: rgba(255, 170, 156, 0.7);
  transform: scale(1);
}
form#rsvpFromGuest #rsvp_comment_textarea {
  position: relative;
}
form#rsvpFromGuest #rsvp_comment_textarea label {
  top: -8px;
  font-size: 10px;
  left: 20px;
  opacity: 1;
  color: #313131;
}
form#rsvpFromGuest #rsvp_comment_textarea textarea:focus::-webkit-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest #rsvp_comment_textarea textarea:focus::-ms-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
form#rsvpFromGuest #rsvp_comment_textarea textarea:focus:-ms-input-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
}
form#rsvpFromGuest #rsvp_comment_textarea textarea:focus::-moz-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest #rsvp_comment_textarea textarea:focus:-moz-placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest #rsvp_comment_textarea textarea:focus::placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
form#rsvpFromGuest #rsvp_comment_textarea textarea:focus:placeholder {
  color: rgba(255, 170, 156, 0);
  transform-origin: left center 0;
  transition: transform ease .2s, color ease .2s;
  transform: scale(0);
}
.segmented-control {
  display: table;
  width: 100%;
  margin: auto;
  padding: 0;
}
.segmented-control__item {
  display: table-cell;
  width: 50%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.segmented-control__item:first-of-type .segmented-control__label {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.segmented-control__item:last-of-type .segmented-control__label {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.segmented-control__input {
  position: absolute;
  visibility: hidden;
}
.segmented-control__label {
  display: block;
  margin: 0 -1px -1px 0;
  /* -1px margin removes double-thickness borders between items */
  padding: .5em .25em;
  border: 1px solid #FFAA9C;
  color: #313131;
  text-align: center;
  cursor: pointer;
}
.segmented-control__label svg {
  font-size: 60px;
  color: #FFAA9C;
  margin: 6px 0 10px 0;
}
.segmented-control__input.required + .segmented-control__label {
  border-color: #E10050;
}
.segmented-control__item .segmented-control__label:hover {
  background: rgba(255, 255, 255, 0.3);
}
.segmented-control__input:checked + .segmented-control__label {
  background: white;
}
.input-error.rsvp.show {
  transform: scale(1);
  opacity: 1;
}
img,
video,
figure {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
iframe {
  width: 100%;
}
.videoContainer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.videoContainer iframe,
.videoContainer object,
.videoContainer embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
hr {
  background-color: #FFAA9C;
  height: 1.5px;
  border: none;
  margin: 0;
}
blockquote {
  margin: 1em 0;
  padding-left: 10px;
  border-left: 2px solid #FFAA9C;
  color: rgba(49, 49, 49, 0.7);
}
main#contents.invite footer,
section.invite_block {
  padding: 80px 20px;
  position: relative;
  margin: 0px auto;
  width: 100%;
  max-width: 500px;
}
section.invite_block.photos {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
section.invite_block.photos .narrow_text {
  max-width: 500px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}
section.invite_block.photos .narrow_text p {
  margin-top: 1em;
  margin-bottom: 1em;
}
.photo_gallery {
  padding: 1px;
  padding-left: max(1px, env(safe-area-inset-left));
  padding-right: max(1px, env(safe-area-inset-right));
  margin: auto;
  max-width: 1000px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.photo_gallery img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  /*
        &:hover {
            filter:sepia(100%);
        }
*/
}
.photo_gallery figure {
  display: block;
  position: relative;
  margin: 1px;
  width: calc(100% / 4 - 2px);
  padding-top: calc(100% / 4 - 2px);
}
@media screen and (min-width: 400px) {
  .photo_gallery figure {
    width: calc(100% / 5 - 2px);
    padding-top: calc(100% / 5 - 2px);
  }
}
@media screen and (min-width: 600px) {
  .photo_gallery figure {
    width: calc(100% / 6 - 2px);
    padding-top: calc(100% / 6 - 2px);
  }
}
@media screen and (min-width: 800px) {
  .photo_gallery figure {
    width: calc(100% / 7 - 2px);
    padding-top: calc(100% / 7 - 2px);
  }
}
@media screen and (min-width: 1000px) {
  .photo_gallery figure {
    width: calc(100% / 8 - 2px);
    padding-top: calc(100% / 8 - 2px);
  }
}
main#contents.invite footer {
  padding-top: 0;
}
section.invite_block .inner_invite_block:first-child {
  margin-bottom: 160px;
  margin-top: -80px;
  padding-top: 80px;
}
section.invite_block .inner_invite_block:last-child {
  margin-top: 80px;
  padding-top: 80px;
}
section.invite_block p.emoji_list_item {
  position: relative;
  margin: 20px 0;
  padding-left: 35px;
}
section.invite_block p.emoji_list_item .item_emoji {
  position: absolute;
  left: 0;
  z-index: 1;
}
section.invite_block p.contact_list_item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0;
}
section.invite_block p.contact_list_item .contact_text {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
section.invite_block p.contact_list_item:nth-last-of-type(2) img.contact_foto {
  margin-left: 20px;
}
section.invite_block p.contact_list_item:nth-last-of-type(1) img.contact_foto {
  margin-right: 20px;
}
.inner_invite_block {
  position: relative;
}
section.invite_block#cover {
  background: url(/images/cover_foto.jpg) no-repeat;
  background-position: 50% 10%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  max-width: none;
}
section.invite_block#cover .logo svg {
  fill: #FFAA9C;
}
section.invite_block#cover .bounce_arrow {
  background: none;
  box-shadow: none;
  border-radius: 0;
  display: block;
  margin: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #FFAA9C;
  animation: 3s bouncing_down infinite;
  padding-bottom: 20px;
  padding-bottom: calc( 20px + env(safe-area-inset-bottom) );
  transition: opacity 0.2s ease-in-out, padding 0.2s ease-in-out;
  font-size: 40px;
}
section.invite_block#cover .bounce_arrow.stick_to_page {
  position: absolute;
}
section.invite_block#cover .bounce_arrow:after {
  content: none;
}
section.invite_block#cover .bounce_arrow.hide {
  opacity: 0;
}
section.invite_block#cover ul.cover_updates {
  list-style: none;
  padding: 0;
  position: absolute;
  bottom: 80px;
  bottom: calc( 80px + env(safe-area-inset-bottom) );
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
section.invite_block#cover ul.cover_updates.hide {
  opacity: 0;
}
section.invite_block#cover ul.cover_updates li {
  margin: 10px 10px 0 10px;
}
section.invite_block#cover ul.cover_updates li a {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 5px 20px 5px 15px;
  background: white;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  border-radius: 30px;
  height: 60px;
  font-weight: bold;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid white;
  line-height: 1.3em;
  transition: background ease-in-out 0.2s, transform ease-in-out 0.2s;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 370px;
  transform: scale(0);
  animation: 3s pop_stay forwards;
  -webkit-animation: 3s pop_stay forwards;
}
section.invite_block#cover ul.cover_updates li a svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #FFAA9C;
}
section.invite_block#cover ul.cover_updates li a svg:first-of-type {
  margin-right: 15px;
}
section.invite_block#cover ul.cover_updates li a svg:last-of-type {
  margin-left: 15px;
}
section.invite_block#cover ul.cover_updates li a.notification.last_minute svg:first-of-type {
  transform: rotate(-11deg);
}
section.invite_block#cover ul.cover_updates li a.notification.ceremoniemeester svg:first-of-type {
  transform: rotate(11deg);
}
section.invite_block#cover ul.cover_updates li a span {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: inline-block;
}
section.invite_block#cover ul.cover_updates li a:hover {
  background-color: white;
}
section.invite_block#cover ul.cover_updates li:nth-of-type(1) a {
  animation-delay: 1s;
}
section.invite_block#cover ul.cover_updates li:nth-of-type(2) a {
  animation-delay: 500ms;
}
.thanks section.invite_block#cover {
  background: url(/images/cover_foto_thanks.jpg) no-repeat;
  background-position: 66% 0%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  max-width: none;
}
.thanks section.invite_block#cover .logo svg {
  fill: white;
}
.thanks section.invite_block#cover .bounce_arrow {
  color: white;
}
.thanks section.invite_block#cover .logo svg,
.thanks section.invite_block#cover .bounce_arrow {
  opacity: .5;
}
.thanks section.invite_block#cover .bounce_arrow.hide {
  opacity: 0;
}
section.invite_block#cover .logo {
  z-index: 20;
}
section.invite_block#invite .logo {
  z-index: 10;
}
section.invite_block#cover,
section.invite_block#invite {
  clip: rect(auto, auto, auto, auto);
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
section.invite_block#cover .logo,
section.invite_block#invite .logo {
  background: none;
  box-shadow: none;
  border-radius: 0;
  position: fixed;
  top: 40px;
  top: calc(40px + env(safe-area-inset-top));
  margin: 0;
  overflow: visible;
  left: 0;
  right: 0;
}
section.invite_block#cover .logo.stick_to_page,
section.invite_block#invite .logo.stick_to_page {
  position: absolute;
}
.inner_invite_block#last-minute h2 svg {
  margin-right: 10px;
  transform: rotate(-11deg);
  color: #FFAA9C;
}
.message_box {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.message_box .closing_foto {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 70px;
  border-radius: 35px;
  border: 2px solid #FFAA9C;
  margin: 0;
}
span.item_name {
  font-weight: bold;
}
img.contact_foto {
  width: 120px;
  border-radius: 60px;
  border: 3px solid #FFAA9C;
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
nav#tabbar {
  position: fixed;
  transform: translateY(75px);
  transform: translateY(calc(75px + env(safe-area-inset-bottom)));
  transition: transform 200ms ease;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 20;
  box-shadow: 0px 10px 8px 10px rgba(0, 0, 0, 0.3);
}
nav#tabbar.show {
  transform: translateY(0px);
}
nav#tabbar ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
}
nav#tabbar ul li {
  display: inline-block;
  list-style: none;
  width: 20%;
}
nav#tabbar ul li a {
  background: none;
  box-shadow: none;
  border-radius: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  height: 100%;
  padding-bottom: calc( env(safe-area-inset-bottom) - 10px );
}
nav#tabbar ul li a svg,
nav#tabbar ul li a span.menu_item_label {
  display: block;
}
nav#tabbar ul li a svg {
  color: #FFAA9C;
  font-size: 30px;
  margin-top: 6px;
  margin-bottom: 5px;
}
nav#tabbar ul li a span.menu_item_label {
  margin-top: auto;
  font-size: 10px;
  margin-bottom: 6px;
}
nav#tabbar ul li a #messages_menu_icon {
  position: relative;
}
nav#tabbar ul li a #rsvp_menu_icon {
  background-color: #FFAA9C;
  border: 2px solid white;
  position: absolute;
  width: 50px;
  height: 50px;
  text-align: center;
  z-index: 200;
  border-radius: 25px;
  top: -10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
nav#tabbar ul li a #rsvp_menu_icon svg {
  margin: 0;
  color: white;
}
nav#tabbar ul li a #rsvp_menu_icon .rsvp_icon_yes,
nav#tabbar ul li a #rsvp_menu_icon .rsvp_icon_no {
  display: none;
  animation: 4s pop_stay forwards;
  -webkit-animation: 4s pop_stay forwards;
}
nav#tabbar ul li a #rsvp_menu_icon.rsvp_response_yes .rsvp_icon_empty,
nav#tabbar ul li a #rsvp_menu_icon.rsvp_response_yes .rsvp_icon_no {
  display: none;
}
nav#tabbar ul li a #rsvp_menu_icon.rsvp_response_yes .rsvp_icon_yes {
  display: block;
}
nav#tabbar ul li a #rsvp_menu_icon.rsvp_response_no .rsvp_icon_yes,
nav#tabbar ul li a #rsvp_menu_icon.rsvp_response_no .rsvp_icon_empty {
  display: none;
}
nav#tabbar ul li a #rsvp_menu_icon.rsvp_response_no .rsvp_icon_no {
  display: block;
}
nav#tabbar ul li a:hover {
  background: #eeeeee;
}
nav#tabbar ul li a:hover svg,
nav#tabbar ul li a:hover #rsvp_menu_icon svg {
  color: #313131;
}
nav#tabbar ul li a.active {
  background: #FFAA9C;
  font-weight: bold;
  color: #313131;
}
nav#tabbar ul li a.active svg {
  color: white;
}
nav#tabbar ul li a.active #rsvp_menu_icon {
  border: 2px solid #FFAA9C;
}
nav#tabbar ul li a.active:hover svg {
  color: #313131;
}
nav#tabbar ul li a span.attention {
  color: white;
  background-color: #E10050;
  position: absolute;
  font-size: 10px;
  font-weight: bold;
  width: 13px;
  line-height: 13px;
  border-radius: 6.5px;
  text-align: center;
  right: 0px;
  top: 6px;
  animation: 1.5s infinite heart_beat;
}
nav#tabbar.thanks ul li {
  width: 25%;
}
@media screen and (min-width: 1000px) and (min-height: 800px) {
  nav#tabbar.invite {
    top: 0;
    right: auto;
    background: none;
    box-shadow: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transform: translateY(0) translateX(-200px);
  }
  nav#tabbar.invite.show {
    transform: translateX(0px);
  }
  nav#tabbar.invite ul {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  nav#tabbar.invite ul li {
    width: auto;
  }
  nav#tabbar.invite ul li a {
    padding: 12px 30px 12px 20px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 60px;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  nav#tabbar.invite ul li a span.menu_item_label {
    margin: 0 0 0 15px;
    font-size: initial;
  }
  nav#tabbar.invite ul li a svg {
    margin: 0;
  }
  nav#tabbar.invite ul li a #rsvp_menu_icon {
    top: auto;
    left: 13px;
  }
  nav#tabbar.invite ul li a #rsvp_menu_icon + span {
    padding-left: 38px;
  }
  nav#tabbar.invite ul li a:hover {
    background: none;
  }
  nav#tabbar.invite ul li a.active {
    background: #FFAA9C;
  }
}
nav#tabbar.show ul li a #rsvp_menu_icon.rsvp_response_empty svg {
  animation-name: heart_beat;
  animation-duration: 1.5s;
  animation-iteration-count: 2;
  animation-delay: 1s;
}
section.invite_block ul.message_listing {
  list-style: none;
  padding: 0;
  margin-right: -20px;
}
section.invite_block ul.message_listing li.message {
  border-top: 1px solid #FFAA9C;
  margin: 0;
}
section.invite_block ul.message_listing li.message:last-of-type {
  border-bottom: 1px solid #FFAA9C;
}
section.invite_block ul.message_listing li.message a {
  background: none;
  box-shadow: none;
  border-radius: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 10px 0 14px;
}
section.invite_block ul.message_listing li.message a svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  transition: transform ease-in-out 0.2s;
}
section.invite_block ul.message_listing li.message a svg.message_icon {
  margin-right: 15px;
}
section.invite_block ul.message_listing li.message a svg.message_chevron {
  margin-left: 10px;
  margin-right: 20px;
  color: #FFAA9C;
  font-size: 20px;
}
section.invite_block ul.message_listing li.message a .message_teaser {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
section.invite_block ul.message_listing li.message a .message_teaser span.time {
  font-size: .8em;
  line-height: 1.4em;
  opacity: .6;
  float: right;
}
section.invite_block ul.message_listing li.message a:hover svg.fa-chevron-up {
  transform: translateY(-5px);
}
section.invite_block ul.message_listing li.message a:hover svg.fa-chevron-right {
  transform: translateX(5px);
}
a.message_back_button {
  background: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #FFAA9C;
  padding: 20px 0;
}
a.message_back_button svg {
  margin-right: 10px;
}
.nowrap {
  white-space: nowrap;
}
#email_container {
  background-color: white;
  min-height: 100vh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
#email_container span.date {
  color: silver;
}
#email_container nav {
  padding-top: env(safe-area-inset-top);
}
#email_container nav a {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 20px 0px 20px 20px;
  display: inline-block;
  color: #FFAA9C;
}
#email_container nav a svg {
  margin-right: 10px;
}
#email_container nav span.date {
  padding: 20px 20px 20px 0px;
  display: inline-block;
  float: right;
}
@media screen and (max-width: 370px) {
  #email_container nav span.date {
    display: none;
  }
}
#email_container header {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #FFAA9C;
  border-bottom: 1px solid #FFAA9C;
  text-align: left;
}
#email_container header .inner_container {
  padding: 0 20px;
}
#email_container header span.sender:before {
  content: "Van: ";
}
#email_container header span.recipient:before {
  content: "Aan: ";
}
#email_container header span.date,
#email_container header span.subject,
#email_container header span.sender,
#email_container header span.recipient {
  display: block;
}
#email_container header span.date:before,
#email_container header span.subject:before,
#email_container header span.sender:before,
#email_container header span.recipient:before {
  display: inline-block;
  width: 40px;
  color: silver;
}
#email_container header span + span {
  margin-top: 6px;
}
#email_container header span.subject {
  font-weight: bold;
}
@media screen and (min-width: 370px) {
  #email_container header span.date {
    display: none;
  }
}
#email_container main {
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #fdeae7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8d0cb), to(#fdeae7));
  background-image: -webkit-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -moz-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -o-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: -ms-linear-gradient(top, #f8d0cb, #fdeae7);
  background-image: linear-gradient(top, #f8d0cb, #fdeae7);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f8d0cb', EndColorStr='#fdeae7');
  background-size: 100vw 100vh;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
#email_container main a {
  background: none;
  box-shadow: none;
  border-radius: 0;
}
#email_container main .email_content .outer_email_table {
  background: none !important;
}
#email_container main .email_content .outer_email_table a.open_button:hover {
  color: #313131 !important;
  border: 1px solid #FFAA9C !important;
}
#email_container main .email_content .outer_email_table a.open_button:hover img {
  animation: 3s bouncing_right infinite;
}
#email_container .inner_container {
  max-width: 500px;
  margin: auto;
}
