/* Hide the auto-generated button */
#gateway-embed-launch {
 display: none;
}

.grecaptcha-badge {
  left: 0 !important;
  right: auto !important;
visibility: hidden;
}

.button-yellow .bg-custom-red {
    background-color: #f7d448;
}
.button-yellow .border-custom-red {
    border-color: #f7d448;
}

.blur-animation {
	color: #ffc682;
	animation: blur 10s ease-out;
	-webkit-animation: blur 10s ease-out forwards;
/* 	text-shadow:  0 0 100px #fff; opacity:1; */
}

.blur-animation:nth-child(1) {
	animation-delay: 0.1s;
	-webkit-animation-delay: 0.1s;
}
.blur-animation:nth-child(2) {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}
.blur-animation:nth-child(3) {
	animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
}
.blur-animation:nth-child(4) {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}
.blur-animation:nth-child(5) {
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}
.blur-animation:nth-child(6) {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}
.blur-animation:nth-child(7) {
	animation-delay: 0.7s;
	-webkit-animation-delay: 0.7s;
}

@keyframes blur {
	0%		{text-shadow:  0 0 100px #fff; opacity:0;}
	5%		{text-shadow:  0 0 90px #fff;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #fff;}
	80%		{text-shadow:  0 0 0px #fff;}
	85%		{opacity: 1;}
	95%		{text-shadow:  0 0 90px #fff;}
	100%	{text-shadow:  0 0 100px #fff; opacity:1;}
}

@-webkit-keyframes blur {
	0%		{text-shadow:  0 0 100px #fff; opacity:0;}
	5%		{text-shadow:  0 0 90px #fff;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #fff;}
	80%		{text-shadow:  0 0 0px #fff;}
	85%		{opacity: 1;}
	95%		{text-shadow:  0 0 90px #fff;}
	100%	{text-shadow:  0 0 100px #fff; opacity:1;}
}
.text-yellow {
	color:#f7d448;
}
.text-red {
	color: #FD5672;
}

.single-post figure.wp-block-image 
{
	padding: 25px 0px;
}

.single-post figure.wp-block-image img
{
	margin:0 auto;
}
.single-post p 
{
	padding-bottom: 1.2rem;
}

#carousel-nav label {
	transition: background-color 0.3s;
  }

#carousel-nav input[name="carousel"]:checked+label {
	background-color: red;
}

ul.wp-block-list li
{
	list-style: disc;
    margin-left: 2rem;
}

ol.wp-block-list li
{
	list-style: decimal;
    margin-left: 2rem;
}

/** Valentine Poup CSS */

.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.popup-container {
	background: #FFF2F2;
	width: 90%;
	max-width: 1300px;
	display: flex;
	flex-direction: column;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 60px;
	height: 60px;
	cursor: pointer;
}

.popup-content {

	display: flex;
	flex-direction: row;
	align-items: stretch;


}

.popup-left {
	margin: 0;
	padding: 0;
	width: 50%;
	position: relative;
}

.popup-left img {

	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	flex: 1 0 auto;
}

.popup-right {
	width: 50%;


}


.info-container {

	padding: 30px 10%;
	text-align: left;
	gap: 40px;
	margin: 0;
}

.popup-title {
	font-family: 'Barlow Condensed', sans-serif;
	padding-right: 20px;
	line-height: 1.0;
	color: #EE3124;
	font-size: 54px;
	font-weight: 500;
	margin: 0;
}

.popup-text {
	font-family: 'Barlow Condensed', sans-serif;
	color: #383838;
	font-size: 24px;
	margin: 0;
	margin-bottom: 10px;

}

.popup-buttons {
	display: flex;
	gap: 20px;

}

.popup-btn {
	font-family: 'Montserrat', sans-serif;
	padding: 5px;
	height: 60px;
	width: 200px;
	border: none;
	color: white;
	font-size: 22px;
	font-weight: 500;
	cursor: pointer;

}

a {
	text-decoration: none;
	color: inherit;
	/* This makes the link inherit the parent's color */
}

.btn-buy {
	background: #EE3124;
}

.btn-more {
	background: black;
}



/* @media (max-width: 768px) { */
@media (max-width: 1300px) {
	.popup-container {
		max-width: 800px;
	}

	.close-btn {
		top: 7px;
		right: 7px;
		width: 45px;
		height: 45px;

	}

	/* .popup-content {
		flex-direction: column;
	} */

	.popup-left {
		width: 100%;
		height: 100%
	}

	.popup-right {
		width: 100%;
		padding: 30px 0px;
	}

	.info-container {
		padding: 10px 5%;
		gap: 20px;

	}

	.popup-title {
		font-size: 34px;
		padding-right: 0px;
	}

	.popup-text {
		font-size: 17px;

	}

	.popup-btn {
		padding: 5px;
		height: 50px;
		width: 150px;
		font-size: 14px;
		font-weight: 500;
		cursor: pointer;

	}

	.popup-buttons {
		gap: 10px;

	}


}

@media (max-width: 900px) {
	.popup-container {
		max-width: 400px;
	}

	.popup-content {
		flex-direction: column;
	}

	.close-btn {
		position: absolute;
		top: 7px;
		right: 7px;
		width: 45px;
		height: 45px;
		z-index: 999;
		cursor: pointer;
	}


}

button.pum-close
{
	display: none!important;
}