/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
* {
	font-family: Prompt, sans-serif !important;
}
.horizontal-menu {
	display: flex;
    flex-direction: row;
    justify-content: center;
	flex-wrap: wrap;
	width: 80%;
    margin: 0 auto;
}
.horizontal-menu .ux-menu-link {
	padding: 0 0.3rem;
}
.horizontal-menu .ux-menu-link__link {
	border: none !important;
}
.horizontal-menu .ux-menu-link:not(:last-child)::after {
    content: '|';
    padding-left: 0.5rem;
}


.copyright-footer{
	text-align: center;
}
.section-footer-after{
	display: none;
}
/* daftar isi */
.index-container {
	margin-top: 5em;
	background: black;
	padding: 1em;
	border: solid 1px white;
	border-radius: 7px; 
}
.index-container * {
	color: white;
}
#headingTOC h5 {
	margin-bottom: 1em !important;
}
.index-container .index-title {
	font-size: 1.5em;
}
.index-container li, .index-container a {
	font-size: 17px;
}
.index-container ul {
	margin-left: 1em;
}
.index-container *:hover {
	color: rgb(238, 202, 104);
}
.row-content .article h3 {
	color: rgb(238, 202, 104);
	font-size: 2em;
	text-align: center;
}
.row-content .article h2 {
	color: rgb(238, 202, 104);
	font-size: 2.2em;
	text-align: center;
}
.row-content .article p {
	color: white;
	font-size: 1.5em;
}
.row-content .article p a {
	color: rgb(238, 202, 104);
}
.row-content .article p a:hover {
	color: rgb(132 107 37);
}
.table-1 {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    border: 2px solid #eeca68;
}
.table-1 tr td {
	font-size: 1.5em;
}
.table-1 td:first-child {
    border-right: 1px solid #eeca68;
}
.table-1 td:last-child {
    border-left: 1px solid #eeca68;
	color: white;
}
.table-1 tr td {
	border-bottom: 1px solid #eeca68 !important;
}
table tr td {
	background-color: #000000 !important;
}
table tr td strong {
    color: #eeca68 !important;
}
.table-1 td, .table th {
    padding: 8px;
}

/* POP UP */
#popup_overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.8);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* container 80% height */
#popup_container {
	width: 90%;
	max-width: 600px;
	height: 80%;
	background: #111;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
	animation: containerGlow 2s infinite alternate;
}

/* header */
#popup_header {
	background: #e74c3c;
	background-size: 400%;
	color: #fff;
	padding: 12px;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#popup_header span {
	cursor: pointer;
	font-size: 2rem;
	font-weight: bold;
	transition: transform 0.3s;
}
#popup_header span:hover {
	transform: rotate(180deg);
}

/* scrollable content */
#popup_content {
	flex: 1;
	overflow-y: auto;
	padding: 18px;
	text-align: center;
}

/* text styles */
#popup_content p {
	margin: 8px 0;
	font-size: 18px;
	font-weight: 600;
	animation: flashColor 2s infinite linear;
}

/* make every odd/even paragraph flash differently */
#popup_content p:nth-child(odd) {
	animation: flashColor 1.2s infinite alternate;
}
#popup_content p:nth-child(even) {
	animation: flashColorAlt 1.5s infinite alternate;
}

#popup_content img {
	max-width: 100%;
	border-radius: 8px;
	margin-bottom: 12px;
	box-shadow: 0 0 10px #fff;
	animation: pulseImg 2s infinite ease-in-out;
}

/* ANIMATIONS */
@keyframes flashColor {
	0% { color: #ff0000; }
	20% { color: #ff7300; }
	40% { color: #ffeb00; }
	60% { color: #47ff00; }
	80% { color: #00ffee; }
	100% { color: #ff00e0; }
}

@keyframes flashColorAlt {
	0% { color: #00ffee; }
	25% { color: #2b65ff; }
	50% { color: #ff00e0; }
	75% { color: #ffeb00; }
	100% { color: #ff0000; }
}

@keyframes pulseImg {
	0%, 100% { transform: scale(1); box-shadow: 0 0 10px #fff; }
	50% { transform: scale(1.05); box-shadow: 0 0 25px #ff00ff; }
}

@keyframes containerGlow {
	0% { box-shadow: 0 0 20px #ff0000; }
	50% { box-shadow: 0 0 30px #00ffea; }
	100% { box-shadow: 0 0 20px #ff00ff; }
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
	footer#footer .section-footer-after {
		position: fixed;
		bottom: 0;
		z-index: 99999;
		text-align: center;
	}
	.btn-footer {
		color: #501416 !important;
		background-color: #eeca68 !important;
		min-width: 9em;
		border: 1px solid #501416;
		border-radius: 5px;
		font-size: 1em;
	}
	.section-footer-after{
		display: flex;
	}
	.copyright-footer{
		padding-bottom: 2.2em;
	}
	.button.primary.btn-footer{
		padding: 0;
		margin: 0;
	}
}

@media (min-width: 576px) {
	.header-wrapper.stuck {
		max-width: 1140px;
		margin-top: 1rem;
		border-radius: 30px 30px 30px 30px;
		border-style: solid;
		border-width: 2px 2px 2px 2px;
		border-color: #B2B2B2;
		transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
		padding: 05px 05px 05px 05px;
	}
	.header-wrapper.stuck .header-bg-color {
		border-radius: 30px 30px 30px 30px;
	}
	.header-wrapper.stuck .header-inner > :nth-child(3) {
		background: #fff;
		padding: 0.5rem;
		border-radius: 2rem;
		margin-right: 1rem;
		opacity: 0.8;
	}
	.header-wrapper.stuck .header-inner .nav > li > a {
		color: #000;
	}
	.header-wrapper.stuck .header-inner .logo {
		margin-right: 0;
	}
	.header-wrapper.stuck .header-inner .header-nav {
		justify-content: center;
	}	
}
.header-wrapper.stuck .header-nav .menu-item:hover {
	background: darkseagreen;
    border-radius: 2rem;
    padding: 2px 10px;	
}

section.payment-channel .section-content {
	display: flex;
	justify-content: center;
}
section.payment-channel .section-content .img {
	width: 40rem !important;
}
@media (max-width: 575.98px) {
	section.payment-channel .section-content .img {
		width: 20rem !important;
	}
}