/* category game page customizations */

.header-wrapper.gp-site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 18px;
}

.gp-site-header-logo,
.gp-site-header-search {
	flex: 0 0 auto;
	min-width: 0;
}

.gp-site-header-benefits {
	flex: 1 1 auto;
	min-width: 0;
}

.gp-site-header .logo {
	display: inline-flex;
	align-items: center;
}

.gp-site-header .logo img {
	max-width: 168px;
	height: auto;
}

.gp-site-header-benefits ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.gp-site-header-search {
	width: min(420px, 34vw);
}

/* Search overlay */
.gp-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(7, 11, 21, 0.9);
	backdrop-filter: blur(6px);
	z-index: 100000;
	display: none;
}

.gp-search-overlay.is-open {
	display: block;
}

.gp-search-panel {
	max-width: 1100px;
	margin: 26px auto;
	padding: 0 16px 24px;
	height: calc(100vh - 52px);
	display: flex;
	flex-direction: column;
}

.gp-search-top {
	display: flex;
	gap: 10px;
	align-items: center;
	background: #131d37;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 8px;
}

.gp-search-top input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: 0;
	color: #fff;
	font-size: 16px;
	padding: 10px;
}

.gp-search-top button {
	border: 0;
	border-radius: 10px;
	padding: 10px 14px;
	font-weight: 700;
	cursor: pointer;
}

.gp-search-apply {
	background: #4cc2ff;
	color: #12203f;
}

.gp-search-close {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.header-wrapper .search-div,
.search-div {
	width: min(420px, 100%);
	height: auto;
	margin-right: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	position: relative;
}

.header-wrapper .search-div:after {
	display: none;
}

#search-input {
	width: 100%;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: #131d37;
	color: #fff;
	outline: 0;
	font-size: 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#search-input::placeholder {
	color: rgba(255, 255, 255, 0.62);
}

#search-input:focus,
.gp-search-top input:focus {
	border-color: rgba(125, 211, 252, 0.72) !important;
	outline: 2px solid rgba(125, 211, 252, 0.44) !important;
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.gp-search-meta {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	padding: 10px 4px 6px;
}

.gp-search-results {
	flex: 1;
	overflow: auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 6px 2px 20px;
	align-content: start;
	align-items: start;
	grid-auto-rows: auto;
}

.gp-search-result-card {
	height: auto;
}

.gp-search-result-card .slide-one {
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(180deg, #182443 0%, #211813 100%);
	display: block;
	width: 100%;
	height: auto;
}

.gp-search-result-card .slide-one:after {
	display: none;
}

.gp-search-result-card .slide-image {
	position: relative;
	height: 210px;
	background: #111a31;
}

.gp-search-result-card .slide-image:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(to top, #211813, transparent);
	pointer-events: none;
}

.gp-search-result-card .slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gp-search-result-card .slide-content {
	padding: 1px 18px 15px 18px;
	position: relative;
	z-index: 2;
	min-height: 84px;
}

.gp-search-result-card .slide-content h2 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	line-height: 1.3;
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 46px;
}

.gp-search-empty {
	grid-column: 1 / -1;
	background: #182443;
	border: 1px dashed rgba(255, 255, 255, 0.24);
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	color: #fff;
}

@media (max-width: 1100px) {
	.gp-search-results {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.gp-search-panel {
		max-width: none;
		margin: 0;
		padding: calc(env(safe-area-inset-top, 0px) + 12px) 12px calc(env(safe-area-inset-bottom, 0px) + 18px);
		height: 100dvh;
	}

	.gp-search-top {
		position: sticky;
		top: 0;
		z-index: 2;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		padding: 10px;
		border-radius: 14px;
	}

	.gp-search-top input {
		grid-column: 1 / -1;
		min-height: 48px;
		padding: 12px 14px;
		font-size: 16px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.04);
	}

	.gp-search-top button {
		width: 100%;
		min-height: 44px;
		padding: 11px 12px;
	}

	.gp-search-meta {
		padding: 12px 2px 8px;
	}

	.gp-search-results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 4px 0 18px;
	}

	.gp-search-result-card .slide-image {
		height: 165px;
	}

	.gp-search-result-card .slide-content {
		padding: 10px 12px 14px;
		min-height: 72px;
	}

	.gp-search-result-card .slide-content h2 {
		font-size: 15px;
		min-height: 38px;
	}
}

@media (max-width: 560px) {
	.header-wrapper.gp-site-header {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px;
		padding: 12px 14px !important;
	}

	.header-wrapper.gp-site-header > div {
		width: 100%;
		min-width: 0;
	}

	.gp-site-header .logo img {
		max-width: 148px;
	}

	.titlerec {
		display: none !important;
	}

	.gp-site-header-search {
		width: 100%;
	}

	.search-div {
		display: block;
		width: 100%;
	}

	#search-input {
		display: block;
		width: 100%;
	}

	.gp-search-results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 420px) {
	.gp-search-results {
		grid-template-columns: 1fr;
	}

	.gp-search-result-card .slide-image {
		height: 190px;
	}
}

.kodex_dislike_button {
	display: none;
}

.kodex_like_button {
	display: none;
}

@media only screen and (max-width: 576px) {
	.header-alert {
		display: none;
	}
}

#jd-featured .post-1 .jd-post {
	border-radius: 30px;
	margin-top: 10px;
}

.jd-post .title a {
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#categories {
		display: none !important;
	}
}

@media only screen and (max-width: 768px) {
	#sidebar-desktop {
		display: none !important;
	}

	.banner-wrapper .slide-wrapper {
		padding: 0 5px 30px !important;
	}

	.slide-wrapper .slide-one .slide-image {
		height: 130px !important;
	}

	#logof {
		display: none;
	}

	#jd-featured .post-1 {
		margin: 10;
	}

	.jd-loop-posts {
		display: flex;
		flex-flow: wrap;
	}

	#jd-trending-posts {
		display: flex;
		flex-flow: wrap;
	}

	#jd-latest-posts {
		display: flex;
		flex-flow: wrap;
	}

	#jd-latest-posts .jd-post {
		width: 45%;
		margin: 0 3.5%;
	}

	#jd-latest-posts .jd-picture {
		border-radius: 10px;
	}

	#jd-latest-posts .jd-post .title a {
		font-size: small;
	}

	#jd-trending-posts .jd-post {
		width: 45%;
		margin: 0 3.5%;
	}

	#jd-trending-posts .jd-picture {
		border-radius: 10px;
	}

	#jd-trending-posts .jd-post .title a {
		font-size: small;
	}
}

#jd-latest-posts .jd-post {
	width: calc(100% / 4) !important;
}

#jd-trending-posts .jd-post {
	width: calc(100% / 4) !important;
}

.jd-post {
	position: relative;
}

.jd-picture- {
	position: relative;
	width: 100%;
	padding-top: 40%;

	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 30px;
}

.swiper-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.swiper-slide {
	background-size: cover;
	background-position: center;
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff !important;
}

.swiper-pagination-bullet-active {
	background: #fff !important;
}

#sidebar-desktop {
	width: 180px;
	min-height: calc(100vh - 1px);
	background-color: #111111;
	transform: translateX(-110px);
	padding: 0;
	margin: 0;
	position: fixed;
	left: 0;
	top: 0px;
	padding-top: 84px;
	display: block;
	z-index: 99999 !important;
}

#sidebar-desktop:hover {
	transform: translateX(0);
	transition: .5s;
}

#sidebar-desktop:hover ul li {
	position: relative;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 65px;
}

#sidebar-desktop:hover ul li img {
	left: 20px;
}

#sidebar-desktop:hover ul li span {
	opacity: 1;
	visibility: visible;
}

#sidebar-desktop ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

#sidebar-desktop ul li {
	margin-bottom: 10px;
	position: relative;
	height: 55px;
	cursor: pointer;
}

#sidebar-desktop ul li span {
	opacity: 0;
	visibility: hidden;
}

#sidebar-desktop ul li img {
	width: 30px;
	height: auto;
	position: absolute;
	right: 7px;
	top: 10px;
}

#sidebar-desktop ul li a {
	text-decoration: none !important;
	color: white !important;
}

#sidebar-desktop ul li a:hover {
	color: white;
	text-decoration: none;
}

.banner-wrapper .banner-wrap {
	background-color: #111111
}

.banner-wrapper .slide-wrapper {
	padding: 0 50px 30px;
	background-color: #111111;
}

.banner-wrapper .slide-wrapper:after {
	background: linear-gradient(to top, #111111, transparent);
}

.banner-wrapper .right-wrap:after {
	background: linear-gradient(to right, #111111, transparent);
}

body {
	--background-color: #18181B;
	--text-color: #A1A1AA;

	--card-background-color: rgba(255, 255, 255, .015);
	--card-border-color: rgba(255, 255, 255, 0.1);
	--card-box-shadow-1: rgba(0, 0, 0, 0.05);
	--card-box-shadow-1-y: 3px;
	--card-box-shadow-1-blur: 6px;
	--card-box-shadow-2: rgba(0, 0, 0, 0.1);
	--card-box-shadow-2-y: 8px;
	--card-box-shadow-2-blur: 15px;
	--card-label-color: #FFFFFF;
	--card-icon-color: #D4D4D8;
	--card-icon-background-color: rgba(255, 255, 255, 0.08);
	--card-icon-border-color: rgba(255, 255, 255, 0.12);
	--card-shine-opacity: .1;
	--card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(103, 6, 110, 0) 0deg, rgb(98, 0, 97) 25deg, rgba(52, 211, 153, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
	--card-line-color: #2A2B2C;
	--card-tile-color: rgba(16, 185, 129, 0.05);

	--card-hover-border-color: rgba(255, 255, 255, 0.2);
	--card-hover-box-shadow-1: rgba(0, 0, 0, 0.04);
	--card-hover-box-shadow-1-y: 5px;
	--card-hover-box-shadow-1-blur: 10px;
	--card-hover-box-shadow-2: rgba(0, 0, 0, 0.3);
	--card-hover-box-shadow-2-y: 15px;
	--card-hover-box-shadow-2-blur: 25px;
	--card-hover-icon-color: #23234b;
	--card-hover-icon-background-color: rgba(52, 211, 153, 0.1);
	--card-hover-icon-border-color: rgba(52, 211, 153, 0.2);

	--blur-opacity: .01;

	&.light {
		--background-color: #FAFAFA;
		--text-color: #52525B;

		--card-background-color: transparent;
		--card-border-color: rgba(24, 24, 27, 0.08);
		--card-box-shadow-1: rgba(24, 24, 27, 0.02);
		--card-box-shadow-1-y: 3px;
		--card-box-shadow-1-blur: 6px;
		--card-box-shadow-2: rgba(24, 24, 27, 0.04);
		--card-box-shadow-2-y: 2px;
		--card-box-shadow-2-blur: 7px;
		--card-label-color: #18181B;
		--card-icon-color: #18181B;
		--card-icon-background-color: rgba(24, 24, 27, 0.04);
		--card-icon-border-color: rgba(24, 24, 27, 0.1);
		--card-shine-opacity: .3;
		--card-shine-gradient: conic-gradient(from 225deg at 50% 50%, rgba(153, 5, 133, 0) 0deg, rgb(137, 16, 185) 25deg, #EDFAF6 285deg, #FFFFFF 345deg, rgba(16, 185, 129, 0) 360deg);
		--card-line-color: #E9E9E7;
		--card-tile-color: rgba(16, 185, 129, 0.08);

		--card-hover-border-color: rgba(24, 24, 27, 0.15);
		--card-hover-box-shadow-1: rgba(24, 24, 27, 0.05);
		--card-hover-box-shadow-1-y: 3px;
		--card-hover-box-shadow-1-blur: 6px;
		--card-hover-box-shadow-2: rgba(24, 24, 27, 0.1);
		--card-hover-box-shadow-2-y: 8px;
		--card-hover-box-shadow-2-blur: 15px;
		--card-hover-icon-color: #18181B;
		--card-hover-icon-background-color: rgba(24, 24, 27, 0.04);
		--card-hover-icon-border-color: rgba(24, 24, 27, 0.34);

		--blur-opacity: .1;
	}

	&.toggle .grid * {
		transition-duration: 0s !important;
	}
}


.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	grid-gap: 12px;
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto;

}

.card {
	background-color: var(--background-color);
	box-shadow: 0px var(--card-box-shadow-1-y) var(--card-box-shadow-1-blur) var(--card-box-shadow-1), 0px var(--card-box-shadow-2-y) var(--card-box-shadow-2-blur) var(--card-box-shadow-2), 0 0 0 1px var(--card-border-color);
	padding: 20px 16px 16px 16px;
	border-radius: 15px;
	cursor: pointer;
	position: relative;
	transition: box-shadow .25s;
	align-items: center;
	margin-bottom: 1px;

	&::before {
		content: '';
		position: absolute;
		inset: 0;
		border-radius: 15px;
		background-color: var(--card-background-color);
	}

	h4 {
		z-index: 2;
		position: relative;
		margin: 4px 0 4px 0;
		font-family: inherit;
		font-weight: 600;
		font-size: 14px;
		line-height: 2;
		color: var(--card-label-color);
	}

	p {
		z-index: 2;
		position: relative;
		margin: 0;
		font-size: 14px;
		line-height: 1.7;
		color: var(--text-color);
	}

	.shine {
		border-radius: inherit;
		position: absolute;
		inset: 0;
		z-index: 1;
		overflow: hidden;
		opacity: 0;
		transition: opacity .5s;

		&:before {
			content: '';
			width: 150%;
			padding-bottom: 150%;
			border-radius: 50%;
			position: absolute;
			left: 50%;
			bottom: 55%;
			filter: blur(35px);
			opacity: var(--card-shine-opacity);
			transform: translateX(-50%);
			background-image: var(--card-shine-gradient);
		}
	}

	.background {
		border-radius: inherit;
		position: absolute;
		inset: 0;
		overflow: hidden;
		-webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
		mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);

		.tiles {
			opacity: 0;
			transition: opacity .25s;

			.tile {
				position: absolute;
				background-color: var(--card-tile-color);
				animation-duration: 8s;
				animation-iteration-count: infinite;
				opacity: 0;

				&.tile-4,
				&.tile-6,
				&.tile-10 {
					animation-delay: -2s;
				}

				&.tile-3,
				&.tile-5,
				&.tile-8 {
					animation-delay: -4s;
				}

				&.tile-2,
				&.tile-9 {
					animation-delay: -6s;
				}

				&.tile-1 {
					top: 0;
					left: 0;
					height: 10%;
					width: 22.5%;
				}

				&.tile-2 {
					top: 0;
					left: 22.5%;
					height: 10%;
					width: 27.5%;
				}

				&.tile-3 {
					top: 0;
					left: 50%;
					height: 10%;
					width: 27.5%;
				}

				&.tile-4 {
					top: 0;
					left: 77.5%;
					height: 10%;
					width: 22.5%;
				}

				&.tile-5 {
					top: 10%;
					left: 0;
					height: 22.5%;
					width: 22.5%;
				}

				&.tile-6 {
					top: 10%;
					left: 22.5%;
					height: 22.5%;
					width: 27.5%;
				}

				&.tile-7 {
					top: 10%;
					left: 50%;
					height: 22.5%;
					width: 27.5%;
				}

				&.tile-8 {
					top: 10%;
					left: 77.5%;
					height: 22.5%;
					width: 22.5%;
				}

				&.tile-9 {
					top: 32.5%;
					left: 50%;
					height: 22.5%;
					width: 27.5%;
				}

				&.tile-10 {
					top: 32.5%;
					left: 77.5%;
					height: 22.5%;
					width: 22.5%;
				}
			}
		}

		@keyframes tile {

			0%,
			12.5%,
			100% {
				opacity: 1;
			}

			25%,
			82.5% {
				opacity: 0;
			}
		}

		.line {
			position: absolute;
			inset: 0;
			opacity: 0;
			transition: opacity .35s;

			&:before,
			&:after {
				content: '';
				position: absolute;
				background-color: var(--card-line-color);
				transition: transform .35s;
			}

			&:before {
				left: 0;
				right: 0;
				height: 1px;
				transform-origin: 0 50%;
				transform: scaleX(0);
			}

			&:after {
				top: 0;
				bottom: 0;
				width: 1px;
				transform-origin: 50% 0;
				transform: scaleY(0);
			}

			&.line-1 {
				&:before {
					top: 10%;
				}

				&:after {
					left: 22.5%;
				}

				&:before,
				&:after {
					transition-delay: .3s;
				}
			}

			&.line-2 {
				&:before {
					top: 32.5%;
				}

				&:after {
					left: 50%;
				}

				&:before,
				&:after {
					transition-delay: .15s;
				}
			}

			&.line-3 {
				&:before {
					top: 55%;
				}

				&:after {
					right: 22.5%;
				}
			}
		}
	}

	&:hover {
		box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1), 0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2), 0 0 0 1px var(--card-hover-border-color);

		.icon {
			&::after {
				background-color: var(--card-hover-icon-background-color);
				border-color: var(--card-hover-icon-border-color);
			}

			svg {
				color: var(--card-hover-icon-color);
			}
		}

		.shine {
			opacity: 1;
			transition-duration: .5s;
			transition-delay: 0s;
		}

		.background {

			.tiles {
				opacity: 1;
				transition-delay: .25s;

				.tile {
					animation-name: tile;
				}
			}

			.line {
				opacity: 1;
				transition-duration: .15s;

				&:before {
					transform: scaleX(1);
				}

				&:after {
					transform: scaleY(1);
				}

				&.line-1 {

					&:before,
					&:after {
						transition-delay: .0s;
					}
				}

				&.line-2 {

					&:before,
					&:after {
						transition-delay: .15s;
					}
				}

				&.line-3 {

					&:before,
					&:after {
						transition-delay: .3s;
					}
				}
			}
		}
	}
}

html {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

* {
	box-sizing: inherit;

	&:before,
	&:after {
		box-sizing: inherit;
	}
}

.grid-layout {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 15px;
	grid-auto-rows: minmax(180px, auto);
	grid-auto-flow: dense;
	padding-top: 40px;
}

.grid-item {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
}

.grid-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
}

.gallery-wrapper img,
.gallery-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s ease-in-out;
	display: block;
}

.gallery-wrapper.gp-animated-loading.gp-animated-active::before,
.gallery-wrapper.gp-animated-loading:hover::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(16, 18, 28, 0.42);
	backdrop-filter: blur(2px);
	z-index: 3;
	pointer-events: none;
}

.gallery-wrapper.gp-animated-loading.gp-animated-active::after,
.gallery-wrapper.gp-animated-loading:hover::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 26px;
	margin: -13px 0 0 -13px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.28);
	border-top-color: rgba(255, 255, 255, 0.95);
	animation: gp-card-spin 0.8s linear infinite;
	z-index: 4;
	pointer-events: none;
}

.gallery-animated {
	opacity: 0;
	z-index: 2;
}

.gallery-wrapper.gp-animated-ready.gp-animated-active .gallery-animated,
.gallery-wrapper.gp-animated-ready:hover .gallery-animated {
	opacity: 1;
}

.gallery-wrapper.gp-animated-ready.gp-animated-active .gallery-static,
.gallery-wrapper.gp-animated-ready:hover .gallery-static {
	opacity: 0;
}

.gallery-wrapper.gp-animated-active:not(.gp-animated-ready) .gallery-static,
.gallery-wrapper:hover:not(.gp-animated-ready) .gallery-static {
	opacity: 1 !important;
}

.gallery-wrapper.gp-animated-active:not(.gp-animated-ready) .gallery-animated,
.gallery-wrapper:hover:not(.gp-animated-ready) .gallery-animated {
	opacity: 0 !important;
}

@keyframes gp-card-spin {
	to {
		transform: rotate(360deg);
	}
}

.span-2 {
	grid-column-end: span 2;
	grid-row-end: span 2;
}

@media (max-width: 576px) {
	.grid-layout {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 10px;
		grid-auto-rows: minmax(100px, auto);
		grid-auto-flow: dense;
		padding-top: 40px;
	}
}

/* footer */
#jd-footer {
	margin-top: 5px;
	display: block;
	overflow: hidden;
}

#jd-footer {
	position: relative;
	display: block;
	margin-top: 80px;
	overflow: hidden;
	color: #fff;
}


.jd-container {
	position: relative;
	display: block;
	max-width: 1188px;
	padding: 0;
	margin: 0 auto;
}

#jd-footer-widgets {
	padding-top: 56px;
}

#jd-copyright {
	font-size: 0.75rem;
	padding: 15px 0;
	border-top: 1px solid rgba(128, 128, 128, 0.1);
}

#jd-copyright .footer-menu {
	float: right;
	display: block;
}

#jd-copyright .copyright {
	font-size: 10px;
}

#jd-copyright .copyright {
	display: block;
	float: left;
}

@media only screen and (max-width: 768px) {

	#jd-copyright .footer-menu,
	#jd-copyright .copyright {
		float: none;
		text-align: center;
	}
}

@media only screen and (max-width: 768px) {

	#jd-copyright .footer-menu,
	#jd-copyright .copyright {
		float: none;
		text-align: center;
	}
}

@media only screen and (max-width: 768px) {
	#jd-copyright .footer-menu {
		margin-bottom: 8px;
	}
}

@media only screen and (max-width: 768px) {
	#jd-footer-widgets {
		padding-top: 40px;
	}
}

.wp-block-image {
	text-align: center;
}

#menu-footer-menu a {
	color: #fff;
}

#menu-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

#menu-footer-menu li {
	display: inline-block;

}

#menu-footer-menu li a {
	text-decoration: none;
	color: inherit;

}

/* END FOOTER */
