.load-cont.show {
  display: flex !important;
}

.load-cont {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.768627451);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}

@keyframes rotateBall {
  0% {
    transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
  }
  50% {
    transform: rotateY(360deg) rotateX(360deg) rotateZ(0deg);
  }
  100% {
    transform: rotateY(720deg) rotateX(720deg) rotateZ(360deg);
  }
}
@keyframes bounceBall {
  0% {
    transform: translateY(-70px) scale(1, 1);
  }
  15% {
    transform: translateY(-56px) scale(1, 1);
  }
  45% {
    transform: translateY(70px) scale(1, 1);
  }
  50% {
    transform: translateY(73.5px) scale(1, 0.92);
  }
  55% {
    transform: translateY(70px) scale(1, 0.95);
  }
  85% {
    transform: translateY(-56px) scale(1, 1);
  }
  95% {
    transform: translateY(-70px) scale(1, 1);
  }
  100% {
    transform: translateY(-70px) scale(1, 1);
  }
}
.ball {
  animation-name: bounceBall;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  border-radius: 50%;
  height: 60px;
  position: relative;
  transform: translateY(-70px);
  transform-style: preserve-3d;
  width: 60px;
  z-index: 1;
}
.ball::before {
  background: radial-gradient(circle at 36px 20px, #FF8C16, #7c3f00);
  border: 2px solid #333333;
  border-radius: 50%;
  content: "";
  height: calc(100% + 6px);
  left: -3px;
  position: absolute;
  top: -3px;
  transform: translateZ(1vmin);
  width: calc(100% + 6px);
}
.ball .inner {
  animation-name: rotateBall;
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  border-radius: 50%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  width: 100%;
}
.ball .line::before, .ball .line::after {
  border: 2px solid #333333;
  border-radius: 50%;
  content: "";
  height: 99%;
  position: absolute;
  width: 99%;
}
.ball .line:before {
  transform: rotate3d(0, 0, 0, 0);
}
.ball .line:after {
  transform: rotate3d(1, 0, 0, 90deg);
}
.ball .line--two:before {
  transform: rotate3d(0, 0, 0, 2deg);
}
.ball .line--two:after {
  transform: rotate3d(1, 0, 0, 88eg);
}
.ball .oval::before, .ball .oval::after {
  border-top: 4px solid #333333;
  border-radius: 50%;
  content: "";
  height: 99%;
  position: absolute;
  width: 99%;
}
.ball .oval:before {
  transform: rotate3d(1, 0, 0, 45deg) translate3d(0, 0, 6px);
}
.ball .oval:after {
  transform: rotate3d(1, 0, 0, -45deg) translate3d(0, 0, -6px);
}
.ball .oval--two:before {
  transform: rotate3d(1, 0, 0, 135deg) translate3d(0, 0, -6px);
}
.ball .oval--two:after {
  transform: rotate3d(1, 0, 0, -135deg) translate3d(0, 0, 6px);
}

@keyframes bounceShadow {
  0% {
    filter: blur(3px);
    opacity: 0.6;
    transform: translateY(73px) scale(0.5, 0.5);
  }
  45% {
    filter: blur(1px);
    opacity: 0.9;
    transform: translateY(73px) scale(1, 1);
  }
  55% {
    filter: blur(1px);
    opacity: 0.9;
    transform: translateY(73px) scale(1, 1);
  }
  100% {
    filter: blur(3px);
    opacity: 0.6;
    transform: translateY(73px) scale(0.5, 0.5);
  }
}
.shadowball {
  animation-name: bounceShadow;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  background: black;
  filter: blur(2px);
  border-radius: 50%;
  height: 6px;
  transform: translateY(73px);
  width: 54px;
}

.bimo-sosmed,
.bimo-order-sosmed {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.bimo-sosmed a,
.bimo-order-sosmed a {
  font-size: 18px;
}

.bimo-order-sosmed {
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
.bimo-order-sosmed input {
  padding: 7px;
  flex: 1;
  width: 0;
}

.watercolor5 .bimo-sosmed a {
  color: #b3827d;
}
.watercolor5 .bimo-sosmed a:hover {
  color: #704b47;
}

.bimo-rsvp .form-group {
  margin-bottom: unset;
}
.bimo-rsvp .attendances {
  gap: 10px;
}
.bimo-rsvp .attendances .items {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bimo-rsvp .attendances .items label {
  font-size: 15px;
  margin-bottom: unset;
}

.bimo-floating-share {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
}
.bimo-floating-share .toggle-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.bimo-floating-share .toggle-button:hover {
  transform: scale(1.1);
}
.bimo-floating-share .share-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.bimo-floating-share .share-menu .share-button {
  width: 40px;
  height: 40px;
  margin-top: 10px;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s;
}
.bimo-floating-share .share-menu .share-button:hover {
  transform: translateY(-4px);
}
.bimo-floating-share .share-menu .share-button.whatsapp {
  background: linear-gradient(135deg, #25D366, #25D366);
}
.bimo-floating-share .share-menu .share-button.facebook {
  background: linear-gradient(135deg, #4bbdff, #4bbdff);
}
.bimo-floating-share .share-menu .share-button.instagram {
  background: linear-gradient(135deg, #db3861, #da235a);
}
.bimo-floating-share .share-menu .share-button.telegram {
  background: linear-gradient(135deg, #2d72cc, #2d72cc);
}
.bimo-floating-share .share-menu.active {
  display: flex;
}

.bimo-dresscode h5 {
  font-size: 18px;
}
.bimo-dresscode p {
  font-size: 16px;
}
.bimo-dresscode h5, .bimo-dresscode p {
  margin: unset;
  padding: unset;
}

.slider-1 {
  background: whitesmoke;
}

.sw-theme {
  border: 2px solid #3a6ca0;
}

.btnbimo {
  background: rgb(230, 118, 27) !important;
  border-color: rgb(230, 118, 27) !important;
}

.background-cover {
  height: 500px;
  position: relative;
  width: 1170px;
  margin: auto;
}
.background-cover img {
  width: 200px;
  position: absolute;
  right: 20px;
  top: 40px;
}
.background-cover img:nth-child(2) {
  right: 150px;
}
.background-cover img:nth-child(3) {
  right: 300px;
}

.bimo-undangan-cover {
  width: 100%;
  width: 600px;
  margin-top: -30px;
}

@media screen and (max-width: 1200px) {
  .background-cover {
    width: 970px;
  }
  .background-cover img {
    width: 165px;
    top: 80px;
  }
  .background-cover img:nth-child(2) {
    right: 115px;
  }
  .background-cover img:nth-child(3) {
    right: 230px;
  }
  .bimo-undangan-cover {
    width: 500px;
  }
}
@media screen and (max-width: 991px) {
  .background-cover {
    width: 750px;
    height: 400px;
  }
  .background-cover img {
    width: 140px;
    top: 50px;
  }
  .background-cover img:nth-child(2) {
    right: 90px;
    z-index: 2;
  }
  .background-cover img:nth-child(3) {
    right: 180px;
  }
  .bimo-undangan-cover {
    margin-top: 0;
    width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .bimo-order-sosmed {
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .bimo-order-sosmed input {
    padding: 7px;
    flex: 1;
    width: 100%;
  }
  .bimo-undangan-cover {
    top: 240px;
    width: 90%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
  .slider-1 .content-slider {
    margin-left: unset;
    margin: unset;
  }
  .slider-1 .container {
    padding: unset;
  }
  .background-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 580px;
    width: 100%;
  }
  .background-cover img {
    position: relative;
    left: 0;
    right: 0;
    top: -110px;
  }
}
@media screen and (max-width: 515px) {
  .background-cover {
    height: 650px;
  }
  .background-cover img:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .background-cover img {
    top: -140px;
  }
  .background-cover img:nth-child(2) {
    display: none;
  }
  .bimo-undangan-cover {
    top: 225px;
  }
}
@media screen and (max-width: 300px) {
  .background-cover {
    height: 670px;
  }
  .background-cover img {
    top: -160px;
  }
  .background-cover img:nth-child(3) {
    display: none;
  }
  .bimo-undangan-cover {
    top: 200px;
  }
}
.mainbag .mainview {
  height: auto !important;
}

.mainbag .mainview.sw-invitation-wrapper {
  height: 100vh !important;
}/*# sourceMappingURL=bimo.css.map */