/* latin */
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 400;
  src: local("Cabin"), local("Cabin-Regular"), url(/assets/cabin-v12-latin-regular-156effd72c67ddc830762d858751c70d0e608aa54f23ae2e15a1888bb6e2bbc0.woff2) format("woff2"), url(/assets/cabin-v12-latin-regular-45bdfffbad9ed3b41cecf23b657c4b24f6b45d5c36805629e061f6c17adae593.woff) format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* latin */
@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: local("Pacifico Regular"), local("Pacifico-Regular"), url(/assets/pacifico-v12-latin-regular-c1721c33f415eafcd5e16ce70ce81d3e2f12d36f5d833946966da5f8983f2499.woff2) format("woff2"), url(/assets/pacifico-v12-latin-regular-7062298f2bfd8b4602211efa402f283133e74ba516216a2e128869dcd06751a2.woff) format("woff");
}
/* line 1, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -40px;
  margin-top: -20px;
  transform: translate(0, -20px) scale(0.8);
  z-index: 3;
  tap-highlight-color: transparent;
}

/* line 12, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi-particle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  background: url(/assets/navi-particle-2b96b64cac4543a6bd1d9ddc1620757f452f2e28b8a4b85e7773f7168c3d3f57.png) no-repeat center center;
  background-size: 100%;
  animation: particle 600ms linear 1;
  animation-fill-mode: forwards;
  z-index: 0;
}

/* line 25, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi-particle.pink {
  filter: hue-rotate(90deg);
}

/* line 29, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi-heart {
  width: 25px;
  height: 25px;
  background: url(/assets/navi-heart-1f493f99fd82243dd8a47ffef20a86f6d8047ce075f9a4a52716794f55879051.png) no-repeat center center;
  background-size: 100%;
  display: inline-block;
  margin: auto -15px auto -15px;
  position: relative;
  z-index: 1;
  transform: translate3d(0, 0, 20px);
  vertical-align: 3px;
  animation: heart 2400ms ease-in-out infinite;
}

/* line 43, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi-left-wings {
  width: 27px;
  height: 45px;
  background: url(/assets/navi-left-wings-6ef34a329de9b8813096adfa3cdd9ce8e92b1b426c67e2e6ededa8df6f995627.png) no-repeat center left;
  background-size: 23px;
  display: inline-block;
  transform-origin: right;
}

/* line 52, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi-right-wings {
  width: 40px;
  height: 42px;
  background: url(/assets/navi-right-wings-8c5c0b2f09b5a3f36296fb0dd80eaea2ae2261e9a58dabc9c34d411b2163d5df.png) no-repeat center right;
  background-size: 37px;
  display: inline-block;
  transform-origin: left;
}

/* line 61, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi-left-wings,
.navi-right-wings {
  position: relative;
  animation: wings 800ms linear infinite;
}

/* line 68, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi.fast .navi-left-wings,
.navi.fast .navi-right-wings {
  animation: wings-2 400ms linear infinite;
}

/* line 73, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi.pink-fast .navi-left-wings,
.navi.pink-fast .navi-right-wings {
  animation: wings 200ms linear infinite;
}

/* line 78, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi.pink .navi-heart {
  animation: pink-heart 2400ms ease-in-out infinite;
}

/* line 82, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/navi.scss */
.navi.pink-fast .navi-heart {
  animation: pink-fast-heart 600ms ease-in-out infinite;
}

@keyframes heart {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
  100% {
    filter: brightness(1);
  }
}
@keyframes pink-heart {
  0% {
    filter: hue-rotate(90deg) brightness(1);
  }
  50% {
    filter: hue-rotate(90deg) brightness(1.1);
  }
  100% {
    filter: hue-rotate(90deg) brightness(1);
  }
}
@keyframes pink-fast-heart {
  0% {
    filter: hue-rotate(90deg) brightness(1);
  }
  50% {
    filter: hue-rotate(90deg) brightness(1.2);
  }
  100% {
    filter: hue-rotate(90deg) brightness(1);
  }
}
@keyframes wings {
  0% {
    transform: rotateY(0);
  }
  40% {
    transform: rotateY(60deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes wings-2 {
  0% {
    transform: rotateY(0);
  }
  40% {
    transform: rotateY(60deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes particle {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
/* line 1, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* line 7, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
body {
  text-align: center;
  font-family: 'Cabin', Helvetica, sans-serif;
  font-size: 16pt;
  line-height: 1.25em;
  -webkit-font-smoothing: antialiased;
}

/* line 15, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
ul {
  list-style: none;
  padding: 0;
  line-height: 1.7em;
  margin-top: 0.5em;
}

/* line 22, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
ul span {
  display: inline-block;
  width: 40px;
}

/* line 27, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.cursive {
  font-family: 'Pacifico', cursive;
  font-weight: normal;
}

/* line 32, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.signature {
  margin: 1.5em auto 0.5em auto;
}

/* line 36, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.title {
  border-bottom: 2px solid #ffdcdf;
  letter-spacing: 0.03em;
}

/* line 41, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.center {
  text-align: center;
}

/* line 45, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.float-left {
  float: left;
}

/* line 49, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.float-right {
  float: right;
}

/* line 53, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.margin-right {
  margin-right: 0.5em;
}

/* line 57, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
#us {
  width: 250px;
  height: 233.14px;
  margin-top: -3px;
}

/* line 63, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
#wendy {
  width: 220px;
  margin: 0 0 35px;
}

/* line 68, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
#photo {
  display: inline-block;
  height: 20px;
  margin-left: 0.35em;
  vertical-align: sub;
}

/* line 75, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
#gaelle-eyes,
#cedric-eyes {
  position: absolute;
  top: 67px;
  width: 22.47px;
  left: 50%;
  margin-left: -57px;
  visibility: hidden;
}

/* line 85, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
#cedric-eyes {
  margin-left: 33px;
}

/* line 89, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.header {
  position: absolute;
  top: 10px;
  left: 50%;
  font-size: 32px;
  line-height: normal;
  color: #4e75b5;
  text-shadow: 0px 2px 1px rgba(78, 116, 181, 0.15);
  cursor: default;
  white-space: nowrap;
}

/* line 101, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.header .and {
  font-size: 0.8em;
  line-height: 0.9em;
}

/* line 106, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.header-left {
  margin-left: -251px;
}

/* line 110, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.header-right {
  margin-left: 115px;
}

/* line 114, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-container {
  overflow: auto;
}

/* line 118, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box {
  margin: -75px auto 5px;
  max-width: 600px;
  border-radius: 7px;
  background: #faebe7;
  min-height: 10em;
  border: 3px solid #f5d3c9;
  border-width: 3px 2px 2px 2px;
}

/* line 128, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.menu {
  padding: 0 0.4em;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* line 135, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.menu a {
  display: inline-block;
  font-size: 14pt;
  font-weight: bold;
  color: #EAA690;
  padding: 0.7em 0.3em;
  border: none;
  text-decoration: none;
  transition: transform 100ms, text-shadow 100ms;
}

/* line 146, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.menu a.selected {
  color: #fc6c80;
  cursor: default;
  text-shadow: 0px 1px 1px rgba(235, 166, 144, 0.2);
}

/* line 152, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.menu a:not(.selected):hover {
  transform: scale(1.2);
  color: #fb909f;
  text-shadow: 0px 2px 1px rgba(235, 166, 144, 0.2);
}

/* line 158, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.menu-left {
  float: left;
}

/* line 162, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.menu-right {
  float: right;
}

/* line 166, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content {
  margin-top: 60px;
  text-align: left;
  padding: 0 0.7em;
  font-size: 14pt;
  color: #b15d43;
}

/* line 174, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content a:not(.button):not(.photo-button) {
  color: inherit;
  text-decoration: inherit;
  border-bottom: 1px dashed rgba(177, 93, 67, 0.5);
}

/* line 180, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content a:not(.button):not(.photo-button):hover {
  border-bottom-color: #b15d43;
}

/* line 184, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content .button {
  text-decoration: inherit;
  display: inline-block;
  background: #fc6c80;
  color: white;
  border-radius: 3px;
  padding: 0 0.8em;
  font: inherit;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 2.2em;
  border: none;
  box-shadow: inset 0px -2px 0 rgba(0, 0, 0, 0.07);
}

/* line 199, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content .button:hover {
  background: #fb909f;
}

/* line 203, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.button-label {
  color: #EAA690;
}

/* line 207, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content .photo-button {
  text-decoration: inherit;
  display: block;
  padding: 0.5em;
  border-radius: 8px;
  background: #fbf0ed;
  margin-bottom: 1em;
  color: inherit;
  border: 2px solid #f6d9d0;
}

/* line 218, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content .photo-button label {
  font-weight: bold;
  cursor: default;
  color: #EAA690;
  display: inline-block;
  transition: transform 100ms, text-shadow 100ms;
  margin-bottom: 0.2em;
}

/* line 227, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content .photo-button:not(.photo-button--disabled):hover {
  border-color: #fb909f;
  background: #f5d3c973;
}

/* line 232, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content .photo-button:not(.photo-button--disabled):hover label {
  transform: scale(1.05) translateX(4px);
  color: #fb909f;
  text-shadow: 0px 2px 1px rgba(235, 166, 144, 0.2);
}

/* line 238, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content .photo-button--disabled {
  border: 2px dashed #f6d9d0;
  cursor: default;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* line 248, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.box-content .photo-button--highlight::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/big-corail-flower-aa68dbd4d50d23ee61bed612d9eb321ddf0421b5300350674aeaebe421581c68.svg) no-repeat;
  width: 36px;
  height: 36px;
  background-size: 100%;
  opacity: 0.8;
  float: right;
  margin-top: 9px;
  margin-right: 10px;
  animation: rotating 6s linear infinite;
}

/* line 263, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.map {
  width: 100%;
  height: 300px;
  border: 1px solid #f8e1db;
  border-radius: 6px;
  background: url(/assets/map-placeholder-8cb124e29abbc1d0082bb344fe9ee4c426ddd6b1bd13b3f3cf86f9f5e43faef8.png) no-repeat center center;
  background-size: auto 100%;
}

/* line 272, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.map .mapboxgl-canvas-container {
  transition: opacity 600ms;
  opacity: 0;
}

/* line 277, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.map .mapboxgl-ctrl-logo {
  display: none;
}

/* line 281, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.map .mapboxgl-ctrl-attrib:not(:hover) {
  opacity: 0.2;
}

/* line 285, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.by-car {
  background: url(/assets/car-a7182314b3de143b0b90cc2f69b065cccf9d38054fa470cd09b1c6bf25576b72.svg) no-repeat left bottom 2px;
  color: #EAA690;
  display: inline-block;
  margin: 0 0.3em;
  padding-left: 37px;
}

/* line 293, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.code {
  color: #fc6b80;
  font: inherit;
  font-size: 0.9em;
  display: inline-block;
  margin-left: 0.5em;
}

/* line 301, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.nowrap {
  white-space: nowrap;
}

/* line 305, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
footer {
  border-top: 2px dashed #f6d9d0;
}

/* line 309, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
iframe.rsvp {
  width: 100%;
  height: 1700px;
  border: none;
  margin-top: 1em;
}

/* line 316, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
iframe.church {
  border-radius: 8px;
  width: 100%;
  height: 325px;
  border: none;
}

/* line 324, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
img.church {
  width: 100%;
  border-radius: 0.5em;
}

/* line 329, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.branch {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/branch-2c71fd4c7058ce97937591ae8e4bb6738add681ec0c75f0197d1faba289a22b8.svg) no-repeat;
  width: 70px;
  height: 35px;
  background-size: 100%;
  opacity: 0.8;
}

/* line 339, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.green-branch {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/green-branch-e35bf074496ef677b19c7ea05c13fd2b09dd6dc57812b90a1eb6ec447d360a87.svg) no-repeat;
  width: 95px;
  height: 42px;
  background-size: 100%;
  opacity: 0.8;
}

/* line 349, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.branch-2 {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/branch-2-30284990e15a4e8236abb56687955aef3354ab2aa7f22ad9beba21706cd820d6.svg) no-repeat;
  width: 25px;
  height: 65px;
  background-size: 100%;
  opacity: 0.8;
  margin-left: 15px;
  margin-right: 10px;
}

/* line 361, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.leaf {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/leaf-34d8d344619730cd4e6819c11057a283eb1c6c8681b0dcd471de83e90c209e5d.svg) no-repeat;
  width: 20px;
  height: 41px;
  background-size: 100%;
}

/* line 370, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.pink-flower {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/pink-flower-677ef907e87453ba0a71174cbbf978612f2c77327570d28cf5740c21f91ee913.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 100%;
}

/* line 379, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.green-flower {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/green-flower-f2abb21719442c847396edea848bf3570f7c3ad99332a4fbfc10b036c2f37d41.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 100%;
}

/* line 388, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.orange-flower {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/orange-flower-4c88e75c5f3a4ef615aa36d21bf1ab1e9aa45d85e14562633e8df15fca016992.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 100%;
}

/* line 397, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.big-pink-flower {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/big-pink-flower-0166f9408667b049b95609964badc01db594ee43ca591d4830e2a120e3757e5f.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 100%;
}

/* line 406, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.big-corail-flower {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/big-corail-flower-aa68dbd4d50d23ee61bed612d9eb321ddf0421b5300350674aeaebe421581c68.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 100%;
  opacity: 0.8;
}

/* line 416, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.big-sweet-flower {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/big-sweet-flower-eba42fbd5be779e1893c981add5f3ac63e4c4d005492b3c765293ec0acbfba15.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 100%;
}

/* line 425, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.big-green-flower {
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/big-green-flower-f0ff4c43830d74b074fc4eaa2e3430acfd4e74ff16cfa429677948169efdb2f7.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 100%;
  opacity: 0.9;
}

/* line 435, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding.scss */
.big-flower {
  width: 40px;
  height: 40px;
}
@media (max-width: 610px) {
  /* line 2, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  #us {
    width: 180px;
    height: 167.86px;
  }

  /* line 7, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  #wendy {
    width: 140px;
    margin-bottom: 28px;
  }

  /* line 12, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  #gaelle-eyes,
  #cedric-eyes {
    width: 16.2px;
    top: 47.5px;
    margin-left: -41px;
  }

  /* line 19, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  #cedric-eyes {
    margin-left: 23.75px;
  }

  /* line 23, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .box {
    margin: -56px 5px 1.5em;
  }

  /* line 27, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .header {
    font-size: 20px;
  }

  /* line 31, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .header-left {
    margin-left: -156px;
  }

  /* line 35, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .header-right {
    margin-left: 64px;
  }

  /* line 39, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .menu {
    float: none;
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
  }

  /* line 46, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .menu-left {
    margin: 1.5em 0 -1em;
  }

  /* line 50, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .baptism .menu-left {
    margin: 0.5em 0 0;
  }

  /* line 54, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .box-content {
    margin-top: -1em;
  }

  /* line 58, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  iframe.rsvp {
    height: 2015px;
  }

  /* line 62, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
  .branch-2 {
    width: 40px;
    height: 105px;
  }
}
/* line 69, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
.us {
  transition: width 600ms;
}

/* line 70, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
.header {
  transition: font-size 600ms, margin-left 600ms;
}

/* line 71, /Users/cedricraud/Projects/gaelle-et-cedric/webapp/app/assets/stylesheets/wedding_responsive.scss */
.box {
  transition: margin-top 600ms;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

