/*============== General ==============*/
@font-face {
    font-family: 'Donitta';
    src: url('https://undangandigitalbali.com/assets/fonts/donitta.woff') format('woff');
    font-weight: normal;
	font-style: normal;
	height: 100%;

}

*:focus {
	outline: none!important;
}

body {
	font-family: 'Alice', serif;
	font-size: 20px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}

h1 {
	font-size: 32px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

section h2,
footer h2 {
    font-size:42px;
}

ul {
	margin: 0;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
}

svg {
	max-width: 100%;
}

a:hover,
a:focus {
	text-decoration: none;
}

/*============== Animations ==============*/
@-webkit-keyframes pulse {
    0% {-webkit-transform: scale(0.2, 0.2); opacity: 0;}
    50% {opacity: 1;}
    100% {-webkit-transform: scale(1.5, 1.5); opacity: 0;}
}

.animation-pulse {
	animation: pulse 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
}

/* 1.2 Icons */
.icon {
	transition: color .4s ease;
}

.icon--sm {
	font-size: 20px;
}

.icon--md {
	font-size: 30px;
}

.icon--lg {
	font-size: 50px;
}

.icon--xl {
	font-size: 70px;
}

.icon--primary {
	color: #ffd7d7;
}

.icon--white {
	color: #fff;
}

.icon--black {
	color: #000;
}

.icon:hover {
	color: #ffd7d7;
}

/* fix for IE */
.icon--sm {
	width: 20px;
	height: 20px;
}

.icon--md {
	width: 30px;
	height: 30px;
}

.icon--lg {
	width: 50px;
	height: 50px;
}

.icon--xl {
	width: 70px;
	height: 70px;
}

.icon svg {
	fill: currentColor;
	display: block;
	width: 100%;
	height: 100%;
}

.icon .icon-inner {
	display: block;
	width: 100%;
	height: 100%;
}

/*============== Utilities ==============*/

/* fonts */
.font-script {
    font-family: 'Donitta', cursive;
    font-size: 46px;
    word-spacing: -5px;
}

/* borders */
.border-b-grey {
	border-bottom: 1px solid #e5e5e5;
}

/* backgrounds */
.bg-grey {
    background-color: #f3eddf;
}

.bg-white {
	background-color: #fff;
}

.bg-primary {
	background-color: #ffd7d7;
}

/* margins */
.cmb-1 {
	margin-bottom: 10px;
}

.cmb-2 {
	margin-bottom: 20px;
}

.cmb-3 {
	margin-bottom: 30px;
}

.cmb-5 {
	margin-bottom: 50px;
}

.cmb-8 {
	margin-bottom: 80px;
}

.cmt-2 {
	margin-top: 20px;
}

.cmt-3 {
	margin-top: 30px;
}

.cmt-5 {
	margin-top: 50px;
}

.cmt-n-3 {
	margin-top: -30px;
}

/*============== Hero ==============*/
header {
    position: relative;
}

.hero {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	height: 56vh;
	color: #fff;
	position: relative;
}

.hero--slide1 {
	background-image: url('../img/hero1.jpg'); /* Change to your image here */
}

.hero--slide2 {
	background-image: url('../img/hero2.jpg'); /* Change to your image here */
}

.hero--slide3 {
	background-image: url('../img/hero3.jpg'); /* Change to your image here */
}

.hero-body {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: center;
    color: #FFF;
}

.hero__title {
    font-size: 44px;
    margin-bottom: 0;
    word-spacing: -6px;
}

.hero__date {
	font-size: 20px;
	font-weight: 500;
    margin-bottom: 2px;
}

.shape {
    overflow: hidden;
    position: absolute;
    left: -50px;
    bottom: -5px;
    width: 165%;
    line-height: 0;
    direction: ltr;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.shape svg {
    display: block;
    width: calc(265% + 1.3px);
    height: 50px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.shape-fill {
    fill: #fff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

@media(min-width: 768px) {
    .hero {
		min-height: 90vh;
	}
	
	.hero__title {
		font-size: 64px;
	}
	
	.shape svg {
        width: calc(166% + 1.3px);
        height: 72px;
    }
    
    .shape {
        width: 145%;
        bottom: -4px;
    }
}

@media(min-width: 992px) {
    .hero-body {
        bottom: 80px;
    }

	.hero {
		min-height: 100vh;
	}
	
	.shape svg {
        width: calc(100% + 1.3px);
    }
    
    .shape {
        width: 110%;
        bottom: -3px;
    }
}

/*============== Navigation ==============*/
.nav {
	position: sticky;
	position: -webkit-sticky;
	background-color: #fff;
	top: 0;
	z-index: 999;
}

.nav-list {
	text-align: center;
}

.nav-list li {
	display: inline-block;
	padding: 0 18px;
}

.nav-list__link {
	display: inline-block;
	padding: 14px 0;
	text-transform: uppercase;
	color: #414141;
	letter-spacing: 0.5px;
	font-size: 16px;
	border-bottom: 1px solid #fff;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.nav-list__link.active,
.nav-list__link:hover,
.nav-list__link:focus {
	border-bottom: 1px solid #000;
	color: #000;
}

@media(min-width: 992px) {
	.nav-list li {
		padding: 0 25px;
	}
}

/* Mobile navigation */
.mobile-nav {
	position: absolute;
	top: 0;
	left: 0;
    right: 0;
    background: #fff;
    text-align: center;
    z-index: 999;
}

.mobile-nav__trigger {
	position: absolute;
    right: 10px;
    top: 10px;
}

.mobile-nav-list {
	display: none;
	padding: 47px 0;
	width: 90%;
	max-width: 350px;
    margin: 0 auto;
    list-style: none;
}

.mobile-nav-list__link {
	display: block;
	padding: 14px 0;
	text-transform: uppercase;
	color: #414141;
	font-size: 16px;
	border-bottom: 1px solid #9e9e9e;
}

.mobile-nav-list li:last-of-type .mobile-nav-list__link {
	border-bottom: 0;
}

/*============== Mempelai ==============*/
.mempelai {
    margin-top: -50px;
}

.mempelai-foto{
	padding: 40px 80px 20px;
}

.mempelai-foto img{
	border-radius: 255px;
}

.mempelai-bunga {
    text-align: center;
}

.mempelai-bunga img {
    width: 160px;
}

.mempelai-panggilan {
    margin-top: -90px;
	color: #CFB577;
	text-align: center;
}
	
.mempelai-nama {
    text-align: center;
    line-height: 1em;
    font-size: 24px;
    font-weight: 600;
    margin-top: -16px;
	margin-bottom: 60px;
}

.mempelai-detail {
    text-align: center;
    font-size: 19px;
    margin-bottom: 12px;
}

.mempelai-ortu {
    text-align: center;
    font-weight: 600;
    margin-bottom: 12px;
}

.mempelai-alamat {
    text-align: center;
    margin-bottom: 52px;
}



@media(max-width: 768px) {
	.mempelai-foto{
		padding: 50px 50px 10px;
	}
}

@media(mix-width: 768px) {
    .mempelai-bunga img {
        width: 160px;
    }
}

@media(min-width: 992px) {
    .mempelai-bunga img {
        width: 180px;
    }
}

/*============== Intro ==============*/
.intro {
	margin: 40px 0 70px;
}

.intro-content .icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 9;
}

.intro-content__text {
	padding: 30px;
}

.intro-content__text h4 {
	font-weight: 600;
	font-style: initial;
	margin-bottom: 15px;
}

.intro-content__col {
	margin: 5px;
}

.intro-content__img {
	height: 100%;
	min-height: 260px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}

@media(min-width: 992px) {
	.intro-content__col {
		width: 50%;
		position: relative;
	}

	.intro-content__img {
		min-height: 360px;
	}

	.intro-content__text {
		opacity: 0;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		padding: 35px 60px;
		-webkit-transition: opacity .4s ease;
		transition: opacity .4s ease;
	}

	.intro-content__col:hover .intro-content__text {
		opacity: 1;
	}
}

/*============== Counter ==============*/
#countdown {
	padding: 90px 0;
}

.counter-list {
	list-style: none;
	text-align: center;
	margin-top: 38px;
}

.counter-list__item {
    width: 25%;
    float: left;
    text-align: center;
    padding: 4px;
}

.counter-box {
    background-color: #a0977e;
    border-radius: 10px;
    padding: 12px 0;
    color: #F1F1F1;
}

.counter-list__item .counting {
    display: block;
    margin: 0 auto;
    font-size: 40px;
    line-height: 1em;
}

.counter-list__item p {
    display: block;
    text-align: center;
    font-size: 24px;
    margin: 0;
}

@media(max-width: 768px) {
    .counter-list {
	    margin-top: 18px;
	}
	
    .counter-list__item .counting {
        font-size: 30px;
    }
    
    .counter-list__item p {
        padding: 0 0 6px;
        font-size: 14px;
    }
}

@media(min-width: 992px) {
	.counter-list__item .icon {
		top: 40%;
	}

	.counter-list__item .counting {
		font-size: 50px;
	}
	
	.counter-list__item p {
        padding: 0 0 6px;
        font-size: 16px;
    }
}


/*============== Story ==============*/
.stories {
	padding: 90px 0 30px 0;
}

.stories__title {
	margin-bottom: 50px;
}

.stories__img {
	/*border: 10px solid #fbfbfa;
	padding: 5px;*/
}

.stories .icon {
	margin-bottom: 14px;
    margin-left: 4px;
}

.slider-list {
	list-style: none;
	margin-bottom: 25px;
}

.slider-list .slick-list {
	padding-top: 25px!important; /* Because of margin-top: -25 on current slick item */
}

.slider-list__item {
	text-align: center;
	transition: transform .4s ease;
	-webkit-transition: transform .4s ease;
}

.slider-list__item.slick-current {
	transform: translateY(-25px);
	-webkit-transform: translateY(-25px);
	-ms-transform: translateY(-25px);
}

.slider-list__item img {
	width: 100%;
	max-width: 380px;
	margin-bottom: 20px;
	display: inline!important;
	transition: box-shadow .4s ease;
	-webkit-transition: box-shadow .4s ease;
}

.slider-list__item p {
	font-size: 20px;
	margin-bottom: 0px;
	display: none;
}

.slider-list__item.slick-current img {
	-webkit-box-shadow: 4px 21px 29px -8px rgba(161,161,161,1);
	-moz-box-shadow: 4px 21px 29px -8px rgba(161,161,161,1);
	box-shadow: 4px 21px 29px -8px rgba(161,161,161,1);
}

.slider-list__item.slick-current p {
	display: block;
}

.slider-arrows {
	justify-content: center;
}

.slider-arrows .icon {
	padding: 0 5px;
	margin-top: 5px;
}

.slider-arrow {
	cursor: pointer;
}

.slider-arrow svg path {
	stroke: #b1b1b1;
	transition: stroke .4s ease;
	-webkit-transition: stroke .4s ease;
}

.slider-arrow:hover svg path {
	stroke: #ffd7d7;
}

@media(min-width: 768px) {
	.slider-list__item img {
		max-width: 300px;
	}
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    width: 60px;
    height: 50px;
    background-color: #000;
    border-radius: 2px;
    color: #FFF;
    line-height: 58px;
    margin: 0 8px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #000;
}

/* 11.1. Masonry grid */
.grid-item,
.grid-sizer {
	width: 100%;
}

.grid-item {
	margin-bottom: 4%;
}


@media(min-width: 576px) {
	.grid-item,
	.grid-sizer {
		width: 46%;
	}

	.gutter-sizer {
		width: 4%;
	}
}

@media(min-width: 768px) {
	.grid-item,
	.grid-sizer {
		width: 31.333%;
	}

	.grid-item {
		margin-bottom: 3%;
	}

	.gutter-sizer {
		width: 3%;
	}
}

.story-timeline {
	padding: 50px 0;
	position: relative;
}

.story-timeline__text {
	padding: 30px 0;
	position: relative;
	z-index: 9;
}

.story-timeline__text h4 {
	font-style: initial;
	font-weight: 600;
	margin-bottom: 15px;
	position: relative;
}

@media(min-width: 768px) {
	.story-timeline__col {
		width: 50%;
	}

	.story-timeline__col--left {
		padding-right: 45px;
		position: relative;
	}

	.story-timeline__col--left .story-timeline__text {
		text-align: right;
	}

	.story-timeline__col--right {
		padding-left: 45px;
	}

	.story-timeline__col--left:after {
		content: "";
		position: absolute;
		right: 0;
		top: 0;
		width: 1px;
		height: 100%;
		background-color: #dfdfdf;
	}

	.story-timeline__text {
		padding: 50px 0;
	}

	.story-timeline__text h4:before {
		content: "";
		position: absolute;
		height: 1px;
		background: #dfdfdf;
		left: -33px;
		width: 26px;
		top: 14px;
	}

	.story-timeline__col--left h4:before {
		left: auto;
		right: -33px;
	}

	.story-timeline__text .icon {
		position: absolute;
		left: -56px;
		padding: 3px 0;
		margin-top: 2px;
		top: 0;
	}

	.story-timeline__col--left .icon {
		left: auto;
		right: -55px;
	}
}

@media(min-width: 992px) {
	.story-timeline__text h4 {
		padding-left: 78px;
	}

	.story-timeline__col--left h4 {
		padding-right: 78px;
	}

	.story-timeline__text h4:before {
		width: 100px;
	}
}

/*============== Video ==============*/
.video {
	padding: 0 0 70px 0;
}

/*============== Quote ==============*/
.section-quote {
	padding: 0px 0 110px;
	position: relative;
}

.quote-box {
    background-image: linear-gradient(transparent, #BEB69F);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0px 5px 10px 0px #eef5f7b3;
}

.quote__text {
	font-size: 20px;
	line-height: 1.5;
	text-align: center;
}

.quote-name {
    font-size: 23px;
    font-weight: 600;
}

/*============== Acara ==============*/
#acara {
	padding: 0;
}

#acara .container {
    max-width: 100%;
}

#acara .font-script {
    width: 100%;
}

.acara {
    padding: 60px 0 0;
    background-color: #e4dcc9;
}

.kami {
    background-color: #f3eddf;
    padding: 0 15px 80px;
}

.acara .grad {
    background-image: linear-gradient(transparent, #f3eddf);
    width: 100%;
}

.acara-box {
	padding: 0 4px;
}

.acara-details {
    background-color: #ffffff80;
    padding: 40px 4px 32px;
    border-radius: 20px;
}

.acara-box .acara-icon {
    text-align: center;
}

.acara-box .acara-icon .wedding-icon,
.acara-box .acara-icon .resepsi-icon{
    width: 80px;
}

.acara-details{
    margin: 10px;    
}

.acara-title {
    font-size: 48px;
    margin-bottom: 6px;
    word-spacing: -4px;
}

.acara-detail {
    margin-bottom: 8px;
    font-style: italic;
}

.acara-alamat {
    font-size: 22px;
    font-style: italic;
}

.acara-alamat span {
    font-size: 19px;
}

.acara__text {
	padding: 35px 30px;
}

.acara__text h6 {
	color: #5f5f55;
	font-size: 16px;
}

.acara__text h3 {
	position: relative;
	margin-bottom: 28px;
	font-weight: 600;
}

.acara__text h3:after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 72px;
	background: #aeaeae;
	height: 1px;
}

.acara__img {
	display: block;
	margin-bottom: 30px;
}

@media(min-width: 992px) {
	.acara__text--sm {
		max-width: 90%;
	}

	.acara__img--sm {
		max-width: 90%;
	}
}

.see-location-btn {
    display: inline-block;
    color: #ffffff;
    background-color: #C2AB68;
    border: 0;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 32px;
    margin: auto;
    cursor: pointer;
    transition: background-color .3s ease;
    -webkit-transition: background-color .3s ease;
}

.see-location-btn:hover{
	color: #ffffff;	
}

.kami p {
    width: 100%;
}

/*============== Ucapan ==============*/
.ucapan {
    padding: 70px 0 70px 0;
}

.scroll{
    max-height: 400px;
    padding: 12px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-align: left;
}

@media(min-width: 768px) {
	.scroll{
	    width: 80%;
        margin: auto;
    }
}

.row_ucapan {
    margin-bottom: 24px;
}

.row_ucapan .nama {
    padding-left: 20px;
    font-weight: 600;
    margin-top: -4px;
    font-size: 17px;
}

.row_ucapan .hadir {
    padding-left: 20px;
    font-size: 15px;
    margin-top: -6px;
    font-style: italic;
}

.row_ucapan .ucapan {
    margin: 10px 10px 0;
    background: #f3eddf;
    padding: 20px 24px;
    position: relative;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-style: italic;
}

.row_ucapan .ucapan:before, 
.row_ucapan .ucapan:after {
	content: "\201C";
	position: absolute;
	font-size: 20px;
	padding: 10px;
	line-height: 1;
	color: #000;
}

.row_ucapan .ucapan:before {
	top: 0;
	left: 4px;
}
.row_ucapan .ucapan:after {
	content: "\201D";
	right: 4px;
	bottom: -.5em;
}

.row_ucapan .quote {
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
    border-top: 16px solid #f3eddf;
    margin: 0 0 0 40px;
    margin-bottom: 2px;
}

/* width */
.scroll::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.scroll::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.scroll::-webkit-scrollbar-thumb {
  background: #a0977e; 
}

/* Handle on hover */
.scroll::-webkit-scrollbar-thumb:hover {
  background: #a0977e; 
}

.rsvp-box .rsvp-form {
	margin-top: 50px;
}

.rsvp-form input,
.rsvp-form textarea,
.rsvp-form select {
	width: 100%;
	font-style: initial;
	color: #1c1c1c;
	padding: 5px 10px;
	margin-bottom: 15px;
	border-radius: 0;
	background-color: transparent;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea{
    border: 0;
    border-bottom: 1px solid #a0977e;
    background-color: #f3eddf;
    border-radius: 4px;
}

.rsvp-form select {
    background: none;
    border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	color: #5f5f55;
}

input[type="radio"] + label{
    font-size: 16px;
    font-weight: inherit;
    font-family: inherit;
    text-transform: none;
    width: initial;
    padding-top: 0;
    padding-bottom: 0;
    float: none;
    margin-bottom: 5px;
    display: block;
    position: relative;
    padding-left: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

input[type="radio"], input[type="checkbox"] {
    display: none;
}

input[type="radio"] + label:not(:last-child){
  margin-right: 25px;
}

input[type="radio"] + label::before,
input[type="radio"] + label::after{
  content: "";
  display: block;
  position: absolute;
}

input[type="radio"] + label::before{
  background: transparent;
  border: 1px solid #a0977e;
  left: 0;
  top: 2px;
}

input[type="radio"] + label::before{
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

input[type="radio"] + label::after{
  opacity: 0;
  visibility: hidden;
}

input[type="radio"] + label::after{
    left: 6px;
    top: 8px;
    border-radius: 50%;
    background-color: #a0977e;
    width: 8px;
    height: 8px;
}


input[type="radio"]:checked + label::after{
  opacity: 1;
  visibility: visible;
}

.rsvp-form-field {
	position: relative;
	text-align: left;
}

.rsvp-form-field label{
	margin-left: 10px;
	margin-bottom: 4px;
}

.rsvp-form-field__error {
	display: none;
	font-size: 15px;
	color: #c64141;
	font-style: initial;
	position: absolute;
	bottom: -18px;
	left: 5px;
}

.rsvp-form input.error {
	border-bottom: 1px solid #c64141;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #5f5f55;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #5f5f55;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #5f5f55;
}
:-moz-placeholder { /* Firefox 18- */
	color: #5f5f55;
}

.rsvp-form-submit {
    display: block;
    width: 66%;
    color: #ffffff;
    background-color: #C2AB68;
    border: 0;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 12px;
    margin: auto;
    cursor: pointer;
    transition: background-color .3s ease;
    -webkit-transition: background-color .3s ease;
}

.rsvp-form-submit .icon {
	display: none;
	position: absolute;
}

.rsvp-confirmation {
	display: none;
}

.rsvp-form__right {
	margin-top: 10px;
}

@media(min-width: 768px) {
	.rsvp-form__left {
		width: 45%;
	}

	.rsvp-form__right {
		width: 49%;
		margin-top: 0;
	}

	.rsvp-form select {
		margin-bottom: 0;
	}

	.rsvp-form-submit {
		max-width: 300px;
	}

	.rsvp-form-submit .icon:first-of-type {
		left: 100px;
	}

	.rsvp-form-submit:hover .icon {
		display: inline;
	}
}

/* MUSIC */
#buttonmusic {
    position: fixed;
    bottom: 20px;
    padding: 10px 13px 3px 13px;
    background-color: #C2AB68;
    right: 20px;
    color: #fff;
    font-size: 26px;
    border-radius: 25px;
    z-index: 3;
}

/*============== Footer ==============*/
.footer {
	padding: 50px 0 20px;
    background-image: linear-gradient(transparent, #f3eddf);
    width: 100%;
}

.footer .heading {
    font-size:24px;
    font-weight: 600;
}

.footer .protokol {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .protokol-item {
    text-align: center;
    margin-bottom: 10px;
    padding-right: 5px;
    padding-left: 5px;
}

.footer .protokol-item img{
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.footer .protokol-item p{
    font-size: 14px;
}

@media(max-width: 768px) {
	.footer .protokol-item{
	    width: 33.3%;
	}
}

.footer .icon {
	margin: 0 -2px;
}

.footer__social {
	list-style: none;
	margin-top: 30px;
}

.footer__social li {
	display: inline-block;
	margin: 0 5px;
}

.footer__copy {
	font-size: 16px;
}

/* MODAL */
.modal {
    background-color: #fffdf8;
    background-image: url(../img/bg-modal.png);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    /*background-image: linear-gradient(transparent, #f3eddf);*/
}

.modal-open .modal {
    overflow: hidden;
}

.modal.show .modal-dialog {
    position: relative;
    margin: 0 auto;
    height: 100vh;
}

.modal-img-right{
    position: absolute;
    right: -50px;
    top: -50px;
    width: 260px;
}

.modal-img-left {
    position: absolute;
    bottom: -35px;
    left: -50px;
    width: 270px;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color:transparent;
    background-clip: padding-box;
    border: none;
    border-radius: .3rem;
    outline: 0;
    top: 8%;
    text-align: center;
}

.modal-foto {
    position: relative;
    width: 30vh;
    margin: 0 auto;
    margin-bottom: 20px;
}

.modal-foto .frame {
    width: 100%;
    text-align: center;
}

.modal-foto .frame img {
    padding: 4px;
    border-radius: 50%;
}

.modal-foto .frame-1 {
    position: absolute;
    bottom: -1%;
    z-index: 9;
    width: 100%;
}

.modal-foto .daun-1 {
    position: absolute;
    left: 5%;
    top: -3%;
    z-index: 999;
    width: 80px;
}

.modal-foto .daun-2 {
    position: absolute;
    right: 3%;
    bottom: -6%;
    z-index: 999;
    width: 110px;
}

@media(min-width: 768px) {
    .modal-foto .daun-1 {
        left: 5%;
        top: -2%;
        width: 75px;
    }
    
	.modal-foto .daun-2 {
        right: 2%;
        bottom: -8%;
        width: 105px;
    }
}

@media(min-width: 992px) {
    .modal-foto .daun-1 {
        left: 0%;
        top: 0%;
        width: 80px;
    }
    
	.modal-foto .daun-2 {
        right: 2%;
        bottom: -7%;
        width: 100px;
    }
}

.modal-body {
	padding: 40px 0 30px;
    position: relative;
    width: 100%;
    pointer-events: auto;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    border-radius: .3rem;
    outline: 0;
}

.heading-modal {
	font-size:22px;
	margin-bottom:16px;
	margin-top: -10px;
}

.modal-penerima{
    font-weight: 600;
    font-size: 24px;
    margin-top: 8px;
    margin-bottom: 2px;
}

.modal-dari {
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 4px;
    word-spacing: -4px;
}

.modal-dari span{
    font-size: 36px;
    font-family: 'Dustart', cursive;
}

.paragraph-modal {
    margin-bottom: -5px;   
}

.btn-modal {
    bottom: 0;
    color: #ffffff;
    background-color: #C2AB68;
    border: 0;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 34px;
    margin: auto;
    margin-top: 8px;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color .3s ease;
    -webkit-transition: background-color .3s ease;
}

@media (min-width: 576px){
.modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}
}

.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
width: 100% !important;
}