@-webkit-keyframes bounceDelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounceDelay {

  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

p {
  font-size: 16px;
  line-height: 25px;
}

.welcome-page .date-text p,
.welcome-page .wedding-party p,
.welcome-page .registry p {
  font-size: 18px;
  line-height: 29px;
}

.welcome-page .date-text h1 {
  font-size: 46px;
  line-height: 54px;
}

.welcome-page .date-text h2,
.welcome-page .wedding-party h2,
.welcome-page .registry h2 {
  font-size: 34px;
  line-height: 42px;
}

.fa {
  font-size: medium;
}

th {
  vertical-align: middle;
}

a {
  cursor: pointer;
}

.welcome-page .welcome-differentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px auto 15px;
  padding: 0 10px;
}

.welcome-page .welcome-differentials span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  color: #8a3424;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  padding: 8px 12px;
}

.welcome-page .welcome-differentials i {
  color: #d85235;
}

.welcome-page .welcome-login-link {
  color: #7a4a3a;
  font-size: 17px;
  line-height: 22px;
  margin: 10px 0 12px;
}

.welcome-page .welcome-login-link a {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(126, 47, 32, 0.45);
  border-radius: 0;
  color: #7e2f20;
  display: inline;
  font-weight: bold;
  margin-left: 4px;
  padding: 0 0 2px;
  transition: border-color .18s ease, color .18s ease;
  -webkit-transition: border-color .18s ease, color .18s ease;
}

.welcome-page .welcome-login-link a:hover,
.welcome-page .welcome-login-link a:focus {
  background: transparent;
  border-color: rgba(126, 47, 32, 0.85);
  color: #5c2419;
}

.welcome-page .welcome-login-link i {
  margin-right: 4px;
}

.welcome-page .welcome-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  right: auto;
  z-index: 999;
  background: rgba(255, 248, 241, 0.96);
  border: 1px solid rgba(196, 131, 92, 0.38);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -4px 18px rgba(126, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 140%);
  -webkit-transform: translate(-50%, 140%);
  transition: opacity .2s ease, transform .2s ease;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  width: auto;
  min-width: 430px;
  max-width: calc(100% - 24px);
}

.welcome-page .welcome-sticky-cta-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}

.welcome-page .welcome-sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 18px;
  padding: 8px 16px;
}

.welcome-page .welcome-sticky-cta-title {
  color: #6f2d1f;
  font-size: 17px;
  font-weight: bold;
  line-height: 22px;
  white-space: nowrap;
}

.welcome-page a.welcome-sticky-cta-button {
  font-size: 16px;
  line-height: 20px;
  margin-top: 0;
  min-height: 40px;
  padding: 8px 18px 9px;
  white-space: nowrap;
}

.welcome-page a.welcome-sticky-cta-button .cta-gift-icon {
  font-size: 20px;
}

.welcome-page a.welcome-primary-cta {
  background: #ffd9bd;
  border: 1px solid #e49a70;
  border-radius: 5px;
  box-shadow: 0 3px 0 #c9835c, 0 8px 14px rgba(126, 0, 0, 0.14);
  color: #6f2d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: bold;
  line-height: 24px;
  margin-top: 0;
  min-height: 48px;
  padding: 12px 24px 13px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
  -webkit-transition: background .18s ease, box-shadow .18s ease, -webkit-transform .18s ease;
}

.welcome-page a.welcome-primary-cta span {
  display: none;
}

.welcome-page a.welcome-primary-cta:hover,
.welcome-page a.welcome-primary-cta:focus {
  background: #ffc99f;
  color: #5c2419;
  box-shadow: 0 2px 0 #b77751, 0 6px 12px rgba(126, 0, 0, 0.16);
  transform: translateY(1px);
  -webkit-transform: translateY(1px);
}

.welcome-page a.welcome-primary-cta:active {
  box-shadow: 0 1px 0 #b77751, 0 3px 8px rgba(126, 0, 0, 0.14);
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
}

.welcome-page .cta-gift-icon {
  display: inline-block;
  font-size: 24px;
  margin-right: 4px;
  transform-origin: 50% 80%;
  -webkit-transform-origin: 50% 80%;
  animation: ctaGiftWiggle 1.8s ease-in-out infinite;
  -webkit-animation: ctaGiftWiggle 1.8s ease-in-out infinite;
}

@keyframes ctaGiftWiggle {
  0%,
  50%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  58% {
    transform: rotate(-10deg) scale(1.12);
  }

  66% {
    transform: rotate(8deg) scale(1.12);
  }

  76% {
    transform: rotate(-6deg) scale(1.08);
  }

  88% {
    transform: rotate(4deg) scale(1.04);
  }
}

@-webkit-keyframes ctaGiftWiggle {
  0%,
  50%,
  100% {
    -webkit-transform: rotate(0deg) scale(1);
  }

  58% {
    -webkit-transform: rotate(-10deg) scale(1.12);
  }

  66% {
    -webkit-transform: rotate(8deg) scale(1.12);
  }

  76% {
    -webkit-transform: rotate(-6deg) scale(1.08);
  }

  88% {
    -webkit-transform: rotate(4deg) scale(1.04);
  }
}

@media (max-width: 767px) {
  .welcome-page .date-text h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .welcome-page .date-text h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .welcome-page .welcome-sticky-cta-content {
    min-height: 52px;
    padding: 7px;
  }

  .welcome-page .welcome-sticky-cta-title {
    display: none;
  }

  .welcome-page a.welcome-sticky-cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .welcome-page .date .date-text h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .welcome-page .date .date-text h2 {
    font-size: 30px;
    line-height: 36px;
  }
}


.page-spinner-bar>div,
.block-spinner-bar>div {
  background: #FB935A;
}

.page-spinner-bar {
  position: fixed;
  z-index: 10051;
  width: 100px;
  top: 40%;
  left: 50%;
  margin-left: -55px;
  text-align: center;
}

.page-spinner-bar>div {
  margin: 0 5px;
  width: 18px;
  height: 18px;
  background: #FB935A;
  border-radius: 100% !important;
  display: inline-block;
  -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
  animation: bounceDelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.page-spinner-bar .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.page-spinner-bar .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.block-spinner-bar {
  display: inline-block;
  width: 80px;
  text-align: center;
}

.block-spinner-bar>div {
  margin: 0 2px;
  width: 15px;
  height: 15px;
  background: #eee;
  border-radius: 100% !important;
  display: inline-block;
  -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
  animation: bounceDelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.block-spinner-bar .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.block-spinner-bar .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

// Fade-in
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(15px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(15px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

[ui-view].fade-in-up {
  -webkit-animation: fadeInUp 1s;
  animation: fadeInUp 1s;
}

.h3 {
  font-size: 28px;
  color: #7e0000;
  line-height: 38px;
}


.item-wrapper a {
  display: inline !important;
}

.item-wrapper {
  //display: inline;
  position: relative;
}

.item-wrapper form {
  position: absolute;
  top: -65px;
  background: #FFF;
  border: 1px solid #AAA;
  border-radius: 5px;
  padding: 7px;
  width: 350px;
  display: inline-block;
  left: 50%;
  margin-left: -180px;
  z-index: 101;
}

.item-wrapper form:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #AAA;
  position: absolute;
  bottom: -10px;
  left: 170px;
}

.item-wrapper form:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFF;
  position: absolute;
  bottom: -9px;
  left: 171px;
}

.wrapper-url {
  margin-top: -25px;
}

.tour-step2 {
  font-size: 2px;
  margin-top: -25px;
}

@media (max-width: 991px) {

  .wrapper-url,
  .tour-step2 {
    margin-top: 25px;
  }

  .tour-step2 {
    margin-top: -18px;
  }
}

.item-wrapper-url a {
  display: inline !important;
}

.item-wrapper-url {
  //display: inline;
  //position: relative;
}

.mobile-wrapper-url {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 10px;
  gap: 4px;
}

.mobile-url-content {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.item-wrapper-url .mobile-url-pill {
  display: block !important;
}

.mobile-url-pill {
  width: 100%;
  min-width: 0;
  padding: 8px 12px 11px;
  color: #333333;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #c9c9c9 #f1f1f1;
  scrollbar-width: thin;
}

.mobile-url-pill::-webkit-scrollbar {
  height: 4px;
}

.mobile-url-pill::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.mobile-url-pill::-webkit-scrollbar-thumb {
  background: #c9c9c9;
  border-radius: 4px;
}

.mobile-url-pill strong {
  display: inline-block;
  white-space: nowrap;
}

.mobile-url-pill span {
  color: #777777;
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
}

.mobile-url-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 43px;
  width: 43px;
  min-height: 43px;
  margin-top: 0;
  margin-left: 0;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.mobile-url-edit a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .mobile-wrapper-url {
    max-width: 520px;
  }
}

.item-wrapper-url form {
  position: absolute;
  top: 40px;
  background: #FFF;
  border: 1px solid #AAA;
  border-radius: 5px;
  padding: 7px;
  width: 350px;
  display: inline-block;
  left: 50%;
  margin-left: -180px;
  z-index: 101;
}

.item-wrapper-url form:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #AAA;
  position: absolute;
  bottom: -10px;
  left: 170px;
}

.item-wrapper-url form:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFF;
  position: absolute;
  bottom: -9px;
  left: 171px;
}

.item-wrapper-title form {
  top: auto;
  bottom: 100%;
  margin-bottom: 10px;
}

.item-wrapper-title form:before {
  top: auto;
  bottom: -10px;
  border-bottom: 0;
  border-top: 10px solid #AAA;
}

.item-wrapper-title form:after {
  top: auto;
  bottom: -9px;
  border-bottom: 0;
  border-top: 9px solid #FFF;
}

.editable-textarea .editable-controls textarea {
  display: block;
  width: 100% !important;
}

/* Força os botões para baixo */
.editable-textarea .editable-buttons {
  display: block;
  margin-top: 8px;
  text-align: center;
}

/* Remove comportamento inline do wrapper */
.editable-textarea .editable-controls {
  display: block;
}


.item-wrapper-textarea {
  //display: inline;
  position: relative;
}

.item-wrapper-textarea form {
  position: absolute;
  top: auto;
  bottom: 100%;
  margin-bottom: -10px;

  background: #fff;
  border: 1px solid #aaa;
  border-radius: 6px;
  padding: 10px;

  width: 350px;
  max-width: 90vw;
  min-width: 280px;

  left: 50%;
  transform: translateX(-50%);

  z-index: 101;
}

.item-wrapper-textarea form:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #AAA;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
}

.item-wrapper-textarea form:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFF;
  position: absolute;
  bottom: -9px;
  left: 50%;
  margin-left: -9px;
}

.item-wrapper-time {
  //display: inline;
  //position: relative;
}

.item-wrapper-time form {
  position: absolute;
  top: -60px;
  background: #FFF;
  border: 1px solid #AAA;
  border-radius: 5px;
  padding: 7px;
  width: 250px;
  display: inline-block;
  left: 50%;
  margin-left: -122px;
  z-index: 101;
}

.item-wrapper-time form:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #AAA;
  position: absolute;
  bottom: -10px;
  left: 122px;
}

.item-wrapper-time form:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFF;
  position: absolute;
  bottom: -9px;
  left: 123px;
}

.customize-controller .date-text .dropdown-menu {
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, 10px);
  text-align: left;
}

.editable-input {
  width: 214px !important;
  font-size: 18px;
  padding-left: 3px;
  padding-right: 3px;
}



select.editable-input {
  width: 114px;
}


.icon-edit-inline {
  font-size: 12px;
}

.a-edit-inline {
  color: #428bca !important;
  text-decoration: none !important;
}

.editable-click,
a.editable-click {
  border-bottom: 0px !important;
}

.image-container {
  padding: 10px;
  background: url(../images/background-yellow-repeatable.png) repeat;
  display: inline-block;
  -webkit-transition: background linear .2s;
  -moz-transition: background linear .2s;
  -o-transition: background linear .2s;
}

.image-container:hover {
  background: url(../images/background-orange-repeatable.png) repeat;
}

.image-container img {
  display: block;
}

.nav-justified {
  margin-top: 0px !important;
}

.btn {
  white-space: normal;
}

.button-main {
  display: inline-block;
  padding: 8px 20px;
  background: url(../images/background-orange-repeatable.png) repeat;
  color: #333333;
  text-decoration: none;
  position: relative;
  margin-top: 10px;
  -webkit-transition: background linear .2s;
  -moz-transition: background linear .2s;
  -o-transition: background linear .2s;
  border: 0px;
}

.button-main span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url(../images/background-orange-repeatable.png) repeat;
  -webkit-transition: background linear .2s;
  -moz-transition: background linear .2s;
  -o-transition: background linear .2s;
}

.button-main:hover {
  text-decoration: none;
  color: #333333;
  background: url(../images/background-red-repeatable.png) repeat;
}

.button-main:hover span {
  background: url(../images/background-red-repeatable.png) repeat;
}

.presente_indisponivel {
  background-color: #F1F1F1;
}

.presente_disponivel {}

.presente_escolhido {
  background-color: rgb(246, 252, 255);
}

.gift-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 8px;
}

.gift-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gift-filter-buttons .btn,
.gift-action-button,
.gift-list-action-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
}

.gift-list-action-button {
  font-size: 14px;
}

.gift-list-add-button {
  font-size: 15px;
}

.gift-filter-button-active,
.gift-filter-button-active:focus,
.gift-filter-button-active:hover {
  background-color: #dddddd;
  border-color: #cccccc;
  color: #333333;
  font-weight: bold;
  box-shadow: none;
}

.gift-action-button i,
.gift-list-action-button i {
  margin-right: 4px;
}

.gift-list-grid {
  transition: opacity .5s ease;
}

.gift-list-grid-loading {
  opacity: .55;
}

.gift-status-label {
  line-height: 14px;
  max-width: calc(100% - 8px);
  overflow-wrap: normal;
  text-align: left;
  white-space: normal;
}

@media only screen and (max-width: 480px) {

  .date .container,
  .ceremony .container {
    width: calc(100% - 30px) !important;
  }

  .gift-filter-buttons {
    gap: 5px;
  }

  .gift-filter-buttons .btn {
    flex: 1 1 calc(50% - 5px);
    min-height: 34px;
  }

  .gift-filter-buttons-three .btn:first-child {
    flex-basis: 100%;
  }

  .gift-action-button {
    font-size: 11px;
    flex: 1 1 100%;
    max-width: 100%;
    padding-left: 7px;
    padding-right: 7px;
  }

  .gift-list-action-button {
    flex: 1 1 100%;
    font-size: 14px;
    min-height: 42px;
  }

  .gift-list-add-button {
    font-size: 15px;
  }
}

.modal {
  z-index: 10500;
}

/* CUSTOMIZE CONTROLLER */

.customize-controller div.upload-actions > .btn {
  display: inline-block;
  margin: 6px 3px 0 !important;
}

.customize-controller div.upload-actions {
  margin-top: -6px !important;
}

.customize-controller .guest-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.customize-controller .guest-summary-item {
  flex: 1 1 150px;
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #ffffff;
  text-align: center;
}

.customize-controller .guest-summary-number {
  display: block;
  color: #333333;
  font-size: 30px;
  font-weight: bold;
  line-height: 34px;
}

.customize-controller .guest-summary-label {
  display: block;
  margin-top: 4px;
  color: #666666;
  font-size: 13px;
  font-weight: bold;
  line-height: 16px;
  text-transform: uppercase;
}

.customize-controller .guest-summary-message {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  color: #555555;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

.customize-controller .guest-summary-total {
  border-top: 4px solid #5bc0de;
}

.customize-controller .guest-summary-confirmed {
  border-top: 4px solid #5cb85c;
}

.customize-controller .guest-summary-pending {
  border-top: 4px solid #d9534f;
}

.customize-controller .guest-summary-note {
  margin-top: 10px;
  color: #555555;
  line-height: 22px;
}

.customize-controller .guests-scroll-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-height: 430px;
  overflow-y: auto;
  overflow-x: hidden;
}

.customize-controller .guests-scroll-list:before,
.customize-controller .guests-scroll-list:after {
  display: none;
}

.customize-controller .guests-scroll-list .guest-card-column {
  display: flex;
  float: none;
  margin-bottom: 20px;
}

.customize-controller .guests-scroll-list .guest-card {
  display: flex;
  width: 100%;
  min-height: 170px;
}

.customize-controller .guests-scroll-list .guest-card .caption {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.customize-controller .guests-scroll-list .guest-card .caption > p.text-center {
  margin-top: auto;
}

@media only screen and (max-width: 768px) {
  .customize-controller .guest-summary {
    gap: 8px;
  }

  .customize-controller .guest-summary-item {
    flex-basis: 100%;
    min-height: 64px;
    padding: 10px 12px;
  }

  .customize-controller .guest-summary-confirmed,
  .customize-controller .guest-summary-pending {
    flex: 1 1 calc(50% - 4px);
  }

  .customize-controller .guest-summary-number {
    font-size: 26px;
    line-height: 30px;
  }

  .customize-controller .guests-scroll-list {
    max-height: 360px;
  }

  .customize-controller .guests-scroll-list .guest-card-column {
    width: 100%;
    margin-bottom: 10px;
  }

  .customize-controller .guests-scroll-list .guest-card {
    min-height: auto;
  }
}

.customize-controller #donation-message .actions-message {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .customize-controller #donation-message .actions-message {
    display: block;
    margin-bottom: 10px;
  }
}

.customize-controller #ads-message .actions-message {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .customize-controller #ads-message .actions-message {
    display: block;
    margin-bottom: 10px;
  }
}

.customize-controller .navbar-fixed-bottom {
  padding: 15px 0;
}

.customize-controller .navbar-fixed-bottom>.container {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.customize-controller .footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.customize-controller .navbar-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  margin: 0 10px 0 0;
  text-align: right;
}

.customize-controller .btn-group-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.customize-controller .btn-group-footer .btn {
  font-size: 15px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 6px !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.customize-controller .admin-menu-v2 .footer-flex {
  gap: 10px;
}

.customize-controller .admin-menu-v2-text {
  margin-right: 0;
  margin-bottom: 0;
}

.customize-controller .admin-menu-v2-actions .btn i {
  margin-top: 0;
}

.customize-controller .admin-menu-v2-actions .admin-menu-v2-icon {
  width: 44px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.customize-controller .admin-menu-v2-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 4px;
  color: #222222;
  background: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  line-height: 22px;
  vertical-align: middle;
}

.customize-controller .share-list-modal .modal-title {
  font-weight: bold;
}

.customize-controller .share-list-modal .modal-body {
  padding: 25px 25px 15px;
}

.customize-controller .share-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  color: #ffffff;
  background: #5cb85c;
  border-radius: 50%;
  font-size: 25px;
}

.customize-controller .share-list-lead {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

.customize-controller .share-list-text {
  margin-bottom: 15px;
  color: #555555;
  font-size: 15px;
  line-height: 22px;
}

.customize-controller .share-list-url {
  padding: 10px;
  color: #333333;
  background: #f7f7f7;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-size: 13px;
  line-height: 18px;
  word-break: break-all;
}

.customize-controller .share-list-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
}

.customize-controller .share-list-actions:before,
.customize-controller .share-list-actions:after {
  display: none;
}

.customize-controller .share-list-actions .btn {
  font-weight: 600;
}

@media (max-width: 767px) {
  .customize-controller .footer-flex {
    flex-direction: column;
    text-align: center;
  }

  .customize-controller .navbar-text {
    margin: 0;
    margin-bottom: -5px;
    text-align: center;
  }

  .customize-controller .btn-group-footer {
    flex-wrap: nowrap;
  }

  .customize-controller .btn-group-footer .btn {
    flex: 1;
    font-size: 14px;
    padding: 9px 12px;
  }

  .customize-controller .admin-menu-v2 {
    padding: 10px 0;
  }

  .customize-controller .admin-menu-v2-text {
    line-height: 18px;
  }

  .customize-controller .admin-menu-v2-actions {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 6px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .customize-controller .admin-menu-v2-actions .btn {
    min-width: 0;
    width: auto;
    padding: 8px 6px;
    font-size: 13px;
    flex: 0 1 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
  }

  .customize-controller .admin-menu-v2-actions .admin-menu-v2-icon {
    flex: 0 0 44px;
    width: 44px;
    padding-left: 0;
    padding-right: 0;
    gap: 0;
  }

  .customize-controller .admin-menu-v2-actions .admin-menu-v2-icon i {
    width: 100%;
    text-align: center;
  }

  .customize-controller .share-list-actions {
    display: block;
  }

  .customize-controller .share-list-actions .btn {
    display: block;
    width: 100%;
    margin: 0 0 8px;
  }
}

/* EXIT CUSTOMIZE CONTROLLER */

/* VIEW CONTROLLER */
.view-controller .navbar-fixed-bottom {
  padding: 15px 0;
}

.view-controller .admin-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}

.view-controller .admin-bar .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 5px;
  white-space: nowrap;
}

.view-controller .admin-text {
  margin: 0;
  color: #eee;
  font-size: 15px;
  line-height: 18px;
}

.view-controller .admin-text strong {
  color: #fff;
}

@media (min-width: 768px) {
  .view-controller .admin-bar {
    justify-content: center;
    gap: 15px;
  }

  .view-controller .admin-text {
    text-align: left;
    font-size: 15px;
    line-height: 20px;
  }
}

.view-controller .navbar-fixed-bottom>.container {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.view-controller .footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.view-controller .navbar-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  margin: 0 10px 0 0;
  text-align: right;
}

.view-controller .btn-group-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.view-controller .btn-group-footer .btn {
  font-size: 15px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 6px !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact {
  text-align: center;
  margin-top: -40px;
}

.contact form input[type="submit"] {
    float: none !important;
    margin: 0 auto;
    display: block;
    text-align: center;
    width: 260px;
  }

h1 {
  line-height: 61px;
}

h2 {
    line-height: 35px;
}

.date h1 {
    font-weight: bold;
    padding: 10px 10px 0;
}

.date h3 {
        font-weight: bold;
}

.dropdown-menu table,
.dropdown-menu th,
.dropdown-menu td {
    line-height: normal;
}

@media (max-width: 767px) {

  .view-controller .about {
    padding-top: 80px;
  }

  .customize-controller .about > .container > .row {
    display: flex;
    flex-direction: column;
  }

  .customize-controller .customize-about-description {
    order: 1;
    margin-bottom: 30px !important;
  }

  .customize-controller .customize-about-bride {
    order: 2;
  }

  .customize-controller .customize-about-groom {
    order: 3;
  }

  .customize-controller .customize-about-description .item-wrapper-textarea p {
    line-height: 26px;
    font-size: 20px;
    white-space: pre-line;
    word-wrap: break-word;
    padding-bottom: 10px;
    margin-top: 0 !important;
  }

  .about .about-icon {
    padding: 20px 0 35px !important;
  }

  .about p {
    padding-bottom: 10px;
  }

  .view-controller .date h2,
  .customize-controller .date h2 {
    font-size: 22px !important;
    line-height: 28px !important;
  }

  .view-controller .date h3,
  .customize-controller .date h3 {
    font-size: 26px !important;
    line-height: 30px !important;
    font-weight: bold;
  }

  .view-controller .date h1,
   .customize-controller .date h1 {
    font-size: 31px !important;
    line-height: 34px !important;
    font-weight: bold;
    padding: 10px 5px 0;
  }

  .contact {
    margin-top: -40px;
  }

  .contact .heart {
    margin-top: -100px;
  }

  .contact form input[type="submit"] {
    float: none;
    margin: 0 auto;
    display: block;
    text-align: center;
    width: 260px;
  }

  .view-controller .footer-flex {
    flex-direction: column;
    text-align: center;
  }

  .view-controller .navbar-text {
    margin: 0 0 5px;
    text-align: center;
  }

  .view-controller .btn-group-footer {
    flex-wrap: nowrap;
  }

  .view-controller .btn-group-footer .btn {
    flex: 1;
    font-size: 14px;
    padding: 9px 12px;
  }

}

/* END VIEW CONTROLLER */
