/*============================================
==> Animation CSS
============================================*/
@keyframes onplay {
    0% {
        background-color: #FECA81;
        color: #1F2123;
        border: 1px solid #1F2123;
    }

    100% {
        background-color: #1F2123;
        color: #FECA81;
        border: 1px solid #FECA81;
    }
}

@-webkit-keyframe onplay {
    0% {
        background-color: #FECA81;
        color: #1F2123;
        border: 1px solid #1F2123;
    }

    100% {
        background-color: #1F2123;
        color: #FECA81;
        border: 1px solid #FECA81;
    }
}

@keyframes letterClose {
    0% {
        transform: rotateX(-90deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@-webkit-keyframe letterClose {
    0% {
        transform: rotateX(-90deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@keyframes letterOpen {
    0% {
        transform: rotateX(-0deg);
    }

    100% {
        visibility: hidden;
        transform: rotateX(-90deg);
    }
}

@-webkit-keyframe letterOpen {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(-90deg);
    }
}

@keyframes rotate1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@-webkit-keyframe rotate1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}


/*============================================
==> Preloader CSS
============================================*/
.js-preloader {
    z-index: 9999999;
}

.js-preloader .preloader-inner .dot {
    background: #1F2123;
}

.js-preloader .preloader-inner .dots span {
    background: #FECA81;
}

/*============================================
==> jsCalendar CSS
============================================*/
.jsCalendar table {
    font-family: Lato;
    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: #FECA81;
}

.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: #FECA81;
    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;
}

/* [data-aos] {
    transform-style: preserve-3d;
} */

/*============================================
==> Font CSS
============================================*/
@font-face {
    font-family: Lato;
    src: url("../../../assets/fonts/Lato/Lato-Regular.ttf");
}

@font-face {
    font-family: GreatVibes;
    src: url("../../../assets/fonts/GreatVibes/GreatVibes-Regular.ttf");
}


@font-face {
    font-family: Tangerine;
    src: url("../../../assets/fonts/Tangerine/Tangerine-Regular.ttf");
}


@font-face {
    font-family: Caveat;
    src: url("../../../assets/fonts/Caveat/Caveat-Bold.ttf");
}

@font-face {
    font-family: CutiveMono;
    src: url("../../../assets/fonts/CutiveMono/CutiveMono-Regular.ttf");
}

/*============================================
==> General CSS
============================================*/
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #FFFFFF;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #FECA81;
}

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: Lato;
    color: #FECA81;
    background-image: url("bg2.jpg");
    background-size: 115% 100%;
    background-position: center;
    
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

p {
    color: #FECA81;
    font-weight: 500;
    line-height: 1.5;
}

label {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.1em;
}

hr {
    height: 1.5px;
    background: #FECA81;
}

.btn-main {
    background-color: #FECA81;
    border: 1px solid #FECA81;
    color: #1F2123 !important;
}

.btn-main:hover {
    background-color: #1F2123;
    border: 1px solid #FECA81;
    color: #FECA81 !important;
}

.text-sm {
    font-size: 12px;
}

.text-main {
    color: #FECA81;
}

.text-parent {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 0px;
}

.text-bride {
    font-family: Tangerine;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 0px;
    text-shadow: 0 0 5px #FECA81;
}

.text-hashtag {
    margin: 1em 0em;
    text-shadow: 0 0 2px #FECA81;
}

.form-group {
    margin-bottom: 1em;
}

.form-control {
    border: 1px solid #FECA81;
}

.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: #FECA81;
    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: CutiveMono;
    color: #FFFFFF;
    white-space: nowrap;
}

.table-program tr td:nth-child(2) {
    text-align: left;
    color: #FECA81;
    padding-left: 1em;
    padding: 0.25em 0em 0.25em 1em;
}

.card-qr {
    background-color: #1F2123;
    border: 1px solid #FECA81;
    border-radius: 4px;
    overflow: hidden;
}

.card-qr .title {
    background-color: #FECA81;
    font-size: 22px;
    color: #1F2123;
    padding: 1em;
}

.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-download:hover {

}

.card-qr .btn-copy {
    font-size: 22px;
    padding: 0.5em 0.75em;
}

.card-qr .btn-copy:hover {

}

.card-qr label {
    color: #1F2123;
    font-weight: 600;
}

.card-qr p {
    color: #1F2123;
    margin-bottom: 0px;
}

.card-prayer {
    border: 1px solid #FECA81;
    padding: 1em;
    margin: 1em 0em 2em 0em;
}

.card-prayer p {
    margin-bottom: 0px;
    white-space: pre-line;
}

.card-divider {
    display: block;
    border: 1px solid #FECA81;
    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%;
    color: #FFFFFF;
    font-size: 16px;
}

.list-contact li label i {
    font-size: 24px;
}

.list-contact li a {
    background: #FECA81;
    color: #1F2123;
    border: 1px solid #FECA81;
    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: #FECA81;
    color: #FFFFFF;
    border: 1px solid #FECA81;
    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: #FECA81 0px 1px 5px 0px;
}

.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: #FECA81 0px 1px 5px 0px;
}

.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: #FECA81 !important;
}

.slider-guestbook .text {
    font-family: Caveat;
    font-size: 18px;
}

/*============================================
==> Section CSS
============================================*/

.main-page {
    position: fixed;
    left: 50%;
    top: 0px;
    z-index: 99999;
    max-width: 480px;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    transform: translateX(-50%);
}

.main-page .main-container {
    width: 100%;
    height: 100%;
    background-image: url(bg1.jpg);
    background-size: 100% 100%;
    background-position: center;
}

.main-page #tsparticles1 {
    position: absolute;
    height: 100%;
    width: 100%;
}

.main-page .main-animation {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

.main-page .main-bg-1 {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url(bg1-1.jpg);
    background-size: 80% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.main-page .main-top-1 {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.main-page .main-top-1.close {
    transform-origin: top center;
    -webkit-animation: letterClose 1s linear 0s 1 both;
    animation: letterClose 1s linear 0s 1 both;
}

.main-page .main-top-1.open {
    transform-origin: top center;
    -webkit-animation: letterOpen 1s linear 0s 1 both;
    animation: letterOpen 1s linear 0s 1 both;
}

.main-page .main-top-1 .el {
    position: absolute;
    top: -12%;
    left: -0%;
    width: 100%;
    height: 32%;
    background-image: url(bg1-1.png);
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
}

.main-page .main-top-1 .el1 {
    position: absolute;
    top: 5%;
    left: -0%;
    width: 100%;
    height: 25%;
    background-image: url(el1.png);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    -webkit-animation: rotate1 5s ease-in-out 0s alternate infinite both;
    animation: rotate1 5s ease-in-out 0s alternate infinite both;
}

.main-page .main-right-1 .el {
    -webkit-animation: rotate1 8s ease-in-out infinite alternate;
    animation: rotate1 8s ease-in-out 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: 100%;
    padding: 12.5em 1.5em 1.5em 1.5em;
}

.main-page .container-content .content .title {
    position: relative;
    z-index: 999;
    width: 100%;
    font-family: GreatVibes;
    color: #FECA81;
    margin-bottom: 0px;
    padding: 1em 0em;
    /* text-shadow: 0px 2px 2px #FFF89F; */
}

.main-page .container-content .content .title .text-1 {
    position: relative;
    left: -10px;
    font-size: 64px;
    letter-spacing: 2px;
    font-weight: 500;
    line-height: 1;
}

.main-page .container-content .content .title .text-2 {
    position: relative;
    right: 0px;
    font-size: 48;
    font-weight: 500;
    line-height: 0.5;
}

.main-page .container-content .content .title .text-3 {
    position: relative;
    left: -10px;
    font-size: 64px;
    letter-spacing: 2px;
    font-weight: 500;
    line-height: 1;
}

.main-page .container-content .content .event {
    font-weight: 400;
    padding-bottom: 0em;
}

.main-page .container-content .content .date {
    margin-top: 0em;
}

.main-page .container-content .content .date h2 {
    width: 100%;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    margin: 0.25em 0em;
}

.main-page .container-content .content .date h2 span:nth-child(1) {
    color: #FECA81;
}

.main-page .container-content .content .date h2 span:nth-child(3) {
    color: #FECA81;
}

.main-page .container-content .content .date h2 span:nth-child(5) {
    color: #FECA81;
}

.main-page .container-content .content .date h4 {
    font-family: CutiveMono;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 15px;
    color: #FECA81;
    margin: 0em;
    padding: 0.25em;
    transform: rotate(2deg);
}

.main-page .container-content .content .date h4 span:last-child {
    letter-spacing: 0px;
}

.main-page .container-content .content .date h6 {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin: 0em;
    padding: 0.25em;
}

.main-page .container-content .content .location {
    margin-top: 1em;
}

.main-page .container-content .content .location h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin: 0em;
}

.main-page .container-content .content .open {
    margin-top: 2em;
}

.main-page .container-content .content .open .btn-open {
    width: 100%;
    max-width: 220px;
    font-size: 14px;
    padding: 0.75em 1em;
    box-shadow: 0px 2px 4px 1px #57605B;
}

.sub-page {
    color: #FECA81;
    text-align: center;
    padding: 3em 0em 4em 0em;
}

.sub-page .sub-animation {
    position: fixed;
    left: 50%;
    top: 0;
    max-width: 100%;
    width: 480px;
    height: 100%;
    transform: translateX(-50%);
    overflow: hidden;
}

.sub-page .sub-left-1 {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sub-page .sub-left-1 .el {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 35%;
    height: 35%;
    background-image: url(bg2-1.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.sub-page .sub-right-1 {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sub-page .sub-right-1 .el {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 35%;
    height: 35%;
    background-image: url(bg2-2.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.sub-page .container {
    position: relative;
    z-index: 1;
    padding: 1em 2em;
}

.sub-page .container h4 {
    color: #FFFFFF;
}

.sub-page .container.container-countdown {
    background-color: #FECA81;
    margin-bottom: 2em;
	padding: 2em 1.5em;
}

.sub-page .container.container-countdown h4 {
    color: #1F2123;
}

.sub-page .container.container-footer {
    background-color: #FECA81;
    color: #1F2123;
}

.sub-page .container.container-footer p {
    color: #1F2123;
    font-weight: 500;
}

.appbar {
    position: fixed;
    bottom: 0px;
    max-width: 480px;
    width: 100%;
    z-index: 999999;
}

.appbar .appbar-nav {
    position: relative;
    z-index: 999999;
    background: #FECA81;
    max-height: 80px;
    padding: 1.25em 0.5em 0.75em 0.5em;
    border-radius: 20px 20px 0px 0px;
    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: #1F2123;
    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: #1F2123;
    font-size: 24px;
    color: #FECA81;
    border: 2px solid #FECA81;
    border-radius: 50%;
    padding: 12px;
}

.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 {}

.appbar .appbar-modal .modal-dialog .modal-header {
    background-color: #FECA81;
    color: #1F2123;
    border-bottom: 1px solid #FECA81;
}

.appbar .appbar-modal .modal-dialog .modal-body {
    color: #FFFFFF;
    background-color: #1F2123;
    border: 1px solid #FECA81;
}

.appbar .appbar-modal .modal-dialog .modal-body label {
    color: #FECA81;
}

.appbar .appbar-modal .modal-dialog .modal-body .btn-main {

}

.appbar .appbar-modal .modal-dialog .modal-body .btn-main:hover {
  
}

.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: #FECA81;
    font-size: 20px;
    color: #1F2123;
    border: 1px solid #1F2123;
    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: 680px) {
    .main-page .container-content {
        display: block;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .main-page .container-content .content {
        padding: 12em 1.5em 1.5em 1.5em;
    }
}

@media(max-width: 550px) {
    .flipdown {
        zoom: 1;
    }
}

@media(max-width: 380px) {
    .flipdown {
        zoom: 0.8;
    }
}