/* UMUM */
*:focus {
	outline: none!important;
}

body {    
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	letter-spacing: 0.5px;
	background-color: #0f0f0f;
	color: #fff;
}

@media(min-width: 1200px) {
    body {    
        font-size: 16px;
    }
}

h1 {
	font-size: 42px;
}

h2 {
	font-size: 38px;
}

h3 {
	font-size: 34px;
}

h4 {
	font-size: 30px;
}

h5 {
	font-size: 26px;
}

h6 {
	font-size: 24px;
}

ul {
	margin: 0;
	padding: 0;
}

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

svg {
	max-width: 100%;
}

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

/* ANIMASI */
@-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;
}

/* ICON */
.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: #a9d2f1;
}

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

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

.icon:hover {
	color: #a9d2f1;
}

/* 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%;
}

/* PENGTURAN DASAR */

/* FONT */
.ch1 {
	font-size: 36px;
}

.ch2 {
	font-size: 32px;
}

.ch3 {
	font-size: 28px;
}

.ch4 {
	font-size: 24px;
}

.ch5 {
	font-size: 20px;
}

.heading-title {    
    font-family: "Poppins", serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1em;
    margin-top: -4px;
    margin-bottom: 10px;
}

/* BORDER */
.cborder-b-grey {
	border-bottom: 1px solid #e7e7e799;
}

/* BACKGROUND */
.cbg-grey {
	background-color: #e7e7e799;
	background-image: linear-gradient(transparent, #e7e7e799);
    background-image: url(../img/bg-pattern.png);
    background-repeat: repeat;
}

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

.cbg-primary {
	background-color: #a9d2f1;
}

.cbg-black {
	background-color: #000000;
}

/* MARGIN */
.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;
}

/* SCROLL */
.scroll-container,
.scroll-area {
    height: 100vh;
}

.scroll-container {
    overflow: auto;
    scroll-snap-type: y mandatory;
}

.scroll-area {
    scroll-snap-align: start;
}

.scroll-container,
.scroll-area {
    margin: 0 auto;
}

.scroll-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-container {
    display: none;
    position: relative;
}

.header-img {
    position: absolute;
    width: 100%;
    float: right;
    height: 100vh;
	background-image: url(../img/bg-modal.jpg);
    background-position: center top;
    background-repeat: repeat;
    background-size: cover;
    z-index: -1;
}

.header-body {
    position: absolute;
    bottom: 18%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: transparent;
    border: none;
    outline: 0;
    padding-left: 50px;
}

.header-body .hero_title {
    font-size: 50px;
}

.header-body .hero_heading {
    font-size: 18px;
}

.header-body .paragraph-modal {
    font-size: 16px;
    margin-top: 8px;
}

.header-body .modal-penerima {
    font-size: 28px;
}

@media(min-width: 992px) {
    .scroll-container {
        width: 42%;
		float: right;
    }
    
    .fixed-container {
        position: fixed;
        width: 58%;
        float: left;
        height: 100vh;
        display: block;
    }
}

@media(min-width: 1200px) {
    .scroll-container {
        width: 30%;
    }
    
    .fixed-container {
        width: 70%;
    }
}

.scroll-down {
    opacity: 1;
    -webkit-transition: all .5s ease-in 3s;
    transition: all .5s ease-in 3s;
}

.scroll-down {
    position: absolute;
    bottom: 75px;
    left: 50%;
    margin-left: -14px;
    display: block;
    width: 28px;
    height: 28px;
    border: 2px solid #FFF;
    background-size: 14px auto;
    border-radius: 50%;
    z-index: 2;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.scroll-down:before {
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 5px);
    transform: rotate(-45deg);
    display: block;
    width: 10px;
    height: 10px;
    content: "";
    border: 2px solid white;
    border-width: 0px 0 2px 2px;
}

@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
        60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@media(min-width: 768px) {
    .scroll-down {
        bottom: 60px;
    }
}

/* HERO */
#header {
    position: relative;
}

.js-hero-slider {
    width: 100%;
}

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

.hero--slide1 {
	background-image: url('../img/bg-hero1.jpg');
}

.hero--slide2 {
	background-image: url('../img/bg-hero2.jpg'); 
}

.hero--slide3 {
	background-image: url('../img/bg-hero3.jpg');
}

.hero-top{    
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.hero-body{
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.hero_heading {
    font-family: "Poppins", Sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hero_title {
    font-family: "Poppins", serif;
	font-size: 32px;
	font-weight: 700;
    letter-spacing: -0.2px;
	line-height: 1em;
    margin-top: -4px;
    margin-bottom: 4px;
}

.header-img {
    padding: 0 60px;
}

.header-img img {
    width: 34vh;
}

.hero_text {
    margin-top: -6px;
    margin-bottom: 6px;
}

.hero_date {
    font-size: 14px;
    font-style: initial;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero_ornament {
	width: 100px;
}

.hero_ornament_down {
	margin-top: -12px;
}

.kepada-tamu {
    font-size: 23px;
    margin-bottom: -5px;  
}

.kepada-tamu-gelar {
    font-size: 20px;
    margin-bottom: 0;  
}

@media(min-width: 768px) {
    .hero-top{    
        top: 100px;
    }
    
    .hero-body{
        bottom: 120px;
    }
}

/* INTRO */
#intro {
    position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	color: #fff;
	min-height: 100vh;
	background-image: url('../img/hero1.jpg');
}

.intro-body {
    position: absolute;
    bottom: 100px;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.intro .heading-title {
    color: #fff;
}

.intro .paragraph {
	font-family: "Cormorant Garamond", serif;
	letter-spacing: 1px;
    font-size: 18px
}

/* MEMPELAI */
#mempelai-pria,
#mempelai-wanita {
    position: relative;
}

.pria-slider {
    width: 100%;
}

.pria {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	color: #fff;
	min-height: 100vh;
    position: relative;
    opacity: .7;
}

.pria--slide1 {
	background-image: url('../img/bg-groom1.jpg');
}

.pria--slide2 {
	background-image: url('../img/bg-groom2.jpg'); 
}

.pria--slide3 {
	background-image: url('../img/bg-groom3.jpg');
}

.wanita-slider {
    width: 100%;
}

.wanita {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	color: #fff;
	min-height: 100vh;
    position: relative;
    opacity: .7;
}

.wanita--slide1 {
	background-image: url('../img/bg-bride1.jpg');
}

.wanita--slide2 {
	background-image: url('../img/bg-bride2.jpg'); 
}

.wanita--slide3 {
	background-image: url('../img/bg-bride3.jpg');
}

.mempelai {
    margin: 0 auto;
}

.mempelai-foto{
    position: relative;
    text-align: center;
}

.mempelai-img {
    padding-right: 30px;
    padding-left: 30px;
}

.mempelai-info {
    position: absolute;
    bottom: 100px;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

@media(min-width: 768px) {
    .mempelai-info {
        bottom: 120px;
    }
}
	
.mempelai-nama {
    font-size: 24px;
    font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 4px;
    text-transform: uppercase;
}

.mempelai-detail {
    font-size: 15px;
    line-height: 1.5em;
}

.mempelai-ortu {
    line-height: 1.5em;
    font-size: 16px;
	margin-top: 4px;
}

.mempelai-alamat {
	margin-top: 6px;
}

@media(min-width: 768px) {
    .mempelai-info {
        bottom: 140px;
    }
}

/* HITUNG MUNDUR */
#countdown {
	position: relative;
    background-image: url(../img/bg-countdown.jpg); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
}

.countdown-top {    
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.countdown-body {
    position: absolute;
    bottom: 100px;
    width: 100%;
    padding: 0 20px;
}

@media(min-width: 768px) {
    .countdown-top{    
        top: 100px;
    }
    
    .countdown-body{
        bottom: 120px;
    }
}

.countdown-box {
    position: relative;
    box-sizing: border-box;
    background-color: #fff;
    height: 660px;
    background-image: linear-gradient(180deg,transparent 40%,rgb(0 0 0 / 20%) 100%),url(../img/countdown-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.countdown-inner {
    position: absolute;
    width: 100%;
    bottom: 44px;
    padding: 0 24px;
}

.countdown-list {
    padding-right: 25px;
    padding-left: 25px;
}

.countdown .heading-text{
    color: #fff;
    margin-top: 30px;
}

.counter-list {
	list-style: none;
	text-align: center;
	margin-top: 38px;
    display: inline-block;
    padding-right: 0;
    padding-left: 0;
}

.counter-list__item {
    width: 25%;
    float: left;
    text-align: left;
}

.counter-box {
    border-radius: 20px;
    padding: 0 0 8px;
}

.counter-box {
    border-radius: 10px;
    color: #fff;
}

.counter-list__item .counting {
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1em;
    margin-bottom: -2px;
}

.counter-list__item p {
    display: block;
    font-size: 16px;
    margin: 0;
    padding: 4px 0 6px;
}

@media(max-width: 768px) {
    .countdown-box {
        height: 480px;
    }
    
    .counter-box {
    	text-align: left;
    }

    .countdown-inner {
        padding: 0;
    }
    
    .counter-list {
	    margin-top: 6px;
	}
	
    .counter-list__item .counting {
        font-size: 20px;
    }
    
    .counter-list__item p {
        padding: 4px 0 6px;
        font-size: 11px;
    }
}

@media(min-width: 992px) {
    .countdown-inner {
        padding: 0 36px;
    }

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

/* QUOTE */
#quote {
    padding: 90px 0;
    position: relative;
    background-color: #111111;
    color: #fff;
    background-image: url(../img/quote-bg.png); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
}

@media(max-width: 768px) {
    #quote {
        padding: 70px 0;
    }
}

.quote-text {
    font-size: 14px;
    font-weight: 600;
}

.quote-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.quote-arti {
    font-size: 12px;
    margin-bottom: 10px;
}


/* LOKASI */
#acara {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	color: #fff;
	min-height: 100vh;
    position: relative;
    background-image: url('../img/bg-acara.jpg');
}

.acara-top {    
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.acara-body{
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

@media(min-width: 768px) {
    .acara-top{    
        top: 100px;
    }
    
    .acara-body{
        bottom: 120px;
    }
}

.acara-title {
    font-size: 22px;
    font-weight: 700;
    margin-top: 15px;
}

.acara-tgl {    
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1em;
    margin-bottom: 2px;
}

.acara-jam, .acara-alamat {
    font-size: 15px;
}

.btn-map {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    letter-spacing: 1px;
    border-radius: 0;
    padding: 5px 12px 5px;
    margin: auto;
    margin-top: 10px;
    cursor: pointer;
}

.btn-map:hover,
.btn-map:active,
.btn-map:focus {
    color: #FFF;
    box-shadow: none;
}

/* STORY */
#galeri {
	position: relative;
    background-image: url(../img/bg-galeri.jpg); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
}

.galeri-top {    
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.galeri-box {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

@media(min-width: 768px) {
    .galeri-top{    
        top: 100px;
    }
}

.stories {
	padding: 70px 0 70px 0; 
}

.stories__title {
	margin-bottom: 50px;
}

.stories__img {
	padding: 5px;
}

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


/* MASONRY GRID */
.grid-item,
.grid-sizer {
	width: 49%;
}

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

.gutter-sizer {
	width: 1%;
}

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

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

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

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

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

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

.slider-list .slick-list {
	padding-top: 15px!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 rgb(69 69 69 / 20%);
	-moz-box-shadow: 4px 21px 29px -8px rgb(69 69 69 / 20%);
	box-shadow: 4px 21px 29px -8px rgb(69 69 69 / 20%);
}

.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;
}

/* VIDEO */
#video {
	position: relative;
    background-image: url(../img/bg-video.jpg); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
}

.video-top {    
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.video-box {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

@media(min-width: 768px) {
    .video-top{    
        top: 100px;
    }
    
    .video-box{
        bottom: 120px;
    }
}

/* BUKU TAMU */
#bgucapan {
	position: relative;
    background-image: url(../img/bg-ucapan.jpg); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
}

.ucapan-top {    
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.ucapan-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 100px 20px 50px;
    background-image: linear-gradient(#00000000, #00000070);
}

@media(min-width: 768px) {
    .ucapan-top{    
        top: 100px;
    }
}

.rsvp-form {
    margin-top: 20px;
    margin-bottom: -15px;
}

.ucapan-box .heading {
    font-family: 'Qeinsha', sans-serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    word-spacing: -1px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ucapan .alert {
    margin-top: -20px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 6px;
}

#kolom-ucapan div{
    z-index: 3;
}

#kolom-ucapan .ucapan-list {
    position: relative;
    margin-top: 40px;
    padding-right: 0px;
    padding-left: 0px;
}

.scroll{
    max-height: 160px;
    padding: 12px;
    margin-top: 16px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-align: left;
}

@media(min-width: 768px) {
	.scroll{
        margin: auto;
        max-height: 300px;
    }

}

.ucapan-list {
    padding: 0 10px 0 0;
}

.row_ucapan {
    margin-bottom: 8px;
}

.row_ucapan:last-child {
    margin-bottom: 0px;
}

.row_ucapan .card {
    background-color: #111111a8;
    box-shadow: 0 0.1rem 0.3rem rgb(0 0 0 / 15%);
    color: #fff;
    border: none;
    border-radius: 0;
}

.row_ucapan .card-body {
    padding: 2px 4px;
}

.row_ucapan blockquote{
    margin: 6px;
}

.row_ucapan .blockquote-footer {
    color: #fff;
}

.row_ucapan blockquote p{
    font-size: 11px;
    font-style: italic;
    margin-bottom: -2px;
}

.row_ucapan blockquote i {
    font-size: 26px;
}

.row_ucapan .ucapan_nama {
    font-size: 11px;
}

.row_ucapan .ucapan_nama .ucapan-hadir{
    font-size: 8px;
    font-style: italic;
}

.row_ucapan .blockquote-footer::before {
    color: #fff;
    content: "\2013 \0A0";
}

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

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

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

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

.rsvp-form input,
.rsvp-form textarea,
.rsvp-form select {
	width: 100%;
	font-style: initial;
    font-size: 13px;
	color: #FFF;
	border-radius: 0;    
	padding: 5px 10px;
    margin-bottom: 10px;
    background-color: rgb(0 0 0 / 60%);
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea{
	border: 0;
	border-bottom: none;
}

.rsvp-form input::placeholder,
.rsvp-form textarea::placeholder,
.rsvp-form select::placeholder {
    color: #f5f5f5;
}

.rsvp-form input::-ms-input-placeholder,
.rsvp-form textarea::-ms-input-placeholder,
.rsvp-form select::-ms-input-placeholder { /* Edge 12 -18 */
    color: #f5f5f5;
}

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

.radio-box{
    background-color: rgb(0 0 0 / 60%);
    border-radius: 0;
    padding: 6px 10px;
    margin-top: -7px;
    margin-bottom: 5px;
}

input[type="radio"] + label{
    font-size: 11.5px;
    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 #fff;
  left: 0;
  top: 2px;
}

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

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

input[type="radio"] + label::after{
    left: 5px;
    top: 7px;
    border-radius: 50%;
    background-color: #fff;
    width: 4px;
    height: 4px;
}

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

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

.rsvp-form-field label{
	margin-bottom: 4px;
	font-size: 13px;
}

.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;
}

.alert {
    position: relative;
    padding: 7px 20px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 0;
    font-size: 11px;
}

.rsvp-form-submit {
    font-family: "Poppins", Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    letter-spacing: 1px;
    border-radius: 0;
    padding: 5px 12px 5px;
    margin: auto;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color .3s ease;
    -webkit-transition: background-color .3s ease;
}

.rsvp-form-submit:hover,
.rsvp-form-submit:active,
.rsvp-form-submit:focus {
    color: #ffffff;
    box-shadow: none;
}

.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;
	}
}

/*FOOTER*/
#footer {
	position: relative;
    background-image: url(../img/bg-footer.jpg); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
}

.footer-top {    
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.footer-box {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

@media(min-width: 768px) {
    .footer-top{    
        top: 100px;
    }
    
    .footer-box{
        bottom: 120px;
    }
}

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

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

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

.footer__social a {
    color: #FFFFFF;
    background-color: #dcd7c959;
    border-style: none;
    border-radius: 20px;
    padding: 8px 8px 3px 8px;
}

.footer__social .icon--sm {
    width: 16px;
    height: 16px;
}

.footer__copy {
	font-size: 16px;
}

@media(min-width: 768px) {
	.footer {
		padding: 80px 0 20px;
	}
}

/* MUSIC */
#buttonmusic {
    width: 32px;
    height: 32px;
    text-align: center;
    position: fixed;
    top: 0px;
    padding: 0;
    line-height: 30px;
    right: 15px;
    z-index: 999;
    font-size: 18px;
    padding-top: 4px;
    color: #0f0f0f;
    background: #ffffff;
    border-radius: 30px;
    display: none;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .3sease;
    transition: all .3sease;
}

@media(min-width: 992px) {
    #buttonmusic {
        right: 30px;
    }
}

/* MODAL */
.modal {
    background-color: #000;
}

.modal-img {
    position: absolute;
    width: 100%;
    height: 90vh;
	background-image: url(../img/bg-modal.jpg);
    background-position: center top;
    background-repeat: repeat;
    background-size: cover;
    z-index: -1;
}

@media(min-width: 768px) {
	.modal-img {
        height: 100vh;
    }
}

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

.modal-dialog {
    position: relative;
    height: 100vh;
}

#modal_undangan .modal-content {
    position: absolute;
    bottom: 24%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: transparent;
    border: none;
    outline: 0;
}

.modal-body {
	padding: 0 12px;
    position: relative;
    width: 100%;
    pointer-events: auto;
    color: #fff;
    background-clip: padding-box;
    border-radius: 16px;
    outline: 0;
    text-align: left;
}

.heading-modal {
	font-size:32px;
	margin-bottom:20px;
}

.modal-penerima {
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 6px;
    margin-bottom: 8px;
    font-size: 17px;
}

.modal-dari {
    font-size: 32px;
    font-weight: 600;
}


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

.btn-modal {
    font-family: "Poppins", Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 10px;
    background-color: transparent;
    color: #fff;
    border: 1.5px solid #fff;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 0;
    margin: auto;
    cursor: pointer;
    transition: background-color .3s ease;
    -webkit-transition: background-color .3s ease;
}

.btn-modal:hover,
.btn-modal:active,
.btn-modal:focus {
    color: #fff;
    box-shadow: none;
}

@media(min-width: 768px) {
    .modal-body {
        text-align: center;
    }
}

@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;
	}
}

/* AMPLOP */
#amplop {
	position: relative;
    background-image: url(../img/bg-amplop.jpg); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
}

.amplop-top {    
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

.amplop-box {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: left;
    z-index: 99;
    color: #FFF;
    padding: 0 20px;
}

@media(min-width: 768px) {
    .amplop-top{    
        top: 100px;
    }
    
    .amplop-box{
        bottom: 120px;
    }
}

.modal-amplop {
    background: transparent;
    margin: 0px;
    background-image: none;
}

.modal-amplop .modal-content {
    padding: 0 12px 12px;
    height: auto;
    background-color: transparent;
    border: none;
}

.modal-amplop .modal-body {
    padding: 40px 42px 10px;
    text-align: center;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 0;
}
        
.modal-amplop .modal-title {
    padding: 0 10px;
    margin-bottom: -4px;
    font-size: 14px;
}
        
.modal-amplop .modal-text {
    font-size: 12px;
    margin-bottom: 10px;
}

.modal-amplop .modal-body hr {
    border-top: 1px solid #000;
    width: 80%;
    margin-top: 24px;
    margin-bottom: 20px;
}

.modal-amplop .modal-header {
    background-color: #fff;
    color: #000;
}
        
.modal-close{
    position: absolute;
    right: 10px;
    top: 0px;
    background: transparent;
    border: none;
    font-size: 30px;
    z-index: 999;
}

.box-gift {
    text-align: center;
    background: #ebebeb;
    margin: 20px 0;
    padding: 14px 8px 16px;
    border-radius: 0;
}

.box-gift .card-title img {
    width: 150px;
    margin-bottom: -12px;
}

.box-gift .btn-map {
    font-size: 10px;
    margin-top: -1px;
    padding: 6px 24px;
    border: 1.5px solid #000000;
}

.box-gift .alert-success {
    margin: -8px auto 10px;
    font-size: 11px;
    padding: .25rem .75rem;
    max-width: 260px;
}

.num-temp {
    height: 0;
    opacity: 0;
}

