/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Euphoria+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amaranth&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&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: #A34D4D;
    --secondary: #FDF6F6;
    --light: #FFFFFF;
    --dark: #6B6B6B;
    --black: #000000;
	--f-poppins: 'Poppins', sans-serif;
	--f-amarath: 'Amaranth', sans-serif;
	--f-lobster: 'Lobster', sans-serif;
	--f-merienda: "Merienda";
	--f-merienda-one : 'Merienda One';
	--f-salsa : 'Salsa', cursive;
	--f-saira: 'Saira', sans-serif;
	--f-inria: 'Inria Serif', serif;
	--f-euphoria: 'Euphoria Script', cursive;
	--f-dancing: 'Dancing Script', cursive;
	--f-roboto: 'Roboto', sans-serif;
}


body {
    font-size: 1.4rem;
    color: var(--dark);
	background-color: 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-color: var(--primary);
    color: var(--light);
}

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


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


/*** Fonts ***/
.f-inria {
	font-family: var(--f-inria);
}
.f-lobster {
	font-family: var(--f-lobster) !important;
}


/*** 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: 20px;
	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%, #E78C8D 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;
}


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


.popup-undangan .mdl-content .partner h1 {
    font-family: var(--f-euphoria);
	font-size: calc(3rem + 3vw);
    line-height: calc(2.5rem + 4vw);
    color: #3A2607;
	text-transform: capitalize;
}

.popup-undangan .mdl-content .open-content p {
    color: #3A2607;
	text-transform: capitalize;
}

.popup-undangan .mdl-content .open-content h2 {
	color: #3A2607;
	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-color: transparent;
}

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

.navbar-light .navbar-nav {
    border-radius: 20px;
    padding: 0.6rem 1rem;
	background-color: #FEF3DA;

}

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

.navbar-light .navbar-nav .nav-link .img {
	overflow: hidden;
	background-color: #E75858;
	max-width: 35px;
	padding: 0.3rem;
	border-radius: 10px;
	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 {
	filter: brightness(0) invert(1);
	transition: all ease-in-out .3s;
}

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



.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 {
	padding: 8rem 0;
	background-color: var(--secondary);
}
.core-0 .card-image {
	position: relative;
	border-radius: 50px;
	width: 335px;
	height: 200px;
	overflow: hidden;
	transition: .3s;
	border: 4px solid var(--primary);
}

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

.core-0 .core-0-1-bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.core-0 .core-0-2-bg {
	position: absolute;
	top: 0;
	left: 45%;
	z-index: 0;
}
.core-0 .core-0-3-bg {
	position: absolute;
	top: 35%;
	z-index: 0;
}
.core-0 .core-0-4-bg {
	position: absolute;
	top: 13%;
	right: 0;
	z-index: 0;
}
.core-0 .core-0-5-bg {
	position: absolute;
	bottom: 0;
	z-index: 0;
	max-height: 150px;
}
.core-0 .core-0-6-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
	max-height: 230px;
}

.core-0 .card-text {
	color: var(--primary);
	font-family: var(--f-amarath);
	font-style: italic;
	text-align: center;
	font-size: calc(0.8rem + 0.5vw);
	padding: 0 1rem;
}



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

.core-0 .countdown .box:last-child {
	margin-right: 0;
}

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

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

.core-0 .location a {
    background-color: var(--primary);
    border-radius: 20px;
    padding: .5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
	font-family: var(--f-roboto);
}

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

/*** Mempelai Core-1 ***/
.core-1 {
	background-image: url(../images/core-1-bg-fe3520f3fcb1e99528d148c20487fffb.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;
	filter: invert(34%) sepia(10%) saturate(3347%) hue-rotate(314deg) brightness(99%) contrast(78%);
}

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

.core-1 .content .widget .card-image {
	width: 200px;
	height: 250px;
    border-radius: 120px 120px 0 0;
    overflow: hidden;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	right: 50%;
	border: 4px solid var(--primary);

}

.core-1 .content .widget .card-image img {
	width: 100%;
	height: 100%;
}

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

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

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


.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-color: #573D26;
    color: var(--light);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
}

.core-1 .and {
	font-family: var(--f-euphoria);
	padding: 1.5rem 0;
	color: #573D26;
	font-size: 4rem;
  	font-weight: 700;
}


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

.core-2 .img-core-2-1 {
	animation: zoom-in-zoom-out-1 10s ease infinite;
	transition: .5s;
	max-height: 60px;
  }

.core-2 .img-core-2-2 {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	transition: .5s;
	max-height: 60px;
	animation: zoom-in-zoom-out-2 10s ease infinite;
}


/* Animated zoom-in-out-box Live */

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

  @keyframes zoom-in-zoom-out-2 {
	0% {
	  transform: scaleX(-1) scaleY(1);
	}
	50% {
	  transform: scaleX(-1.3) scaleY(1.3);
	}
	100% {
	  transform: scaleX(-1) scaleY(1);
	}
  }
  




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

.core-2 .content .card .card-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--f-merienda-one);
    margin-bottom: 1.5rem;
}

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

.core-2 .content .card .card-date {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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


/*** Gallery Core-3***/
.core-3 {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-image: url(../images/core-3-bg-fe3520f3fcb1e99528d148c20487fffb.webp);
    background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
  	border-radius: 55px;
}

.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:hover img {
	transform: scale(1.1);
}

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

.core-4 .content::before {
    content: "";
    background-color: #fff;
    border: 1px dashed var(--primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    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: 2px;
    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: 0;
  	left: -8px;
    width: 1px;
    height: 100%;
	z-index: 0;
}

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

.core-4 .content {
    border-radius: 10px;
    padding: 0 1rem 3rem;
    color: var(--black);
    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);
}


.core-4 .image-4-1 {
    position: absolute;
    bottom: -4rem;
    left: 0;
	transform: scaleX(-1);
	opacity: .2;
}

.core-4 .image-4-2 {
    position: absolute;
    bottom: -4rem;
    right: 0;
	opacity: .2;
}

/*** Live Core-5***/
.core-5 {
	background: linear-gradient(180deg, #F4CDCD 0%, rgba(244, 205, 205, 0.00) 94.79%);
}



.core-5 .content .card-text {
    color: var(--dark);
    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-color: var(--primary);
    padding: .5rem 1rem;
    border-radius: 20px;
    color: var(--light);
	font-size: 1.2rem;
}


/*** Amplop / Core 6 ***/
.core-6 {
    padding-top: 4rem;
    padding-bottom: 7rem;
	
	background-image: url(../images/core-6-bg-fe3520f3fcb1e99528d148c20487fffb.webp);
    background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	margin-bottom: -55px;
}

.core-6 .card-text {
    color: var(--dark);
    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-color: 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: var(--dark);
	font-weight: 800;
    border: none;
    outline: none;
    width: 122px;
    font-size: 20px;
	background-color: transparent;
}

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

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

.copy-text button:before {
    content: "Copied";
    position: absolute;
    top: -28px;
    right: 35px;
    background-color: 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-color: 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(--dark);
}

.core-6 .send-gifts .card-title {
	color: var(--dark);
}

.core-6 .send-gifts .card-address {
	color: var(--dark);
    font-size: .9rem;
}

.core-6 .send-gifts .card-content {
	color: var(--dark);
} 


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



.core-7 {
    background-image: url(../images/core-7-bg-fe3520f3fcb1e99528d148c20487fffb.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	overflow: hidden;
	border-radius: 55px;
}

.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-color: var(--light);
	border-radius: 10px;
	margin-top: 1rem;

}

.core-7 .list-comments .box-comment .card-name {
	color: #000000;
}

.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: 4rem 2.5rem;
	font-size: 1rem;
	color: var(--dark);
	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: #573D26;
	font-size: calc(0.8rem + 0.5vw);
	font-family: var(--f-merienda);
}

.core-8 .card-title {
	color: #573D26;
	font-family: var(--f-euphoria);
	font-size: calc(2.5rem + 1.5vw);
}


.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-color: var(--primary);
	width: 100%;
	height: 100%;
	z-index: 99;
}


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


/*** Music ***/
.player {
	position: fixed;
	bottom: 90px;
	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;
}
