/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Euphoria+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira&display=swap');


:root {
    --primary: #916DB3;
    --secondary: #6B6B6B;
    --light: #FFFFFF;
    --dark: #6B6B6B;
    --black: #000000;
	--bg-color: #EFEFEF;
	--f-poppins: 'Poppins', sans-serif;
	--f-inria-sefif: 'Inria Serif', serif;
	--f-euphoria-script: 'Euphoria Script', cursive;
	--f-amaranth: 'Amaranth', sans-serif;
	--f-dancing-script: 'Dancing Script', cursive;
	--f-roboto: 'Roboto', sans-serif;
    --f-merienda: "Merienda";
	--f-merienda-one: 'Merienda One';
	--f-lobster: 'Lobster', sans-serif;
	--f-salsa: 'Salsa', cursive;
	--f-saira: 'Saira', sans-serif;
}


body {
    font-size: 1.4rem;
    color: var(--dark);
	background: var(--primary);
	font-family: var(--f-poppins);
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

p {
    margin-bottom: 0;
}


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

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

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


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

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

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

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

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


.f-inria-serif {
	font-family: var(--f-inria-sefif);
}


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


.card-btn {
	display: flex;
	justify-content: center;
}

.card-btn a, .card-btn button {
	border: none;
    background: var(--primary);
    color: var(--light);
    padding: .5rem 1.5rem;
    border-radius: 10px;
	font-size: 1rem;
	font-weight: 500;
	position: relative;
	transition: 0.3s; 
	overflow: clip;
	z-index: 2;
	display: flex;
  	align-items: center;
	width: fit-content;
}

.card-btn a i, .card-btn button i {
	font-size: 1.3rem;
}

.card-btn a::before, .card-btn button::before {
	content: "";
	background: linear-gradient(180deg, var(--primary) -31.01%, var(--secondary) 130.82%);
	width: 100%;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s ease-in-out;
	z-index: -1;
}

.card-btn a:hover::before, .card-btn button:hover::before {
	height: 100%;
}

/*** Custom ***/
.container-1000 {
    width: 100%;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
	overflow: hidden;
}

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



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

@keyframes zoom-in-zoom-out {
    0% {
		-webkit-transform: scale(1);
      	transform: scale(1);
    }
    50% {
		-webkit-transform: scale(1.05);
      	transform: scale(1.05);
    }
    100% {
		-webkit-transform: scale(1);
      	transform: scale(1);
    }
}

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

@keyframes zoom-in-out-box-flipX {
    0% {
		-webkit-transform:  scale(1) scaleX(-1);
      	transform: scale(1) scaleX(-1);
    }
    50% {
		-webkit-transform: scale(1.05) scaleX(-1);
      	transform: scale(1.05) scaleX(-1);
    }
    100% {
		-webkit-transform: scale(1) scaleX(-1);
      	transform: scale(1) scaleX(-1);
    }
}


/* POPUP Undangan */

.popup-undangan {
    /* background-image: url(../images/pop-up-eccbc87e4b5ce2fe28308fd9f2a7baf3.webp); */
    background-repeat: no-repeat;
    background-size: cover;
	background-position: 50%;
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.popup-undangan .mdl-content::before {
    content: "";
    opacity: 0.54;
	background: #780D7A;
	mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: -1;
}


.popup-undangan .mdl-content .partner h1 {
    font-family: var(--f-euphoria-script);
    font-size: 3.5rem;
    line-height: 2.5rem;
    color: var(--light);
	text-transform: capitalize;
}

.popup-undangan .mdl-content .open-content p {
    color: var(--light);
	text-transform: capitalize;
}

.popup-undangan .mdl-content .fa-angle-double-down {
    /* display: block;
    width: 3.5vw;
    height: 3.5vw;
    border-bottom: 5px solid white;
    border-right: 5px solid white;
    transform: rotate(-45deg);
    margin: -53px; */
    animation: animate 2s infinite;
    color: var(--primary);
    transition: .4s;
}

.popup-undangan .mdl-content .fa-angle-double-down:hover {
    color: var(--primary);
}

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

.popup-undangan .mdl-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 {
    transition: all 3s ease;
	opacity: 0;
	display: none;
}

.navbar.show {
	opacity: 1;
}

.navbar-light {
	position: fixed;
    width: 100%;
    top: auto;
	bottom: 15px;
    
    left: 0;
    z-index: 999;
    background: transparent;
}

.navbar-light .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}

.navbar-light .navbar-nav {
    border-radius: 20px;
    padding: .3rem;
	background: #B872FA;

}

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

.navbar-light .navbar-nav .nav-link .img {
    max-width: 35px;
	overflow: hidden;
	background: rgba(154, 7, 205, 0.70);
	padding: 0.3rem;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	/* transition: all .2s ease; */
}

.navbar-light .navbar-nav .nav-link.active .img {
	background: rgba(86, 29, 105, 0.7);
}

.navbar-light .navbar-nav .nav-link .img img {
	filter: brightness(0) invert(1);
	/* transition: all ease-in-out .2s; */
}

.navbar-light .navbar-nav .nav-link .img:hover img {
	transform: scale(1.1);
}

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

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



.header-title h1 {
    font-family: var(--f-merienda);
    color: var(--primary);
}




/*** Countdown ***/
.countdown span {
    font-size: 1.5rem;
}

.countdown p {
    font-size: 1rem;
}


/*** Sampul core-0 ***/
.core-0 {
}

.core-0 .card-border {
	position: relative;
	border-radius: 50px;
	width: 420px;
  	height: 620px;
	overflow: hidden;
	transition: .3s;
	display: flex;
	justify-content: center;
}

.core-0 .widget .card-border::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/core-0-border-eccbc87e4b5ce2fe28308fd9f2a7baf3.png) center center no-repeat;
		background-size: auto;
	background-size: auto;
	z-index: 1;
}

.core-0 .widget .card-border .card-image {
	position: absolute;
	width: 247px;
	height: 400px;
	left: 50%;
	overflow: hidden;
	top: 50%;
	right: 50%;
	bottom: 50%;
	transform: translate(-51%, -46.7%);
	background: var(--bg-color);
}

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

.core-0 .card-text {
	color: #573D26;
	font-family: var(--f-amaranth);
	font-style: italic;
	text-align: center;
	font-size: calc(0.8rem + 0.5vw);
}



.core-0 .countdown .box {
    background: var(--primary);
    font-family: var(--f-dancing-script);
    border-radius: 10px;
	color: var(--light);
	width: 60px;
	height: 80px;
	text-align: center;
	padding: 0.5rem;
	margin-left: 1rem;
	transition: .3s;
}

.core-0 .countdown .box:first-child {
	margin-left: 0;
}

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

.core-0 .countdown .box p {
    font-size: 1.2rem;
}



.core-0 .location a p {
    color: var(--light);
    font-weight: bold;
    font-size: 1rem;
	font-family: var(--f-roboto);
}

/*** Mempelai Core-1 ***/
.core-1 {
	background-image: url(../images/a.webp);
    background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	
}

.core-bg-1::before {
    content: "";
   
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
}

.core-bg-1::after {
    content: "";
    background-image: url(../images/image-2-eccbc87e4b5ce2fe28308fd9f2a7baf3.webp);
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
  	height: 100px;
}


.core-1 .content .heading .picture img {
    max-width: 250px;
}

.core-1 .content .heading .card-text {
    font-family: var(--f-amaranth);
    font-size: .9rem;
    font-style: italic;
    line-height: 1.2;
	color: var(--black);
}

.core-1 .content .widget .card-border::before {
	position: absolute;
	content: "";
	width: 300px;
	height: 100%;
	bottom: -75px;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/core-1-1-eccbc87e4b5ce2fe28308fd9f2a7baf3.svg) center center no-repeat;
		background-size: auto;
	background-size: auto;
	background-size: auto;
	background-size: 330px 320px;
	z-index: 1;
}

.core-1 .content .widget .card-image {
	background: var(--bg-color);
	width: 250px;
	height: 250px;
    border-radius: 50%;
    overflow: hidden;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	right: 50%;
	border: 4px solid #BE9050;
}

.core-1 .content .widget .card-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	transform: translate(0%, 0);
}

.core-1 .content .widget .card-body {
	padding-top: 4rem;
	padding-bottom: 0;
}

.core-1 .content .widget .card-title {
    font-family: var(--f-euphoria-script);
    font-size: calc(1.7rem + 2vw);
    line-height: 1.2;
}

.core-1 .content .widget .card-text {
    font-family: var(--f-inria-sefif);
    font-size: .9rem;
    line-height: 1.2;
}


.core-1 .content .widget .card-sosmed .btn-sosmed + .btn-sosmed {
    margin-left: .3rem;
}

.core-1 .content .widget .card-sosmed .btn-sosmed {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
}

.core-1 .and {
	font-family: 'Euphoria Script';
	padding: 1.5rem 0;
	font-size: 4rem;
  	font-weight: 700;
}


/*** Akad ***/
.core-2 {
	padding-top: 3rem;
	padding-bottom: 8rem;
}

.core-2 .header-title h1 {
	font-family: var(--f-lobster);
}

.core-2 .content .card {
    box-shadow: 0px 15px 27px rgba(0, 0, 0, 0.31);
    border-radius: 20px;
    background: var(--light);
    border: 0;
}

.core-2 .content .card .card-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: 'Merienda One';
    margin-bottom: 1.5rem;
}

.core-2 .content .card .card-day {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 400;
    font-family: var(--f-merienda);
    margin-bottom: .8rem;
}

.core-2 .content .card .card-date {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #6B6B6B;
}

.core-2 .content .card .card-address {
    font-size: .8rem;
    color: #6B6B6B;
    font-family: var(--f-inria-sefif);
    line-height: 1.1;
}


/*** Gallery Core-3***/
.core-3 {
	background-color: #F8E9F4;
	padding-top: 3rem;
	padding-bottom: 8rem;
}

.core-3 .img-bg {
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	width: 100%;
	
}

.core-3 .img-bg-2 {
	transform: rotate(180deg);
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	width: 100%;
}

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

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

.core-3 .img {
	overflow: hidden;
	border-radius: 10px;
	height: 0;
	padding-bottom: 75%; /* Set a percentage value based on your desired aspect ratio */
	position: relative;
	
}

.core-3 .img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all ease-in-out .3s;
}

.core-3 .img img:hover {
	transform: scale(1.1);
}


/*** Cerita  Core-4***/
.core-4 .love-story {
    padding-left: 1rem;
  	padding-right: 0rem;
}

.core-4 .content::before {
    content: "";
    background: var(--light);
    border: 1px dashed var(--primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: -20px;
    transition: .3s;
	z-index: 1;
}

.core-4 .content::after {
    font-family: 'icomoon';
    content: "\f004";
    color: var(--primary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: -15px;
    font-size: 15px;
    transition: .3s;
	z-index: 2;
}

.core-4 .love-side-story::after {
    content: "";
    border-right: 1px dashed var(--primary);
    position: absolute;
    top: 1rem;
  	left: -8px;
    width: 1px;
    height: 100%;
}

.core-4 .love-side-story:last-child::after {
	height: 0;
}

.core-4 .content {
    border-radius: 10px;
    padding: 0 1rem 3rem;
    color: var(--black);
    font-family: "Comic Neue", Sans-serif;
    font-size: 1.2rem;
}

.core-4 .content .meet-time {
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 600;
	font-family: var(--f-salsa);
}

.core-4 .content .story {
	font-size: 1rem;
  	line-height: 1.2;
	font-family: var(--f-saira);
}


.custom-core-4-5 .image-4 {
    position: absolute;
    bottom: 50%;
    right: -5px;
    transform: translateY(50%);
    max-height: 20%;
	opacity: .5;
}

.custom-core-4-5 .image-5 {
    position: absolute;
    bottom: 5%;
    left: -5px;
    max-height: 13%;
	transform: rotate(180deg);
	opacity: .5;
}

/*** Live Core-5***/
.core-5 .content {
    padding: 0;
	position: relative;
	z-index: 1;
}
.core-5 .content .card-text {
    color: var(--secondary);
    font-size: 1rem;
}

.core-5 .content .img {
	width: 70px;
	height: 70px;
	max-width: 70px;
	max-height: 70px;
	display: flex;
	align-items: center;
}

.core-5 .content .join-live {
    background: var(--primary);
    padding: .5rem 1rem;
    color: var(--light);
	font-size: 1.2rem;
}


/*** Amplop / Core 6 ***/
.core-6 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.core-6 .card-text {
    color: var(--secondary);
    font-size: .9rem;
}

.core-6 .img-cloud-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.core-6 .img-cloud-2 {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    transform: rotate(180deg);
}

.amplop .card {
    box-shadow: 0px 15px 27px rgba(0, 0, 0, 0.31);
    background: var(--light);
    border: none;
    color: var(--black);
}

.amplop .card-logo .bg-logo {
    max-width: 150px;
}

.amplop .card-logo {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1rem;
}

.copy-text {
    line-height: 0
}

.copy-text input.text {
    color: #555;
    border: none;
    outline: none;
    width: 122px;
    font-size: 20px;
    color: var(--black);
}

.copy-text button {
    position: relative;
    padding: 8px 10px;
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
}

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

.copy-text button:before {
    content: "Copied";
    position: absolute;
    top: -28px;
    right: 35px;
    background: var(--primary);
    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: var(--primary);
    transform: rotate(45deg);
    display: none;
}

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

.copy-text p {
    font-size: .8rem;
    color: var(--secondary);
}


/*** Ucapan / Core 7 ***/



.core-7 {
    background-image: url(../images/image-7-eccbc87e4b5ce2fe28308fd9f2a7baf3.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.core-7 #saveUserForm .form-control {
	box-shadow: 0 0.15rem 0.3rem rgba(0,0,0,0.15);
}

.core-7 #saveUserForm .submit {
	background: var(--primary);
	color: var(--light);
	border: 0;
	border-radius: 5px;
	padding: .3rem .8rem;
}


.core-7 .list-comments {
    padding-left: 1rem;
	padding-right: 1rem;
    overflow-y: scroll;
    max-height: 66vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
	margin-top: 1rem;
}

.core-7 .list-comments .box-comment {
    color: var(--black);
    font-size: 1rem;
    padding: 1rem;
	background: var(--light);
	border-radius: 10px;
	margin-top: 1rem;
	line-height: 2;

}

.core-7 .list-comments .box-comment .card-name {
	color: var(--black);
}

.core-7 .list-comments .box-comment .card-name span {
	font-size: 0.65rem;
	padding: 0.2rem 0.5rem;
	border-radius: 5px;
}


.core-7 .list-comments .box-comment .card-comment {
    line-height: 1.1rem;
    padding-bottom: .2rem;
	font-size: .9rem;
}

.core-7 .list-comments .box-comment .card-date {
    color: #919294;
	font-size: .8rem;
}





/*** Protokol ***/
.core-8 {
	text-align: center;
	padding: 5rem 0 8rem;
    background-image: url(../images/x.png);
    background-repeat: no-repeat;
    background-size: cover;
	background-position: bottom;
    position: relative;
}

.core-8 .box {
	max-width: 600px;
	margin: auto;
}

.core-8 .doa {
	position: relative;
	padding: 8rem 2rem;
	font-size: 1.1rem;
	color: var(--secondary);
	font-style: italic;
	line-height: 1.5;
}

.core-8 .doa img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.core-8 .card-day {
	color: var(--black);
	font-size: calc(0.8rem + 0.5vw);
	font-family: var(--fonts-merienda);
}

.core-8 .card-title {
	color: var(--black);
	font-family: var(--f-euphoria-script);
	font-size: calc(2.5rem + 1.5vw);
	margin-top: 2rem;
}


.core-8 .bg-core-8 {
	position: absolute;
	bottom: -1px;
	left: -2px;
	right: 0;
	width: 101%;
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
}


/*** Footer ***/
footer {
    position: relative;
	padding: 0 2rem 8rem;
	background: var(--primary);
	width: 100%;
	height: 100%;
	z-index: 99;
}


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


/*** Music ***/
.player {
	position: fixed;
	bottom: 100px;
	right: 15px;
	z-index: 999;
}

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

#playbtn:hover {
	-webkit-text-fill-color: red;
}
