/*============================================
==> Animation CSS
============================================*/
@keyframes swing1 {
    0% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(-4deg);
    }
}

@-webkit-keyframe swing1 {
    0% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(-4deg);
    }
}

@keyframes swing2 {
    0% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(-4deg);
    }
}

@-webkit-keyframe swing2 {
    0% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(-4deg);
    }
}

@keyframes rotate1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(30deg);
    }
}

@-webkit-keyframe rotate1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(30deg);
    }
}



@keyframes homeButton {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes playButton {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.3, 1.3);
    }

    100% {
        transform: scale(1, 1);
    }
}

/*============================================
==> jsCalendar CSS
============================================*/
.jsCalendar table {
    font-family: Asap;
    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 {
    background: #C49A6C;
    color: #FFFFFF;
    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 {
    color: #FFFFFF;
    font-size: 22px;
    height: auto;
    width: auto;
    padding: 10px;
}

.jsCalendar thead .jsCalendar-nav-left:hover,
.jsCalendar thead .jsCalendar-nav-right:hover {
    background-color: #FFFFFF;
}

.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: #C49A6C;
    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;
}

/*============================================
==> Aos CSS
============================================*/
body[data-aos-duration='4000'] [data-aos],
[data-aos][data-aos][data-aos-duration='4000'] {
    transition-duration: 4000ms;
}

/*============================================
==> Sweetaler 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: Asap;
    src: url("../../../assets/fonts/Asap/Asap-VariableFont_wdth\,wght.ttf");
}

@font-face {
    font-family: Caveat;
    src: url("../../../assets/fonts/Caveat/Caveat-Bold.ttf");
}

@font-face {
    font-family: Edwardian Script ITC;
    src: url("../../../assets/fonts/Edwardian/Edwardian-Script-ITC.ttf");
}

/*============================================
==> General CSS
============================================*/
html {
    overflow-x: hidden;
    scroll-behavior: unset !important;
}

body {
    position: relative;
    overflow-x: hidden;
    max-width: 480px;
    width: 100%;
    margin: auto;
    font-family: Asap;
    color: #494847;
    background-image: url("./bg3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

p,
label,
h1,
h2,
h3,
h4,
h5,
h6,
td,
th,
span,
button {
    font-weight: 500;
}

p {
    color: #424242;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 17.5px;
}

h5 {
    font-size: 15px;
}

label {
    font-size: 14px;
}

hr {
    background: #C49A6C;
    margin: 25px 20px;
    opacity: 1;
}

ul {
    padding-left: 0px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #C49A6C;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.js-preloader {
    z-index: 9999999999;
}

.js-preloader .preloader-inner .dots span {
    background: #C49A6C;
}

.js-preloader .preloader-inner .dot {
    background: #C49A6C;
}

.btn-main {
    background-color: #C49A6C;
    border: 1px solid #C49A6C;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
}

.btn-main:hover {
    background-color: #FFFFFF;
    border: 1px solid #C49A6C;
    color: #C49A6C;
}

.btn-open {
    width: 260px;
    max-width: 100%;
    padding: 1em 2em;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 8px 2px;
}

.text-main {
    color: #C49A6C;
}

.text-amp {
    font-family: Arial;
}

.text-hashtag {
    font-size: 26px;
    color: #C49A6C;
    text-shadow: 0 0 10px #FFF, 0 0 20px #C49A6C;
    padding-top: 35px;
}

.text-bride {
    font-family: Edwardian Script ITC;
    color: #C49A6C;
    font-size: 26px;
    font-weight: 900;
    text-shadow: 0 0 2px #FFF, 0 0 4px #C49A6C;
    letter-spacing: 2px;
}

.container {
    z-index: 1;
    position: relative;
    padding: 1em;
}

.input-counter {
    display: flex;
    justify-content: center;
    padding: 10px 0px;
}

.input-counter button {
    background: #C49A6C;
    color: #FFFFFF;
    padding: 7px 12px;
    border-radius: 50%;
    border: none;
}

.input-counter button:nth-child(1) {
    margin-right: 10px;
}

.input-counter button:nth-child(3) {
    margin-left: 10px;
}

.input-counter input {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.input-counter input::-webkit-outer-spin-button,
.input-counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control {
    font-size: 14px;
}

/*============================================
==> Section CSS
============================================*/
.container-content {
    padding-top: 50px;
    padding-bottom: 10px;
}

.container-content .content {
    text-align: center;
}

.container-content .content label {
    font-size: 15px;
    font-weight: 600;
    color: #C49A6C;
    margin-bottom: 5px;
}

.container-content .program tr td {
    text-align: left;
    padding: 2px 15px;
}

.container-content .program tr td:nth-child(1) {
    font-family: monospace;
    font-weight: 600;
    white-space: nowrap;
    text-align: right;
    border-right: 1px solid #C49A6C;
}

.container-content .program tr td:nth-child(2) {
    font-size: 13px;
}

.container-countdown {
    display: inline-block;
    background: #E4CBEE;
    background: linear-gradient(356deg, rgba(210, 172, 225, 1) 10%, rgba(228, 203, 238, 1) 70%);
    color: #C49A6C;
    padding-top: 25px;
    padding-bottom: 30px;
    margin: 35px 0px;
    text-align: center;
    border-radius: 5px;
    box-shadow: rgb(0, 0, 0, 0.25) 0px 4px 12px 4px;
}

.slider-gallery-main .image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.container-gallery {
    text-align: center;
    color: #C49A6C;
}

.slider-gallery-sub .image {
    height: 80px;
    background-size: cover;
    background-position: center;
}

.slider-gallery-sub .center .image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(210, 172, 225, 0.6);
}

.container-guestbook {
    text-align: center;
}

.container-guestbook h4 {
    color: #C49A6C;
}

.slider-guestbook .owl-dots button {
    background: #424242;
    padding: 4px !important;
    border-radius: 50%;
    margin: 0px 5px;
}

.slider-guestbook .owl-dots button.active {
    background: #C49A6C;
}

.slider-guestbook .text {
    font-family: Caveat;
    font-size: 20px;
}

.qr-card {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #C49A6C;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgb(0, 0, 0, 0.25) 0px 4px 12px 4px;
}

.qr-card .left {
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 20px;
    background: #C49A6C;
    background: linear-gradient(356deg, rgba(196, 154, 108, 1) 10%, rgba(210, 176, 139, 1) 70%);
    color: #FFFFFF;
}

.qr-card .right {
    padding: 10px;
    width: 100%;
}

.qr-card label {
    color: #C49A6C;
}

.money-gift-qr {
    width: 200px;
    max-width: 100%;
    display: block;
}

.container-prayer {
    text-align: center;
    margin: 1em 0em 2em 0em;;
}

.card-prayer {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #E4CBEE;
    box-shadow: rgb(0, 0, 0, 0.25) 0px 4px 12px 4px;
}

.card-prayer p {
    white-space: pre-line;
}

.container-footer {
    text-align: center;
    color: #C49A6C;
    background: #E4CBEE;
    background: linear-gradient(356deg, rgba(210, 172, 225, 1) 10%, rgba(228, 203, 238, 1) 70%);
    padding-top: 40px;
    padding-bottom: 100px;
    position: relative;
}

.container-footer img {
    max-width: 100%;
    width: 140px;
}

.social-media {
    display: flex !important;
    justify-content: center;
}

.social-media li {
    margin: 0px 10px;
}

.social-media li a {
    font-size: 24px !important;
    background: #FFFFFF;
    color: #C49A6C !important;
    padding: 8px;
    line-height: 0;
    display: block;
    border-radius: 6px;
    border: 1px solid #FFFFFF;
}

.appbar {
    position: fixed;
    width: 100%;
    max-width: 480px;
    bottom: 0;
    left: 50%;
    z-index: 999999;
    border: none;
    transform: translateX(-50%);
}

.appbar .appbar-nav {
    background: #FFFFFF;
    padding: 15px 10px;
    border-radius: 20px 20px 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
    z-index: 999999;
}

.appbar .appbar-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 40px;
    padding: 0px;
    margin-bottom: 0px;
}

.appbar .appbar-nav ul li {
    text-align: center;
    cursor: pointer;
    width: 70px;
}

.appbar .appbar-nav ul li i {
    margin-bottom: 5px;
}

.appbar .appbar-nav ul li span {
    display: block;
    font-size: 12px;
}

.appbar .appbar-nav ul li:nth-child(3) {
    position: relative;
}

.appbar .appbar-nav ul li:nth-child(3) i {
    font-size: 24px;
    color: #FFFFFF;
    background: #C49A6C;
    border: 3px solid #FFFFFF;
    padding: 10px;
    border-radius: 50%;
    animation: homeButton ease-in-out 3s infinite alternate;
}

.social-media {
    padding-left: 0px;
}

.mod-backdrop {
    position: fixed;
    top: 0;
    left: 50%;
    height: 100%;
    width: 100%;
    max-width: 480px;
    background: #000;
    opacity: 0.4;
    z-index: 99999;
    transition: 0.5s;
    transform: translateX(-50%);
}

.mod {
    position: relative;
    width: 100%;
    z-index: 999999999;
}

.mod .modal-dialog {
    width: 99%;
    margin: 25px auto;
}

.mod .modal-content {
    border-radius: 18px;
}

.mod .modal-header {
    border-bottom: none !important;
}

.mod .modal-title {
    width: 100%;
    text-align: center;
    padding-left: 25px;
    font-size: 18px;
}

.mod .modal-footer {
    border-top: none !important;
}

.mod .modal-footer button {
    background: #65AA7B;
    border: 1px solid #65AA7B;
    font-size: 14px;
    padding: 5px 0px;
}

.mod .modal-footer button:hover {
    background-color: #E4E4E2;
    color: #65AA7B;
}

.contact-list li {
    display: flex;
    padding: 5px 0px;
}

.contact-list li:not(:last-child) {
    border-bottom: 1px solid #E4E4E2;
}

.contact-list li label {
    width: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-list li label i {
    font-size: 24px;
}

.contact-list li a {
    color: #424242;
    cursor: pointer;
    font-size: 24px;
    padding-left: 24px;
}

.main-page {
    position: fixed;
    z-index: 999999;
    width: 100%;
    max-width: 480px;
    height: 100%;
    left: 50%;
    top: 0px;
    text-align: center;
    overflow: hidden;
    transform: -50;
    transform: translateX(-50%);
}

.main-page section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 30px;
    background-image: url(./bg-1.jpg);
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.main-page .header h6 {
    font-size: 16px;
}

.main-page .title {
    position: relative;
    left: -12px;
    padding: 1em 0em;
}

.main-page .title h2 {
    font-family: Edwardian Script ITC;
    color: #C49A6C;
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    text-shadow: 0 0 10px #FFF, 0 0 20px #C49A6C;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

.main-page .title h2:nth-child(2) {
    font-size: 40px;
    margin: 10px 0px;
}

.main-page .date {
    padding: 1em 0em;
}

.main-page .date h4 {
    font-size: 23px;
    margin-bottom: 0px;
}

.main-page .date h5 {
    font-size: 46px;
}

.main-page .date h5 span {
    font-size: 22px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    width: 115px;
    display: inline-block;
}

.main-page .date h6 {
    font-size: 11px;
}

.main-page .date hr {
    margin: 10px 70px;
}

.main-page .location {
    padding: 1em 0em;
}

.main-page .location h6 {
    font-size: 16px;
}

.floating-bar {
    position: relative;
    z-index: 999999;
}

.floating-bar .floating-icon {
    position: absolute;
    right: 72px;
}

.floating-music {
    position: fixed;
    bottom: 90px;
    z-index: 999999;
    color: #FFFFFF;
    background: #C49A6C;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    padding: 15px 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.floating-music i.active {
    animation: playButton ease-in-out 3s infinite alternate;
}

#main-top {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#main-top-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -80px;
    left: -100px;
    background: url(./bg-6.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: 0.8;
    transform-origin: left top;
    -webkit-animation: swing1 3s ease-in-out infinite alternate;
    animation: swing1 3s ease-in-out infinite alternate;
}

#main-top-side-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -30px;
    left: -40px;
    background: url(./bg-side-1-180.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: left top;
    -webkit-animation: rotate1 2s ease-in-out infinite alternate;
    animation: rotate1 2s ease-in-out infinite alternate;
}

#main-top-side-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 100px;
    left: -10px;
    background: url(./bg-side-2.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: left top;
    -webkit-animation: rotate1 2s ease-in-out 0.2s infinite alternate;
    animation: rotate1 2s ease-in-out infinite 0.2s alternate;
}

#main-top-side-3 {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 55px;
    left: 85px;
    background: url(./bg-side-3.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: left top;
    -webkit-animation: rotate1 2s ease-in-out 0.4s infinite alternate;
    animation: rotate1 2s ease-in-out infinite 0.4s alternate;
}

#main-top-side-4 {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -20px;
    left: 55px;
    background: url(./bg-side-4.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: left top;
    -webkit-animation: rotate1 2s ease-in-out 0.6s infinite alternate;
    animation: rotate1 2s ease-in-out infinite 0.6s alternate;
}

#main-top-side-5 {
    position: absolute;
    width: 110px;
    height: 110px;
    top: -30px;
    left: 150px;
    background: url(./bg-side-5-180.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: left top;
    -webkit-animation: rotate1 2s ease-in-out 0.8s infinite alternate;
    animation: rotate1 2s ease-in-out infinite 0.8s alternate;
}

#main-bottom {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#main-bottom-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -80px;
    right: -100px;
    background: url(./bg-7.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.8;
    transform-origin: right bottom;
    -webkit-animation: swing2 3s ease-in-out 0.5s infinite alternate;
    animation: swing2 3s ease-in-out 0.5s infinite alternate;
}

#main-bottom-side-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -40px;
    background: url(./bg-side-1.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: right bottom;
    -webkit-animation: rotate1 2s ease-in-out infinite alternate;
    animation: rotate1 2s ease-in-out infinite alternate;
}

#main-bottom-side-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 100px;
    right: -10px;
    background: url(./bg-side-2.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: right bottom;
    -webkit-animation: rotate1 2s ease-in-out 0.2s infinite alternate;
    animation: rotate1 2s ease-in-out infinite 0.2s alternate;
}

#main-bottom-side-3 {
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 55px;
    right: 85px;
    background: url(./bg-side-3.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: right bottom;
    -webkit-animation: rotate1 2s ease-in-out 0.4s infinite alternate;
    animation: rotate1 2s ease-in-out infinite 0.4s alternate;
}

#main-bottom-side-4 {
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: -20px;
    right: 55px;
    background: url(./bg-side-4.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: right bottom;
    -webkit-animation: rotate1 2s ease-in-out 0.6s infinite alternate;
    animation: rotate1 2s ease-in-out infinite 0.6s alternate;
}

#main-bottom-side-5 {
    position: absolute;
    width: 110px;
    height: 110px;
    bottom: -30px;
    right: 150px;
    background: url(./bg-side-5.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform-origin: right bottom;
    -webkit-animation: rotate1 2s ease-in-out 0.8s infinite alternate;
    animation: rotate1 2s ease-in-out infinite 0.8s alternate;
}

#sub-1 {
    position: absolute;
    top: 10px;
    left: -30px;
    background-image: url("./sub-1.png");
    background-size: cover;
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

#tsparticles-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#tsparticles-2 {
    position: fixed;
    width: 100%;
    max-width: 480px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.iframe-container iframe {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

/*============================================
==> Responsive CSS
============================================*/

@media(max-height: 620px) {
    .main-page section {
        display: block;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

@media(max-width: 550px) {
    .flipdown {
        zoom: 1;
    }
}

@media(max-width: 380px) {
    .flipdown {
        zoom: 0.8;
    }
}