/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@400;500;600;700&display=swap');
@import url("https://fonts.googleapis.com/css?family=Merienda:300,400,500,700,800,900|Euphoria Script:300,400,500|Amaranth|Salsa|Saira");

:root {
    --primary: #103638;
    --secondary: #E8D28C;
	--tertiary: #057A8C; 
    --light: #FFFFFF;
    --dark: #6B6B6B;
    --black: #000000;
    --f-croissant-one: 'Croissant One', serif;
    --f-open-sans: 'Open Sans', sans-serif;
    --f-salsa:'Salsa', cursive;
    --f-cormorant-infant: 'Cormorant Infant', serif;
    --fonts-merienda: "Merienda";
}

body {
    font-family: var(--f-croissant-one);
    font-size: 1rem;
    color: var(--light);
	background: #FFF4EE;
}

/*** Heading ***/
h1,
h2
 {
    font-weight: 700 !important;
    color: var(--light);
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
    color: var(--light);
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
    color: var(--light);
}

p {
    margin-bottom: 0;
}

a:hover {
    color: var(--light);
}

.fw-bold {
    font-weight: 700 !important;
}


/*** Gradient Text & BG ***/
.txt-first {
    color: var(--primary) !important;
}

.bg-first {
    background-color: var(--primary);
    color: var(--light);
}

.bg-second {
    background-color: var(--secondary);
    color: var(--light);
}

.txt-second {
    color: var(--secondary) !important;
}

.bg-third {
    background-color: var(--tertiary);
    color: var(--light);
}

.txt-third {
    color: var(--tertiary) !important;
}


.rounded-10 {
    border-radius: 10px;
}

.rounded-20 {
    border-radius: 20px;
}

.w-fit {
	width: fit-content;
}

.fs-12 {
	font-size: 12px;
}

.fs-14 {
	font-size: 14px;
}

.z-1 {
    z-index: 1;
}
.z-2 {
    z-index: 2;
}
.z-3 {
    z-index: 3;
}


.f-open-sans{
    font-family: var(--f-open-sans);
}
.f-croissant-one{
    font-family: var(--f-croissant-one);
}


/*** Button ***/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Custom ***/



/* POPUP Undangan */
.popup-undangan .card-image-slider .card-image img {
    width: 100%;
}

.popup-undangan .card-content-wedding.core-00 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    height: 100vh;
}

.popup-undangan .card-content-wedding .px-3 {
    width: 100%;
}


.popup-undangan .card-content-wedding .end {
    font-size: 6rem;
    font-weight: 700;
}

.popup-undangan .card-content-wedding .card-name.men::before {
    content: "";
    background: var(--light);
    width: 80%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.popup-undangan .card-content-wedding .card-name h1 {
    font-family: var(--f-croissant-one);
    font-size: 1.8rem;
}

.popup-undangan .card-content-wedding .open-content img {
    filter: invert(95%) sepia(24%) saturate(2571%) hue-rotate(305deg) brightness(120%) contrast(82%);
}

.popup-undangan .card-content-wedding .open-content .guest-name {
    font-size: 1.5rem;
    text-transform: capitalize;
}


.popup-undangan .card-content-wedding .open-content button {
    color: var(--secondary);
    background: var(--tertiary);
    padding: .3rem 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
}


.popup-undangan .card-content-wedding .open-content .fa-angle-double-down {
    animation: animate 2s infinite;
    color: var(--secondary);
    transition: .4s;
    font-size: 2rem;
}

.popup-undangan .card-content-wedding .open-content .fa-angle-double-down:hover {
    color: var(--light);
}

.popup-undangan .card-content-wedding .open-content .fa-angle-double-down:nth-child(2) {
    animation-delay: -0.2s;
}

.popup-undangan .card-content-wedding .open-content .fa-angle-double-down:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(0) translate(0, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(0) translate(0, 10px);
    }
}


/*** Navbar ***/
.navbar {
    transform: translateY(100%);
    transition: transform 2s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
	opacity: 0;
}

.navbar.show {
    transform: translateY(0);
	opacity: 1;
}

.navbar-light {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    transform: translateY(0);
}

.navbar-light .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    width: 100%;
    justify-content:  center;
}

.navbar-light .navbar-nav {
    border-radius: 50px;
    padding: .5rem;
	background-color: var(--tertiary);
    display: flex;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 0.2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark) !important;
    outline: none;
    text-align: center;
}

.navbar-light .navbar-nav .nav-link + .nav-link {
    margin-top: 0;
}

.navbar-light .navbar-nav .nav-link span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--secondary);
	font-weight: 600;
	opacity: 0;
	transition: .3s ease-in;
	font-size: 0.7rem;
}

.navbar-light .navbar-nav .nav-link.active span {
	opacity: 1;
	top: -50%;

}

.navbar-light .navbar-nav .nav-link .img {
    /* max-width: 45px; */
    overflow: hidden;
    padding: 0.3rem;
    border-radius: 30px;
    width: 38px;
    background: var(--secondary);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s ease;
}

.navbar-light .navbar-nav .nav-link.active .img {
	background: var(--primary);
}

.navbar-light .navbar-nav .nav-link .img img {
    max-width: 20px;
	transition: all .3 ease;
}

.navbar-light .navbar-nav .nav-link.active .img img {
	filter: brightness(0) invert(1);
}

.navbar-light .navbar-nav .nav-link p {
    font-size: .7rem;
	color: var(--primary);
}

/* .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
} */

/* .navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
} */

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
  
    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    
 

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}



.limiter {
	width: 100%;
	height: 100vh;
    position: relative;
    
}

.limiter.full-bg::before {
    content: "";
    background: var(--primary);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.container-wedding {
	width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: stretch;
    justify-content: center;
   
}

.card-image-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    background-image: url(../images/bg-tema-0717d761784524eaa5c62e8ed883c17e.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.card-content-image-slider {
    width: calc(100% - 500px);
	position: fixed;
    top: 0;
    left: 0;
	z-index: 1;
    height: 100vh;
}


.card-image-slider .popup-img-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}
.card-image-slider .popup-img-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: right;
    background-repeat: no-repeat;
}

.card-image-slider .card-image {
    width: 700px;
    height: 100%;
    background: transparent;
    border-radius: 250px 250px 0 0;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 10;
    filter: drop-shadow(0px 0px 30px #000);
    transition: .3s ease-in-out;
	display: none;
}

.card-image-slider .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image-slider .card-image .card-name-men {
    position: absolute;
    bottom: 4rem;
    left: 1rem;
    color: var(--light);
    font-size: 2.5rem;
}
.card-image-slider .card-image .card-name-girl {
    position: absolute;
    bottom: 1.5rem;
    left: 4rem;
    color: var(--light);
    font-size: 2.5rem;
    display: flex;
}

.card-image-slider .card-image .card-name-girl span {
    font-size: 2rem;
    margin-right: 1rem;
}








.card-content-wedding {
	width: 100%;
	border-radius: 2px;
	position: relative;
	/* padding: 0 20px 0 20px; */
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card-content-wedding .card-content-data {
    width: 100%;
    height: 100%;
}


.card-content-wedding .card-content-data .container-500-responsive {
    width: 500px;
}

.core-0 {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.core-00::before, .core-0::before, .core-1::before, .core-2::before, .core-3::before, .core-4::before, .core-5::before, .core-6::before {
    content: "";
    background-image: url(../images/popup-img-top-0717d761784524eaa5c62e8ed883c17e.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 55px;
    z-index: 2;
}
.core-00::after, .core-0::after, .core-1::after, .core-2::after, .core-3::after, .core-4::after, .core-5::after, .core-6::after {
    content: "";
    background-image: url(../images/popup-img-bottom-0717d761784524eaa5c62e8ed883c17e.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 55px;
    z-index: 2;
}

.core-0 .card-heading::before {
    content: "";
    background: var(--light);
    width: 70%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-open-sans);
}

.core-0 .countdown {
    padding-top: 4rem;
}

.core-0 .countdown .box {
    position: relative;
    background-image: url(../images/bg-countdown-0717d761784524eaa5c62e8ed883c17e.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
	width: 6rem;
	height: 10rem;  
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-0 .countdown .box span {
    font-size: 2rem;
}



.core-1, .core-2, .core-3, .core-4, .core-5, .core-6 {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 10rem;
    display: flex;
    justify-content: center;
}

.core-1 .card-img-bismillah img {
    filter: brightness(0) invert(1);
}

.core-1 .widget {
    padding-top: 5rem;
}

.core-1 .widget .card-image {
    width: 160px;
    height: 260px;
    border-radius: 107px;
    background: #D9D9D9;
    overflow: hidden;
}

.core-1 .widget .card-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.core-1 .widget .card-title {
    font-size: 1.7rem;
    color: var(--secondary);
    margin-left: -15px;
    margin-bottom: 1rem;
}

.core-1 .widget .card-text {
    position: relative;
    padding: .5rem 0.5rem .5rem 1.5rem;
    font-size: .7rem;
    text-align: center;
    font-family: var(--f-open-sans);
}

.core-1 .widget .card-text::before {
    content: "";
    background: var(--light);
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: -5px;
    z-index: -1;
}

.core-1 .widget .btn-sosmed {
    width: 30px;
    height: 30px;
    border-radius: 70px;
    background: var(--tertiary);
    color: var(--light);
    padding: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-1 .widget .btn-sosmed + .btn-sosmed {
    margin-left: 15px;
}



.core-2 .content .header-title h1 {
	font-size: 3.3rem;
}

.core-2 .content .header-title .save {
    font-family: var(--f-croissant-one);
    font-size: 2rem;
}
.core-2 .content .header-title .date {
    font-family: var(--f-croissant-one);
    font-size: 2rem;
}

.core-2 .content .card-content {
    border: 2px solid var(--tertiary);
    border-radius: 10px;
    color: var(--secondary);
    text-align: center;
    padding-top: 1rem;
    font-family: var(--f-open-sans);
    overflow: hidden;
}

.core-2 .content .card-content .card-day {
    font-size: 2rem;
    font-weight: 700;
}

.core-2 .content .card-content .card-date {
    font-size: 1rem;
    font-weight: 700;
    margin: .3rem 0;
}

.core-2 .content .card-content .card-hour {
    font-size: .75rem;
    font-weight: 700;
}

.core-2 .content .card-content .card-address {
    background: var(--tertiary);
    padding: .3rem;
    margin-top: .8rem;
    font-size: .7rem;
}

.core-2 .content .dividing-line::before {
    content: "";
    background: var(--light);
    width: 1px;
    height: 80%;
    position: absolute;
    top: 50%;
    left: -.5rem;
    transform: translateY(-50%);
}




.core-3 video {
	width: 100%;
	height: 200px;
	transition: .3s ease;
}

.core-3 iframe {
	width: 100%;
	height: 200px;
	transition: .3s ease;
}


.core-3 .card-box {
    background: var(--tertiary);
    padding: 1rem .5rem;
}

.core-3 .card-box .card-image {
    height: 11rem;
    max-height: 11rem;
}

.core-3 .card-box .card-small-image {
    height: 9rem;
    max-height: 9rem;
}
.core-3 .card-box .card-big-image {
    height: 17rem;
    max-height: 17rem;
}
.core-3 .card-box .card-large-image {
    height: 9rem;
    max-height: 9rem;
}

.core-3 .card-box .card-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


.core-3 .masonry {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(14, 1fr);
    row-gap: 1rem;
    column-gap: 1rem;
}

.core-3 .masonry .masonry-item {
    background: #a4a4a43b;
}

.core-3 .masonry .masonry-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    pointer-events: none;
}

.core-3 .masonry .masonry-item.cell-1 {
    grid-column: 1 / 8;
    grid-row: 1 / 6;
}


.core-3 .masonry .masonry-item.cell-2 {
    grid-column: 8 / 17;
    grid-row: 1 / 6;
}

.core-3 .masonry .masonry-item.cell-3 {
    grid-column: 1 / 10;
    grid-row: 6 / -4;
}

.core-3 .masonry .masonry-item.cell-4 {
    grid-column: 10 / 17;
    grid-row: 6 / -4;
}

.core-3 .masonry .masonry-item.cell-5 {
    grid-column: 1 / 7;
  grid-row: 12 / 16;
}

.core-3 .masonry .masonry-item.cell-6 {
    grid-column: 1 / 7;
  grid-row: 16 / 27;
}

.core-3 .masonry .masonry-item.cell-7 {
    grid-column: 17 / 7;
  grid-row: 12 / 25;
}

.core-3 .masonry .masonry-item.cell-8 {
    grid-column: 17 / 7;
  grid-row: 33 / 25;
}

.core-3 .masonry .masonry-item.cell-9 {
    grid-column: 1 / 7;
    grid-row: 27 / 33;
}

.core-3 .masonry .masonry-item.cell-10 {
    grid-column: 1 / 9;
    grid-row: 48 / 33;
}

.core-3 .masonry .masonry-item.cell-11 {
    grid-column: 9 / 17;
    grid-row: 48 / 33;
}

.core-3 .masonry .masonry-item.cell-12 {
    grid-column: 1 / 8;
    grid-row: 48 / 48;
}

.core-3 .masonry .masonry-item.cell-13 {
    grid-column: 8 / 17;
    grid-row: 49 / 48;
}

.core-3 .masonry .masonry-item.cell-14 {
    grid-column: 1 / 7;
    grid-row: 49 / 49;
}

.core-3 .masonry .masonry-item.cell-15 {
    grid-column: 1 / 7;
    grid-row: 55 / 50;
}

.core-3 .masonry .masonry-item.cell-16 {
    grid-column: 17 / 7;
    grid-row: 51 / 49;
}

.core-3 .masonry .masonry-item.cell-17 {
    grid-column: 1 / 7;
    grid-row: 55 / 55;
}

.core-3 .masonry .masonry-item.cell-18 {
    grid-column: 17 / 7;
    grid-row: 56 / 51;
}

.core-3 .masonry .masonry-item.cell-19 {
    grid-column: 1 / 7;
    grid-row: 56 / 56;
}

.core-3 .masonry .masonry-item.cell-20 {
    grid-column: 17 / 7;
    grid-row: 56 / 56;
}


.core-4 .heading h1 {
    font-family: var(--f-croissant-one);
    position: relative;
    padding-bottom: 1rem;
    line-height: 1;
}

.core-4 .heading h1::before {
    content: "";
    width: 20%;
    height: 1px;
    background: var(--light);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.core-4 .love-story {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-wrap: wrap;
}

.core-4 .love-story .love-side-story {
    width: 70%;
    padding: 1rem 1rem 1rem 0;
    text-align: center;
}

.core-4 .love-story .love-side-story .meet-time {
    font-family: var(--f-salsa);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.core-4 .love-story .love-side-story .story {
    font-family: var(--f-open-sans);
    color: var(--secondary);
}





.core-4 .love-story .image-love-story {
    position: relative;
    width: 30%;
    padding-bottom: 6rem;
    display: flex;
    justify-content: center;
}

.core-4 .love-story .image-love-story:last-child {
	padding-bottom: 0;
}

.core-4 .love-story .image-love-story::before {
    content: "";
    background: var(--tertiary);
    width: 2px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.core-4 .love-story .image-love-story:last-child::before {
    background: none;
}






.core-4 .love-story .image-love-story .card-icon::before {
    content: "";
    background: var(--light);
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: -4rem;
    left: 3.1rem;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.core-4 .love-story .image-love-story:last-child .card-icon::before {
    background: none;
}

.core-4 .love-story .image-love-story .card-icon::after {
    content: "";
    background-image: url(../../../images/image_tema/love-story-icon.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -6.5rem;
    left: 4rem;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.core-4 .love-story .image-love-story:last-child .card-icon::after {
    background: none;
}

.core-4 .love-story .image-love-story .card-image {
    width: 100px;
    height: 160px;
    border-radius: 80px;
    overflow: hidden;
    border: 2px solid var(--tertiary);
	background: var(--tertiary);
	z-index: 1;
}


.core-4 .love-story .image-love-story .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.core-5 .live .heading {
    position: relative;
    padding-bottom: .5rem;
    width: fit-content;
}

.core-5 .live .heading::before {
    content: "";
    background: var(--light);
    width: 80%;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.core-5 .live .card-box {
    border: 3px solid var(--tertiary);
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 20px;
    font-family: var(--f-cormorant-infant);
}

.core-5 .live .card-box .card-image {
    width: 80px;
    height: 80px;
    background: transparent;
}

.core-5 .live .card-box .card-brand {
	font-size: 1.5rem;
	font-weight: 600;
}

.core-5 .live .card-box .card-user {
	font-size: 1.2rem;
	font-weight: 700;
}


.core-5 .live .card-box a {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #FF0000;
}

.core-5 .live .card-box a img {
    width: 45px;
    filter: brightness(0) invert(1);
}

.zoom-in-out-box {
    animation: zoom-in-zoom-out 5s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(.8);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(.8);
    }
}


.core-5 .gift .heading h1 {
    color: var(--secondary);
    position: relative;
    width: fit-content;
    padding-bottom: .7rem;
}

.core-5 .gift .heading h1::before {
    content: "";
    background: var(--light);
    width: 70%;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.core-5 .gift .header-title h1 {
    font-size: 2.5rem;
    font-family: var(--f-croissant-one);
}

.core-5 .gift .card-text {
    font-family: var(--f-open-sans);
    font-size: 1rem;
    width: 80%;
}

.core-5 .gift .dividing-line::before {
    content: "";
    background: var(--light);
    width: 1px;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.core-5 .gift .card-content .card-icon {
    width: 130px;
    height: 80px;
}

.core-5 .gift .card-content .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.core-5 .gift .card-content button {
    font-family: var(--f-open-sans);
    width: 25%;
    flex: 0 0 auto;
    font-size: 2rem;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--light);
}

.core-5 .gift .card-content .rekening input {
    font-family: var(--f-open-sans);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: underline;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--light);
}


.copy-text input.text {
	font-weight: 800;
    border: none;
    outline: none;
    font-size: 20px;
	background-color: transparent;
}


.copy-text button {
    position: relative;
    color: var(--light);
    font-size: 16px;
    outline: none;
    cursor: pointer;
    z-index: 2;
}

.copy-text  button:active {
    background-color: var(--tertiary);
}

.copy-text button:before {
    content: "Copied";
    position: absolute;
    top: -28px;
    right: 35px;
    background-color: var(--tertiary);
    padding: 10px;
    border-radius: 20px;
    font-size: 10px;
    display: none;
	color: var(--light);
	width: 50px;
	height: 20px;
	z-index: 1;
}

.copy-text button:after {
    content: "";
    position: absolute;
    top: -12px;
    right: 55px;
    width: 8px;
    height: 8px;
    background-color: var(--tertiary);
    transform: rotate(45deg);
    display: none;
}

.copy-text.active button:before,
.copy-text.active button:after {
    display: flex;
	justify-content: center;
  	align-items: center;
}





.rekening {
    font-family: var(--f-open-sans);
}


.core-6 .card-form {
    background: #c4c4c4;
    border-radius: 10px;
    padding: 1rem;
}

.core-6 .card-form .form-control {
    border-radius: 5px;
    border: 1px solid #000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.core-6 .card-form .submit {
    padding: .3rem 1.5rem;
    color: var(--light);
    border: none;
    background: #8B8B8B;
    border-radius: 10px;
    font-family: var(--f-cormorant-infant);
}

.core-6 .list-comments .card-box {
    background: var(--light);
    border-radius: 10px;
    padding: .5rem;
	height: 100%;
    position: relative;
}

.core-6 .list-comments .card-box .card-name {
    font-size: .8rem;
    color: var(--black);
    font-weight: 700;
}

.core-6 .list-comments .card-box .card-present {
    width: 20px;
	height: 20px;
	border-radius: 50%;
}

.core-6 .list-comments .card-box .card-text {
    color: var(--dark);
    font-size: .8rem;
    font-family: var(--f-cormorant-infant);
	height: 5rem;
	overflow-y: auto;
	scrollbar-width: thin;
}

.core-6 .list-comments .card-box .card-date {
    position: absolute;
    bottom: 15px;
    font-size: .6rem;
    color: var(--black);
    margin-top: .5rem;
}

.core-6 .closing .doa {
    color: var(--dark);
    font-size: 1.4rem;
    width: 80%;
}

.core-6 .card-title {
	text-align: center;
    font-size: 2rem;
    color: #8B8B8B;
    font-weight: 400;
    margin-top: 3rem;
}



/*** Footer ***/
footer .copyright p {
	font-size: 1.2rem;
	color: var(--light);
	font-family: var(--fonts-merienda);
}


/*** ScrollDOwn ***/
.scroll-down-btn {
	position: fixed;
	bottom: 100px;
	right: 10px;
	z-index: 9999;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--secondary);
	font-size: 2rem;
	cursor: pointer;
}


/*** Music ***/
.player {
	position: fixed;
	bottom: 70px;
  	right: 10px;
	z-index: 9999;
}

#playbtn {
	font-size: 24px;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--secondary);
	cursor: pointer;
	transition: all .35s linear;
}

#playbtn:hover {
	-webkit-text-fill-color: var(--secondary);
}
