/*============================================
==> Animation CSS
============================================*/
@keyframes onplay {
    0% {
        background-color: #F6A276;
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
    }

    100% {
        background-color: #FFFFFF;
        color: #F6A276;
        border: 1px solid #F6A276;
    }
}

@-webkit-keyframe onplay {
    0% {
        background-color: #F6A276;
        color: #BDBDBD;
        border: 1px solid #BDBDBD;
    }

    100% {
        background-color: #BDBDBD;
        color: #F6A276;
        border: 1px solid #F6A276;
    }
}

@keyframes swing1 {
    0% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

@-webkit-keyframe swing1 {
    0% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}


/*============================================
==> Preloader CSS
============================================*/
.js-preloader {
    z-index: 9999999;
}

.js-preloader .preloader-inner .dot {
    background: #468ACB;
}

.js-preloader .preloader-inner .dots span {
    background: #468ACB;
}

/*============================================
==> jsCalendar CSS
============================================*/
.jsCalendar table {
    font-family: NeueKabel;
    font-weight: 600;
    width: 100%;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
}

.jsCalendar table thead .jsCalendar-week-days th,
.jsCalendar table tbody td {
    font-size: 15px !important;
}

.jsCalendar table thead {
    padding: 10px 4px;
    margin: 0px;
    border-radius: 0px 0px 20px 20px
}

.jsCalendar table thead tr {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.jsCalendar table thead .jsCalendar-title {
    width: 100%;
}

.jsCalendar table thead .jsCalendar-nav-left,
.jsCalendar table thead .jsCalendar-nav-right {
    font-size: 22px;
    height: auto;
    width: auto;
    padding: 10px;
}

.jsCalendar thead .jsCalendar-nav-left:hover,
.jsCalendar thead .jsCalendar-nav-right:hover {
    background-color: #468ACB;
}

.jsCalendar thead .jsCalendar-title {
    height: auto;
}

.jsCalendar thead .jsCalendar-title-name {
    padding: 10px 20px;
}

.jsCalendartable tbody tbody {
    padding: 15px 0px;
    margin: 0;
}

.jsCalendar table tbody tr {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.jsCalendar table tbody td.jsCalendar-current {
    background-color: #468ACB;
    border-radius: 8px;
    color: #FFFFFF;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


/*============================================
==> Sweetalert CSS
============================================*/

.swal2-container {
    z-index: 99999999 !important;
}

/*============================================
==> Flipdown CSS
============================================*/
.flipdown {
    width: max-content;
    display: flex;
    justify-content: center;
    zoom: 0.6;
}

/*============================================
==> Font CSS
============================================*/

@font-face {
    font-family: NeueKabel;
    src: url("../../../assets/fonts/NeueKabel/NeueKabel.otf");
}

@font-face {
    font-family: Sacramento;
    src: url("../../../assets/fonts/Sacramento/Sacramento-Regular.ttf");
}

@font-face {
    font-family: SpaceMono;
    src: url("../../../assets/fonts/SpaceMono/SpaceMono-Regular.ttf");
}

@font-face {
    font-family: Caveat;
    src: url("../../../assets/fonts/Caveat/Caveat-Bold.ttf");
}

/*============================================
==> General CSS
============================================*/
html {
    overflow-x: hidden;
    overflow-y: overlay;
    scroll-behavior: unset !important;
}

body {
    position: relative;
    overflow-x: hidden;
    overflow-y: overlay;
    max-width: 480px;
    width: 100%;
    margin: auto;
    font-family: NeueKabel;
    color: #468ACB;
    letter-spacing: 0.5px;
    background-color: #468ACB;
    background-size: cover;
    background-position: center;
    
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

p {
    color: #522619;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

label {
    color: #468ACB;
    font-weight: 800;
    margin-bottom: 0.1em;
}

hr {
    height: 1.5px;
    background: #468ACB;
}

::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
    position: absolute;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #FFFFFF;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #468ACB;
}

.btn-main {
    background-color: #F6A276;
    font-size: 14px;
    color: #FFFFFF;
    border: 1px solid #F6A276;
}

.btn-main:hover {
    background-color: #FFFFFF;
    border: 1px solid #F6A276;
    color: #F6A276 !important;
}

.btn-open {
    width: 200px;
    max-width: 85%;
    font-size: 14px;
    margin: 0em 1em;
    padding: 1em;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 4px 1px;
}

.text-sm {
    font-size: 12px;
}

.text-main {
    color: #522619;
}

.text-parent {
    font-size: 24px;
    font-weight: 800;
    color: #468ACB;
}

.text-bride {
    font-family: Sacramento;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #468ACB !important;
}

.text-amp {
    font-family: ui-monospace !important;
}

.text-hashtag {
    color: #468ACB;
    margin: 1em 0em;
}

.form-group {
    margin-bottom: 1em;
}

.form-control {
    border: 1px solid #468ACB;
}

.img-logo {
    max-width: 180px;
}

.social-media {
    display: flex;
    justify-content: center;
    padding: 1em;
    margin: 1em;
}

.social-media li {
    margin: 0px
}

.social-media a {
    display: inline-flex;
    background: #468ACB;
    color: #FFFFFF;
    padding: 0.75em 0.8em;
    margin: 0em 0.25em;
    border-radius: 4px;
}

.table-program {
    width: 100%;
    margin-bottom: 1em;
}

.table-program tr td:nth-child(1) {
    font-family: SpaceMono;
    color: #468ACB;
    font-weight: 600;
    white-space: nowrap;
}

.table-program tr td:nth-child(2) {
    text-align: left;
    color: #522619;
    font-weight: 600;
    padding-left: 1em;
    padding: 0.25em 0em 0.25em 1em;
}

.card-qr {
    background-color: #F6E7EC;
    border: 1px solid #468ACB;
    border-radius: 4px;
    overflow: hidden;
}

.card-qr .title {
    background-color: #468ACB;
    color: #FFFFFF;
    padding: 1em;
}

.card-qr .title h4 {
    color: #FFFFFF !important;
}

.card-qr .content {
    padding: 1em;
}

.card-qr .image-qr {
    margin-right: 1.5em;
}

.card-qr .btn-download {
    font-size: 26px;
    padding: 0.5em 0.75em;
}

.card-qr .btn-copy {
    font-size: 22px;
    padding: 0.5em 0.75em;
}

.card-qr label {
    color: #468ACB;
    font-weight: 600;
}

.card-qr p {
    color: #522619;
    margin-bottom: 0px;
}

.card-prayer {
    border: 1px solid #468ACB;
    padding: 1em;
    margin-bottom: 1em;
}

.card-prayer p {
    margin-bottom: 0px;
    white-space: pre-line;
}

.card-divider {
    display: block;
    border: 1px solid #468ACB;
    margin: 2em 0em;
}

.list-contact {
    padding: 0em 0.25em;
}

.list-contact li {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    padding: 0.5em 0em;
}

.list-contact li label {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #FFFFFF;
}

.list-contact li label i {
    font-size: 24px;
}

.list-contact li a {
    background: #468ACB;
    color: #FFFFFF;
    border: 1px solid #468ACB;
    border-radius: 50%;
    padding: 0.3em 0.5em;
    margin-left: 0.5em;
}

.list-contact li a span.fa-phone {
    font-size: 18px;
    padding-top: 2px;
}

.list-contact li a span.fa-whatsapp {
    font-size: 20px;
    /* color: #2AB318; */
}

.input-counter {
    display: flex;
    margin: 0.5em 0em;
}

.input-counter input {
    text-align: center;
}

.input-counter button:nth-child(1),
.input-counter button:nth-child(3) {
    background: #468ACB;
    color: #FFFFFF;
    border: 1px solid #468ACB;
    border-radius: 4px;
    margin: 0em 0.25em;
}

.slider-gallery-main {
    width: 100%;
}

.slider-gallery-main .image {
    height: 275px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 4px 2px;
}

.slider-gallery-main .owl-stage-outer {
    overflow: unset !important;
}

.slider-gallery-sub {
    width: 100%;
}

.slider-gallery-sub .image {
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    margin-top: 10px;
    transition: 0.5s;
}

.slider-gallery-sub .center .image {
    margin-top: 0px;
    transition: 0.5s;
}

.slider-gallery-sub .center .image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 4px 2px;
}

.slider-gallery-sub .owl-stage-outer {
    overflow: unset !important;
}

.slider-guestbook .owl-dot {
    background-color: #FFFFFF !important;
    height: 10px;
    width: 10px;
    margin: 0px 5px;
    border-radius: 4px;
    opacity: 0.75;
}

.slider-guestbook .owl-dot.active {
    background-color: #468ACB !important;
}

.slider-guestbook .text {
    font-family: Caveat;
    font-size: 20px;
}

/*============================================
==> Section CSS
============================================*/

.main-page {
    position: fixed;
    left: 50%;
    top: 0px;
    z-index: 99999;
    max-width: 480px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    color: #522619;
    text-align: center;
    overflow: hidden;
    transform: translateX(-50%);
}

.main-page .main-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("bg1.webp");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.main-page .main-particle {
    position: absolute;
    height: 100%;
    width: 100%;
}

.main-page .main-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-page .main-center-1,
.main-page .main-center-2,
.main-page .main-center-3,
.main-page .main-center-4,
.main-page .main-center-5,
.main-page .main-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-page .main-center-1 .el {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 60%;
    height: 26%;
    background-image: url(el1.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.main-page .main-center-2 .el {
    position: absolute;
    bottom: 8%;
    right: 15%;
    width: 60%;
    height: 29%;
    background-image: url(el2.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: center;
    animation: swing1 1.5s ease-in-out 0.0s infinite alternate;
    -webkit-animation: swing1 1.5s ease-in-out 0.0s infinite alternate;
}

.main-page .main-center-3 .el {
    position: absolute;
    bottom: 24%;
    right: 0%;
    width: 60%;
    height: 39%;
    background-image: url(el3.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: center bottom;
    animation: swing1 1.5s ease-in-out 0.0s infinite alternate-reverse;
    -webkit-animation: swing1 1.5s ease-in-out 0.0s infinite alternate-reverse;
}

.main-page .main-center-4 .el {
    position: absolute;
    bottom: 45%;
    right: -3%;
    width: 56%;
    height: 40%;
    background-image: url(el4.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: center bottom;
    animation: swing1 2.0s ease-in-out 0.5s infinite alternate-reverse;
    -webkit-animation: swing1 2.0s ease-in-out 0.5s infinite alternate-reverse;
}

.main-page .main-center-5 .el {
    position: absolute;
    bottom: 45%;
    right: 3%;
    width: 50%;
    height: 52%;
    background-image: url(el5.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: center bottom;
    animation: swing1 2.0s ease-in-out 0.5s infinite alternate;
    -webkit-animation: swing1 2.0s ease-in-out 0.5s infinite alternate;
}

.main-page .container-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.main-page .container-content .content {
    width: 70%;
    text-align: center;
    padding: 2em 2em 4.5em 2em;
    margin-right: auto;
    margin-bottom: 16em;
}

.main-page .container-content .content .float {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.main-page .container-content .event {
    font-size: 22px;
    font-weight: 600;
    margin-right: auto;
}

.main-page .container-content .content .title {
    padding: 1em 0em;
}

.main-page .container-content .content .title .text-1 {
    position: relative;
    left: 0px;
    font-family: Sacramento;
    color: #468ACB;
    font-size: 52px;
    font-weight: 600;
    line-height: 0.75;
    margin-bottom: 0px;
}

.main-page .container-content .content .date h4 {
    font-size: 12px;
    font-weight: 600;
    margin-top: 1em;
}

.main-page .container-content .content .date h5 {
    width: fit-content;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    margin: auto;
    margin-bottom: 0;
    padding: 0.1em 0em;
}

.main-page .container-content .content .date h6 {
    font-size: 12px;
    font-weight: 600;
    padding: 0.5em 0em;
}

.main-page .container-content .content .location h6 {
    font-weight: 600;
    padding: 1.0em 0em;
}

.sub-page {
    background-color: #d2dce5;
    color: #468ACB;
    text-align: center;
    padding: 3em 0em 4em 0em;
}

.sub-page .sub-particle {
    position: fixed;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sub-page .sub-animation {
    position: fixed;
    left: 50%;
    top: 0;
    max-width: 480px;
    width: 100%;
    height: 100vh;
    transform: translateX(-50%);
    overflow: hidden;
    opacity: 0.5;
}

.sub-page .sub-bottom-1,
.sub-page .sub-bottom-2,
.sub-page .sub-bottom-3,
.sub-page .sub-sub {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.sub-page .sub-bottom-1 .el {
    position: absolute;
    bottom: -7%;
    right: -12%;
    background-image: url(el3.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 60%;
    height: 50%;
    transform-origin: center bottom;
    -webkit-animation: swing1 2.0s ease-in-out 0.0s infinite alternate;
    animation: swing1 2.0s ease-in-out 0.0s infinite alternate;
}

.sub-page .sub-bottom-2 .el {
    position: absolute;
    bottom: 11%;
    right: -7%;
    background-image: url(el4.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
    height: 50%;
    transform-origin: center bottom;
    -webkit-animation: swing1 2.0s ease-in-out 0.0s infinite alternate-reverse;
    animation: swing1 2.0s ease-in-out 0.0s infinite alternate-reverse;
}

.sub-page .sub-bottom-3 .el {
    position: absolute;
    bottom: 14%;
    right: 0%;
    background-image: url(el5.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
    height: 50%;
    transform-origin: center bottom;
    -webkit-animation: swing1 2.0s ease-in-out 0.5s infinite alternate;
    animation: swing1 2.0s ease-in-out 0.5s infinite alternate;
}

.sub-page .container {
    position: relative;
    z-index: 1;
    padding: 1em 2em;
}

.sub-page .container h4 {
    color: #468ACB;
    font-weight: 800;
}

.sub-page .container.container-countdown {
    background-color: #F6E7EC;
    padding: 2em 1em;
    margin-bottom: 2em;
}

.sub-page .container.container-countdown h4 {
    color: #468ACB;
}

.sub-page .container.container-footer {
    background-color: #F6E7EC;
    color: #468ACB;
}

.sub-page .container.container-footer p {
    color: #010101;
    font-weight: 500;
}

.appbar {
    position: fixed;
    bottom: 0px;
    max-width: 480px;
    width: 100%;
    z-index: 999999;
}

.appbar .appbar-nav {
    position: relative;
    z-index: 999999;
    max-height: 80px;
    background: #468ACB;
    border-radius: 20px 20px 0px 0px;
    padding: 1.25em 0.5em 0.75em 0.5em;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px 0px;
}

.appbar .appbar-nav ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.appbar .appbar-nav ul li {
    color: #FFFFFF;
    text-align: center;
    width: 25%;
}

.appbar .appbar-nav ul li i {
    display: block;
    font-size: 20px;
}

.appbar .appbar-nav ul li span {
    display: block;
    margin-top: 0.25em;
}

.appbar .appbar-nav ul li:nth-child(3) {
    position: relative;
    top: -32px;
}

.appbar .appbar-nav ul li:nth-child(3) i {
    display: inline-block;
    background: #FFFFFF;
    font-size: 24px;
    border: 2px solid #468ACB;
    border-radius: 50%;
    padding: 12px;
    color: #468ACB;
}

.appbar .appbar-modal {
    display: block;
    position: absolute;
    bottom: 90px;
    width: 100%;
    padding: 0em 0.5em;
}

.appbar .appbar-modal .modal-dialog {
    margin: 0em;
}

.appbar .appbar-modal .modal-dialog .modal-content {
    /* border: 1px solid #468ACB; */
}

.appbar .appbar-modal .modal-dialog .modal-header {
    background-color: #468ACB;
    color: #FFFFFF;
    border-bottom: 1px solid #468ACB;
}

.appbar .appbar-modal .modal-dialog .modal-body {
    color: #FFFFFF;
    background-color: #F6E7EC;
}

.appbar .appbar-modal .modal-dialog .modal-body label {
    color: #468ACB;
}

.modal-backdrop {
    position: absolute;
    opacity: 0.75;
    max-width: 480px;
    width: 100%;
    height: 100%;
}

.floating-bar {
    position: relative;
    z-index: 99999;
}

.floating-bar .floating-icon {
    position: absolute;
    right: 72px;
}

.floating-bar .floating-music {
    position: fixed;
    bottom: 100px;
    background: #F6A276;
    font-size: 20px;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    padding: 0.75em 1em;
}

.floating-bar .floating-music.active {
    animation: onplay ease-in-out 3s infinite alternate;
    -webkit-animation: onplay ease-in-out 3s infinite alternate;
}


/*============================================
==> Responsive CSS
============================================*/

@media(max-height: 620px) {
    .main-page .container-content {
        display: block;
        overflow: auto;
        padding-top: 0%;
    }

    .main-page .container-content .content {
        margin-bottom: 0em;
    }
}

@media(max-width: 550px) {
    .flipdown {
        zoom: 1;
    }
}

@media(max-width: 380px) {
    .flipdown {
        zoom: 0.8;
    }
}