/*============================================
==> Animation CSS
============================================*/
@keyframes onplay {
    0% {
        background-color: #8AC6E8;
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
    }

    100% {
        background-color: #FFFFFF;
        color: #8AC6E8;
        border: 1px solid #8AC6E8;
    }
}

@-webkit-keyframe onplay {
    0% {
        background-color: #8AC6E8;
        color: #BDBDBD;
        border: 1px solid #BDBDBD;
    }

    100% {
        background-color: #BDBDBD;
        color: #8AC6E8;
        border: 1px solid #8AC6E8;
    }
}

@keyframes cloud1 {
    0% {
        background-position: 50%;
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        background-position: 55%;
    }

    100% {
        transform: scale(1.1);
        background-position: 45%;
    }
}

@-webkit-keyframe cloud1 {
    0% {
        background-position: 50%;
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        background-position: 55%;
    }

    100% {
        transform: scale(1.1);
        background-position: 45%;
    }
}

@keyframes cloud2 {
    0% {
        transform: scale(1.0) translateX(-10px);
    }

    100% {
        transform: scale(1.1) translateX(10px);
    }
}

@-webkit-keyframe cloud2 {
    0% {
        transform: scale(1.0) translateX(-10px);
    }

    100% {
        transform: scale(1.1) translateX(10px);
    }
}

@keyframes fly1 {
    0% {
        transform: rotate(-4deg) translateX(-15px) translateY(15px);
    }

    100% {
        transform: rotate(8deg) translateX(15px) translateY(-15px);
    }
}

@-webkit-keyframe fly1 {
    0% {
        transform: rotate(-4deg) translateX(-15px) translateY(15px);
    }

    100% {
        transform: rotate(8deg) translateX(15px) translateY(-15px);
    }
}

@keyframes float1 {
    0% {
        transform: scale(1.0) rotate(0deg);
    }

    100% {
        transform: scale(1.2) rotate(-6deg);
    }
}

@-webkit-keyframe float1 {
    0% {
        transform: scale(1.0) rotate(0deg);
    }

    100% {
        transform: scale(1.2) rotate(-6deg);
    }
}

/*============================================
==> Preloader CSS
============================================*/
.js-preloader {
    z-index: 9999999;
}

.js-preloader .preloader-inner .dot {
    background: #1E7BB6;
}

.js-preloader .preloader-inner .dots span {
    background: #8AC6E8;
}

/*============================================
==> 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: #8AC6E8;
}

.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: #8AC6E8;
    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: Comfortaa;
    src: url("../../../assets/fonts/Comfortaa/Comfortaa-VariableFont.ttf");
}

@font-face {
    font-family: Caveat;
    src: url("../../../assets/fonts/Caveat/Caveat-Bold.ttf");
}

@font-face {
    font-family: SpaceMono;
    src: url("../../../assets/fonts/SpaceMono/SpaceMono-Regular.ttf");
}

@font-face {
    font-family: Allura;
    src: url("../../../assets/fonts/Allura/Allura-Regular.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: Comfortaa;
    color: #FAC368;
    letter-spacing: 0.5px;
    background-color: #1E7BB6;
    background-size: cover;
    background-position: center;
    
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

p {
    color: #FFFFFF;
    line-height: 1.5;
}

label {
    color: #FAC368;
    margin-bottom: 0.1em;
}

hr {
    height: 1.5px;
    background: #FAC368;
}

::-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: #8AC6E8;
}

.btn-main {
    background-color: #8AC6E8;
    border: 1px solid #8AC6E8;
    color: #FFFFFF;
}

.btn-main:hover {
    background-color: #FFFFFF;
    border: 1px solid #8AC6E8;
    color: #8AC6E8 !important;
}

.btn-open {
    width: 240px;
    max-width: 100%;
    font-size: 14px;
    margin: 0em 1em;
    padding: 1em;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px 5px;
}

.text-sm {
    font-size: 12px;
}

.text-parent {
    font-size: 24px;
    color: #FAC368;
}

.text-bride {
    font-family: Allura;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FAC368;
    text-shadow: 0 0 6px #000000;
}

.text-amp {
    font-family: ui-monospace !important;
}

.text-hashtag {
    color: #FAC368;
    margin: 1em 0em;
    text-shadow: 0 0 10px #8AC6E8, 0 0 20px #FFFFFF;
}

.form-group {
    margin-bottom: 1em;
}

.form-control {
    border: 1px solid #8AC6E8;
}

.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: #8AC6E8;
    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: #FAC368;
    white-space: nowrap;
}

.table-program tr td:nth-child(2) {
    text-align: left;
    color: #FFFFFF;
    padding-left: 1em;
    padding: 0.25em 0em 0.25em 1em;
}

.card-qr {
    background-color: #FFFFFF;
    background-color: rgb(255, 255, 255, 0.5);
    border: 1px solid #8AC6E8;
    border-radius: 4px;
    overflow: hidden;
}

.card-qr .title {
    background-color: #8AC6E8;
    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: #8AC6E8;
    font-weight: 600;
}

.card-qr p {
    color: #121113;
    margin-bottom: 0px;
}

.card-prayer {
    padding: 1em;
}

.card-prayer p {
    margin-bottom: 0px;
    white-space: pre-line;
}

.card-divider {
    display: block;
    border: 1px solid #8AC6E8;
    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: #8AC6E8;
    color: #FFFFFF;
    border: 1px solid #8AC6E8;
    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: #8AC6E8;
    color: #FFFFFF;
    border: 1px solid #8AC6E8;
    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 0px 4px 4px;
}

.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 0px 4px 4px;
}

.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: #8AC6E8 !important;
}

/*============================================
==> Section CSS
============================================*/

.main-page {
    position: fixed;
    left: 50%;
    top: 0px;
    z-index: 99999;
    max-width: 480px;
    width: 100%;
    height: 100%;
    background-image: url("bg1.jpg?v=1");
    background-size: 100% 100%;
    background-position: center;
    text-align: center;
    overflow: hidden;
    transform: translateX(-50%);
}

.main-page #tsparticles1 {
    position: absolute;
    height: 100%;
    width: 100%;
}

.main-page .main-animation {
    z-index: -1;
}

.main-animation .main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-animation .main-bg-1 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-image: url(bg3.png);
    background-size: cover;
    background-position: center;
    height: 65%;
    width: 100%;
    -webkit-animation: cloud1 8s ease-in-out infinite alternate;
    animation: cloud1 8s ease-in-out infinite alternate;
}

.main-animation .main-center {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-animation .main-center-1 {
    position: absolute;
    left: 0px;
    top: 15%;
    background-image: url(el1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 320px;
    width: 100%;
    -webkit-animation: fly1 3s ease-in-out infinite alternate;
    animation: fly1 3s ease-in-out infinite alternate;
}

.main-animation .main-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-animation .main-top-1 {
    position: absolute;
    left: 5%;
    top: 30%;
    width: 80px;
    -webkit-animation: cloud2 3s ease-in-out 1s infinite alternate;
    animation: cloud2 3s ease-in-out 1s infinite alternate;
}

.main-animation .main-top-2 {
    position: absolute;
    left: 42%;
    top: 5%;
    width: 150px;
    -webkit-animation: cloud2 5s ease-in-out infinite alternate;
    animation: cloud2 5s ease-in-out infinite alternate;
}

.main-animation .main-top-3 {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 80px;
    -webkit-animation: cloud2 3s ease-in-out infinite alternate;
    animation: cloud2 3s ease-in-out infinite alternate;
}

.main-animation .main-top-4 {
    content: url(el4.png);
    position: absolute;
    left: 3%;
    top: 5%;
    width: 206px;
    -webkit-animation: float1 3s ease-in-out 0.5s infinite alternate;
    animation: float1 3s ease-in-out 0.5s infinite alternate;
}

.main-page .container-content {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.main-page .container-content .content {
    width: 100%;
    background-image: url(bg2.png);
    background-size: cover;
    background-position: center;
    color: #010101;
    padding: 4em 2em;
    margin-bottom: 20%;
}

.main-page .container-content .content .float {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.main-page .container-content .event {
    width: 180px;
    font-weight: 900;
    border-bottom: 2px solid #8AC6E8;
    margin: auto;
}

.main-page .container-content .content .title {
    padding: 1em 0em;
}

.main-page .container-content .content .title .text-1 {
    position: relative;
    left: 0px;
    font-family: Allura;
    color: #010101;
    font-size: 52px;
    font-weight: 600;
    line-height: 0.75;
    margin-bottom: 0px;
    text-shadow: 0px 5px 5px #8AC6E8;
}

.main-page .container-content .content .date h4 {
    font-size: 14px;
    font-weight: 900;
    margin-top: 1em;
}

.main-page .container-content .content .date h5 {
    width: fit-content;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    margin: 0em auto;
    padding: 0.1em 1em;
}

.main-page .container-content .content .date h6 {
    font-size: 14px;
    font-weight: 900;
    padding: 0.5em;
}

.main-page .container-content .content .location h6 {
    padding: 1.5em 0em;
}

.sub-page {
    /* background-image: url("bg-sub.jpg");
    background-size: 480px 100%;
    background-position: center;
    background-attachment: fixed; */
    color: #010101;
    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 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sub-page .sub-left .sub-left-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    background-image: url(el3.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    width: 300px;
    height: 300px;
    transform-origin: 275px 25px;
    -webkit-animation: cloud2 3s ease-in-out infinite alternate;
    animation: cloud2 3s ease-in-out infinite alternate;
    opacity: 0.1;
}

.sub-animation .sub-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sub-animation .sub-right .sub-right-1 {
    position: absolute;
    bottom: -85px;
    left: -65px;
    background-image: url(el4.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    width: 350px;
    height: 300px;
    transform-origin: 25px 275px;
    -webkit-animation: float1 3s ease-in-out infinite alternate;
    animation: float1 3s ease-in-out infinite alternate;
    opacity: 0.1;
}

.sub-page .container {
    position: relative;
    z-index: 1;
    padding: 1em 2em;
}

.sub-page .container h4 {
    color: #FAC368;
}

.sub-page .container.container-countdown {
    background-color: #FFFFFF;
    background-color: rgb(255, 255, 255, 0.85);
    padding-top: 1em 0em;
    margin-bottom: 2em;
}

.sub-page .container.container-countdown h4 {
    color: #121113;
}

.sub-page .container.container-footer {
    background-color: #FFFFFF;
    background-color: rgb(255, 255, 255, 0.85);
    color: #8AC6E8;
}

.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;
    background: #8AC6E8;
    max-height: 80px;
    padding: 1.25em 0.5em 0.75em 0.5em;
    /* border-top: 2px solid #BDBDBD;
    border-left: 2px solid #BDBDBD;
    border-right: 2px solid #BDBDBD; */
    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: #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: -28px;
}

.appbar .appbar-nav ul li:nth-child(3) i {
    display: inline-block;
    padding: 12px;
    background: #FFFFFF;
    border-radius: 50%;
    font-size: 24px;
    color: #8AC6E8;
}

.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 #8AC6E8; */
}

.appbar .appbar-modal .modal-dialog .modal-header {
    background-color: #8AC6E8;
    color: #FFFFFF;
    border-bottom: 1px solid #8AC6E8;
}

.appbar .appbar-modal .modal-dialog .modal-body {
    color: #FFFFFF;
    background-color: #1E7BB6;
    background-color: rgb(30, 123, 182, 0.8);
}

.appbar .appbar-modal .modal-dialog .modal-body label {
    color: #FFFFFF;
}

.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: #8AC6E8;
    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: 680px) {
    .main-page .container-content {
        display: block;
        padding-top: 95%;
        overflow: auto;
    }
}

@media(max-width: 768px) {
    .flipdown {
        zoom: 0.8;
    }
}

@media(max-width: 480px) {
    .flipdown {
        zoom: 0.7;
    }
}

@media(max-width: 360px) {
    .flipdown {
        zoom: 0.6;
    }

    .main-page .container-content .content .title .text-1 {
        font-size: 54px;
    }

    .main-page .container-content .content .title .text-2 {
        font-size: 54px;
    }

    .main-page .container-content .content .title .text-3 {
        font-size: 54px;
    }
}