:root {
	--mlw-primary: #dd8a03;
	--mlw-secondary: #003b4a;
	--mlw-outline: #f5bd83;
	--mlw-border: #6f8e96;
	--mlw-border-outline: #dd00b2;
	--mlw-bg: #195562;
	--mlw-bg-dark: #003b4a;
}

.gg-spinner {
	transform: scale(var(--ggs, 1));
}

.gg-spinner,
.gg-spinner::after,
.gg-spinner::before {
	box-sizing: border-box;
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
}

.gg-spinner::after,
.gg-spinner::before {
	content: "";
	position: absolute;
	border-radius: 100px;
}

.gg-spinner::before {
	animation: spinner 1s cubic-bezier(0.6, 0, 0.4, 1) infinite;
	border: 3px solid transparent;
	border-top-color: currentColor;
	-webkit-animation: spinner 1s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}

.gg-spinner::after {
	border: 3px solid;
	opacity: 0.2;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-ms-transform: rotate(359deg);
		-o-transform: rotate(359deg);
	}
}

#mlw * {
	font-family: "Rubik", sans-serif;
}

#mlw .mlw-headline {
	font-size: 32px;
	font-weight: 800;
	margin: 0;
	padding: 0;
	color: var(--mlw-primary);
	margin-bottom: 10px;
	text-transform: uppercase;
}

#mlw .mlw-select {
	position: relative;
	width: calc((100% / 3) - 40px);
}

#mlw .mlw-select select {
	width: 100%;
	height: 58px;
	border: 3px solid var(--mlw-secondary);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--mlw-border);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style="fill: rgba(111, 142, 150, 1);transform: ;msFilter:;"><path d="M16.293 9.293 12 13.586 7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z"></path></svg>');
	background-repeat: no-repeat;
	background-position-x: calc(100% - 10px);
	background-position-y: 12px;
	background-size: 28px;
	text-transform: uppercase;
}

#mlw select:where(:focus, :hover, :active) {
	outline: none;
	box-shadow: none;
}

#mlw .mlw-select span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 16px;
}

#mlw .mlw-select span i {
	transform: scale(var(--ggs, 1.1));
	background: #fff;
}

#mlw .mlw-posts {
	margin-top: 40px;
}

#mlw .mlw-post {
	position: relative;
	margin-top: 20px;
	display: flex;
	gap: 40px;
	background-color: var(--mlw-bg);
	padding: 40px;
	overflow: hidden;
	min-height: 480px;
	align-items: center;
}

#mlw .mlw-post .mlw-overlay {
	content: "";
	position: absolute;
	left: 0;
	top: -70px;
	height: 54%;
	background-color: var(--mlw-bg-dark);
	width: 104%;
	z-index: 9;
	transform: rotateZ(5deg);
}

#mlw .mlw-post > div {
	width: 50%;
}

#mlw .mlw-post-contents,
#mlw .mlw-picture {
	z-index: 99;
}

#mlw .mlw-picture {
	background-color: #fff;
	min-height: 380px;
	background-size: 60%;
	background-position: center;
	background-repeat: no-repeat;
}

#mlw .mlw-post h2 {
	color: var(--mlw-primary);
	font-size: 32px;
	margin: 0;
	padding: 0;
	margin-bottom: 8px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#mlw .mlw-post p {
	color: #fff;
	font-size: 16px;
	margin: 0;
	padding: 0;
	margin-bottom: 14px;
	font-weight: 200;
}

#mlw .mlw-post .mlw-permalink {
	background-color: var(--mlw-primary);
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 14px 36px;
	display: block;
	width: fit-content;
	margin-top: 26px;
	/* border: 4px solid transparent; */
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	font-weight: 500;
	position: relative;
}

#mlw .mlw-post .mlw-permalink::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 8px;
	top: 8px;
	background-color: var(--mlw-outline);
	z-index: -1;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

#mlw .mlw-post .mlw-permalink:hover {
	border-color: var(--mlw-border-outline);
}

#mlw .mlw-pagination {
	display: flex;
	justify-content: center;
}

#mlw .mlw-pagination ul {
	padding: 0;
	margin: 0;
	display: flex;
	list-style: none;
	margin-top: 40px;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

#mlw .mlw-pagination ul li,
#mlw .mlw-pagination ul span {
	font-size: 18px;
	font-weight: 500;
	color: var(--mlw-secondary);
	height: 48px;
	width: 48px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	user-select: none;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

#mlw .mlw-pagination ul li.active {
	color: #fff;
	background-color: var(--mlw-bg-dark);
}

#mlw .mlw-pagination ul li.active::after {
	content: "";
	height: 48px;
	width: 48px;
	position: absolute;
	left: 6px;
	top: 6px;
	background-color: var(--mlw-border);
	z-index: -1;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

/* #mlw .mlw-pagination ul li:not(.active):hover {
	background-color: var(--mlw-border);
	opacity: 0.7;
	color: #fff;
} */

#mlw .mlw-pagination ul li span {
	position: absolute;
	color: #fff;
	background-color: var(--mlw-secondary);
}

#mlw .mlw-empty {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 20px;
	color: #000;
	font-size: 16px;
	gap: 6px;
}

#mlw .mlw-empty p {
	font-size: 16px;
	margin: 0;
	color: var(--mlw-bg-dark);
}

#mlw .mlw-empty svg {
	height: 30px;
	width: 30px;
}

#mlw .mlw-sub-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
	/* column-count: 3;
	margin: 20px 0 30px; */
	width: calc(100% / 3);
}

#mlw .mlw-sub-block ul li {
	margin-bottom: 14px;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

#mlw .mlw-sub-block ul li input {
	/* position: relative;
	top: 1px;
	accent-color: var(--mlw-primary);
	margin-left: 2px;
	
	appearance: none;
	border: 1px solid var(--mlw-primary);
	height: 12px;
	width: 12px;
	border-radius: 2px; */
	-moz-appearance: none;
	-webkit-appearance: none;
	-o-appearance: none;
	outline: none;
	content: none;
	transform: scale(1.3);
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	-o-transform: scale(1.3);
	position: relative;
	top: 2px;
	cursor: pointer;
	left: 5px;
	height: 16px;
	width: 16px;
	margin-right: 8px;
}

#mlw .mlw-sub-block ul li input[type="checkbox"]:before {
	content: "";
	font-size: 15px;
	color: transparent !important;
	background: #fff;
	display: block;
	width: 16px;
	height: 16px;
	border: 1px solid var(--mlw-primary);
	margin-right: 7px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	background-size: 12px;
	background-position: 1px 1px;
	background-repeat: no-repeat;
}

#mlw .mlw-sub-block ul li input[type="checkbox"]:checked:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.892' height='19.454' viewBox='0 0 19.892 19.454' fill='%23f3cfb2'%3E%3Cg id='Group_465' data-name='Group 465' transform='translate(681.041 -1398.143) rotate(30)'%3E%3Crect id='Rectangle_158' data-name='Rectangle 158' class='cls-1' width='6' height='18' transform='translate(122 1544)'/%3E%3Crect id='Rectangle_159' data-name='Rectangle 159' class='cls-1' width='6' height='12' transform='translate(128 1557) rotate(90)'/%3E%3C/g%3E%3C/svg%3E");
}

#mlw .mlw-sub-block ul li label {
	margin: 0;
	padding: 0;
	cursor: pointer;
	line-height: 24px;
	font-size: 20px;
	font-weight: 500;
	color: var(--mlw-secondary);
}

#mlw .mlw-choices {
	display: flex;
	gap: 50px;
}

#mlw .mlw-single-choice:not(.mlw-main-choice) {
/* 	edit for some issue */
	margin-top: 0px !important;
}

@media (max-width: 767.98px) {
	#mlw .mlw-post {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		gap: 30px;
		padding: 50px 30px;
	}

	#mlw .mlw-post > div {
		width: 100%;
	}

	#mlw .mlw-picture {
		min-height: 280px;
	}

	#mlw .mlw-post h2 {
		font-weight: 500;
		font-size: 24px;
	}

	#mlw .mlw-post .mlw-permalink {
		display: block;
		width: 100%;
		padding: 12px;
		text-align: center;
		font-weight: 400;
		font-size: 16px;
	}

	#mlw .mlw-headline {
		font-size: 24px;
		font-weight: 500;
	}

	#mlw .mlw-select {
		width: 100%;
	}

	#mlw select {
		width: 100%;
		font-size: 16px;
		background-position-y: 11px;
	}

	/* #mlw .mlw-sub-block ul {
		column-count: 2;
	} */
	#mlw .mlw-choices {
		display: block;
	}

	#mlw .mlw-sub-block ul {
		width: 100%;
	}

	#mlw .mlw-single-choice:not(.mlw-main-choice) {
		margin-top: 0 !important;
	}
}
