@import url("https://fonts.googleapis.com/css2?family=Aladin&family=Andada+Pro:ital,wght@0,400..840;1,400..840&display=swap");

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Andada Pro", serif;
	line-height: 1;
	font-size: 16px;
}

body {
	--general-background-color: #054e82;
	--general-text-color: #fff;
	--prompt-text-color: #fff;
	--prompt-text-size: 18px;
	--prompt-line-height: 1.3;
	--prompt-alignment: center;
	--prompt-background: transparent;
	--strong-text-color: #222222;
	--options-chip-background-color: transparent;
	--theme-border: rgba(85, 89, 94, 0.2);
	--chip-shadow: inset 0px 0px 0px transparent;
	--option-background-color: #fffcf5;
	--theme-shading: #ee0000;
	--theme-border: #5f4b44;
	--option-text-primary-color: #1e1818;
	--option-text-secondary-color: #55595e;
	--wrong-answer: #f34e4e;
	--correct-answer: #5bba74;
}

html,
body {
	width: 100%;
	height: 100%;
}

body {
	background: #1b1d20;
	backdrop-filter: blur(24px) brightness(0.5);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: 100%;
	height: 100%;
}

.slide {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide-items {
	position: relative;
	grid-area: 1/1;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.slide-item-bg,
.img-scroll {
	width: 100%;
	height: 100%;
}

.slide-item-bg img,
.slide-item-bg video,
.img-scroll img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slide-item-bg .scroll-full {
	width: 100%;
	max-height: 90%;
	object-fit: fill;
	height: auto;
	left: 2px;
	right: 0;
	bottom: 0;
	margin: auto;
}

.slide-item-bg video.square-video,
.slide-item-bg .illust-info {
	height: auto;
}

.illust-info {
	object-fit: cover;
}

.slide-item-bg iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slide-nav {
	grid-area: 1 / 1;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
	height: 64px;
}

.slide-nav button {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	opacity: 0;
}

.slide-item-wrap {
	width: 100%;
	height: 100%;
	z-index: 0;
}

.slide-item-wrap.active {
	z-index: 1;
}

.slide-items > * {
	position: absolute;
	top: 0px;
	opacity: 0;
	pointer-events: none;
}

.slide-items > .active {
	position: relative;
	opacity: 1;
	pointer-events: initial;
}

.slide-thumb {
	display: flex;
	grid-column: 1 / 3;
	padding: 0 10px;
}

.slide-thumb > span {
	flex: 1;
	display: block;
	height: 2px;
	background: rgba(255, 255, 255, 0.4);
	margin: 8px 2px 2px;
	border-radius: 2px;
	overflow: hidden;
}

.slide-thumb > span.done {
	background: rgba(255, 255, 255, 0.9);
}

.slide-thumb > span.active::after {
	content: "";
	display: block;
	height: inherit;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 3px;
	transform: translateX(-100%);
	animation: thumb 10s forwards linear;
}

.slide-arrow {
	display: none;
}

.slide-arrow-prev,
.slide-arrow-next,
.slide-arrow-reload {
	background: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	padding: 8px;
	border: none;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.slide-arrow-prev.inactive,
.slide-arrow-next.inactive {
	opacity: 0.1;
	pointer-events: none;
}

.slide-arrow-prev {
	left: -75px;
	background-image: url(../images/arrow-back.svg);
}

.slide-arrow-next {
	right: -75px;
	background-image: url(../images/arrow-next.svg);
}

.slide-arrow-reload {
	right: -75px;
	background-image: url(../images/reload.svg);
	display: none;
}

.slide-arrow-reload.active {
	display: block;
}

.slide-btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
}

.slide-prev {
	width: 30%;
}

.slide-next {
	width: 70%;
}

.slide-next.disabled,
.slide-prev.disabled {
	pointer-events: none;
}

.slide-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
}

.slide-instruction {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	display: flex;
	padding: 16px 0 8px;
	display: none;
}

.slide-instruction.show {
	display: flex;
}

.slide-instruction-prev,
.slide-instruction-next {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	gap: 20px;
	color: #fff;
}

.slide-instruction-prev {
	width: 30%;
}

.slide-instruction-next {
	width: 70%;
}

.instruction-prev,
.instruction-next {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding: 8px;
	position: relative;
	border: none;
}

.instruction-prev::before,
.instruction-next::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	animation: pulse 1s infinite ease-in-out;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.5);
	}
}

.slide-instruction-divider {
	width: 1px;
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23fff' stroke-width='2' stroke-dasharray='10' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
}

.slide-share {
	position: absolute;
	top: 20px;
	right: 16px;
	width: 28px;
	height: 28px;
	z-index: 3;
	background-color: transparent;
	background-size: contain;
	border: none;
	background-image: url(../images/send.svg);
	cursor: pointer;
}

.slide-item-grid-layer {
	position: absolute;
	display: grid;
	right: 0;
	bottom: 0;
	left: 0;
	top: 0;
	z-index: 2;
}

.text-box {
	color: var(--general-text-color);
}

.text-box h1 {
	font-size: 20px;
	margin-bottom: 10px;
}

.abs-x-centered {
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.abs-y-centered {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.cover-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 10%;
}

.cover-title {
	width: calc(100% - 120px);
	max-width: 300px;
	margin-bottom: 20px;
}

.interactive-selection-txt {
	font-family: "Andada Pro", serif;
	top: 10%;
	color: #fff;
	filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
	font-size: 35px;
	line-height: 40px;
	font-weight: 700;
	text-align: center;
	max-width: 350px;
	margin: 0 auto;
}

.cover-title span {
	display: block;
	font-size: 4rem;
}

.cover-title-small {
	top: 40%;
	width: 55%;
}

.interactive-selection-txt--small {
	top: 40%;
	width: 70%;
	font-family: "Andada Pro", serif;
	color: #fff;
	text-wrap: balance;
	font-size: 1.5rem;
	line-height: 2rem;
	filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

.interactive-selection-txt.--small {
	font-size: 1.5rem;
	font-weight: 400;
	margin-top: 20px;
}

.text-desc {
	max-width: 270px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.7rem;
	margin: 0 auto;
	text-align: center;
}

.text-desc.bottom-desc {
	max-width: none;
	margin: 0;
	gap: 1rem;
	justify-content: center;
	background-image: url(../images/scroll-half.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100% 100%;
}

.text-desc-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
}

.text-desc-bg img {
	width: 100%;
	height: 100%;
}

.title-desc {
	font-family: "Andada Pro", serif;
	color: #fff;
	font-size: 2.3rem;
	font-weight: 700;
	filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

.title-desc-small {
	filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
	padding: 0 10px;
}

.title-desc-small p {
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	margin-bottom: 15px;
}

.bottom-desc .title-desc-small {
	padding: 0px 25px;
	max-width: 360px;
}

.text-desc .button-gold {
	top: 0;
}

.disclaimer-illust {
	width: 120px;

	margin: 10px auto 0;
	border-radius: 10px;
	background-color: rgba(0, 0, 0, 0.3);
	color: #fff;
	font-size: 8px;
	font-weight: 400;
	padding: 5px 10px;
	border-radius: 5px;
}

.interactive-poll {
	min-width: 14em;
	max-width: 20em;
	width: 100%;
	margin: auto;
}

/* interactive poll 4 option */
.interactive-poll-prompt-container {
	display: flex;
	justify-items: center;
	padding: 1em;
	color: var(--prompt-text-color);
	background-color: var(--prompt-background);
	border-radius: 1em 1em 0 0;
}

.interactive-poll-prompt {
	margin: 0px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	visibility: visible;
	font-size: var(--prompt-text-size);
	line-height: var(--prompt-line-height);
	font-weight: 700;
	text-align: var(--prompt-alignment);
	width: 100%;
}

.interactive-poll-option-container,
.interactive-poll-option-img-container,
.interactive-poll-option-multiple-container {
	background-color: var(--options-chip-background-color);
	border-radius: 0.75em;
	color: var(--strong-text-color);
	padding: 0.5em 0;
	margin-top: -0.5em;
}

.interactive-poll-option {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	min-height: 2.5em;
	overflow: hidden;
	position: relative;
	border-radius: 0.5em;
	background-color: var(--option-background-color);
	border: none;
	font: inherit;
	color: inherit;
	width: 100%;
	outline: none;
	text-align: start;
}

.interactive-poll-option:not(:first-child) {
	margin-top: 0.5em;
}

.interactive-poll-option label {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.interactive-poll-option label input,
.interactive-poll-option-img label input {
	display: none;
}

.interactive-poll-option label span {
	width: 100%;
	height: 100%;
	align-items: center;
	display: flex;
	padding: 0.75em;
	background-color: transparent;
	transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.interactive-poll-option label input:checked + span {
	background-color: var(--theme-shading);
}

/* interactive poll 4 option with image addition */
.interactive-poll-img {
	width: 15em;
	margin: auto;
}

.interactive-poll-option-img-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	align-items: center;
	justify-content: center;
}

.interactive-poll-option-img {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	width: 6em;
	/* overflow: hidden; */
	position: relative;
	box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px var(--theme-border);
	-webkit-box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px var(--theme-border);
	-moz-box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px var(--theme-border);
	border-radius: 50%;
	background-color: var(--option-background-color);
	border: none;
	font: inherit;
	color: inherit;
	outline: none;
	text-align: start;
	transition: all 0.1s cubic-bezier(0.3, 0, 0, 1);
}

.interactive-poll-option-img.selected {
	border: solid 4px var(--prompt-background);
}

.interactive-poll-option-img label {
	cursor: pointer;
}

.interactive-poll-option-img input:checked ~ label {
	/* border: solid 2px var(--theme-shading); */
	background-color: #222222;
}

/* interactive poll binary / boolean / yes or no */
.interactive-poll-binary {
	width: 16em;
	margin: auto;
}

.interactive-option-binary {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 50%;
	position: relative;
	background-color: transparent;
	font: inherit;
	border: none;
	outline: none;
	color: inherit;
	cursor: pointer;
}

.interactive-poll-binary-option-container {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	background: var(--option-background-color);
	color: var(--option-text-primary-color);
	height: 5em;
	border-radius: 1em;
	overflow: hidden;
	box-shadow: 0px 4px 12px rgba(60, 64, 67, 0.08), 0px 2px 4px rgba(60, 64, 67, 0.12);
	margin-top: -0.875em;
}

.interactive-option-binary .interactive-option-binary-percent-bar {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	opacity: 0;
	transform-origin: left;
	transition: transform 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.interactive-option-binary:last-child .interactive-option-binary-percent-ba {
	transform-origin: right;
	right: 0;
	left: unset;
}

.interactive-post-selection .interactive-option-binary-selected .interactive-option-binary-percent-bar {
	background-color: var(--general-background-color);
	opacity: 0.2;
	animation: interactive-animation-flash-background forwards 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.interactive-option .interactive-option-percent-bar {
	height: 100%;
	width: 100%;
	position: absolute;
	opacity: 0;
	transform-origin: left;
	transition: transform 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.interactive-option-binary-divider {
	height: 100%;
	width: 1px;
	opacity: 0.3;
	background-color: var(--theme-border);
}

.interactive-option-binary-text-container {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction: column;
	flex-direction: column;
	transform: translateY(calc(1em + 1px));
	transition: transform 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.interactive-option-binary-title-text {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: transform 0.3s cubic-bezier(0.3, 0, 0, 1);
	max-height: 2.6em;
	font-size: inherit;
	line-height: inherit;
}

.interactive-option-binary-title {
	font-weight: 800;
	font-size: 1.5em;
	margin: 0;
	line-height: 1.3em;
	width: 4.42em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	transform: scale(1);
	transition: transform 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.interactive-option-binary-percentage-text {
	font-weight: 700;
	font-size: 1.375em;
	transform: scale(0);
	display: inline-block;
	transition: transform 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.interactive-post-selection .interactive-option-binary-title {
	transform: scale(0.5);
}

.interactive-post-selection .interactive-option-binary-percentage-text {
	transform: scale(1) translateY(-0.75em);
}

.interactive-post-selection .interactive-option-binary-text-container {
	transform: translateY(0);
}

@keyframes interactive-animation-flash-background {
	0% {
		opacity: 0.4;
	}

	100% {
		opacity: 0.2;
	}
}

/* interactive poll result */
.interactive-results {
	min-width: 14em;
	max-width: 25em;
	width: 15em;
	margin: auto;
}

.interactive-results-container {
	background: var(--options-chip-background-color);
	border-radius: 1em;
	color: var(--option-text-primary-color);
	text-align: center;
	box-shadow: 0px 4px 12px rgba(60, 64, 67, 0.08), 0px 2px 4px rgba(60, 64, 67, 0.12);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 1.25em;
	padding-top: 2em;
	overflow: hidden;
}

.interactive-results-img {
	width: 8.75em;
	height: 8.75em;
	border-radius: 50%;
	overflow: hidden;
	border: solid 2px var(--prompt-background);
	padding: 8px;
}

.interactive-results-img img {
	border-radius: 50%;
}

.interactive-results-prompt {
	text-transform: uppercase;
	font-size: 0.75em;
	margin-top: 1.75em;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.interactive-results-title {
	font-size: 1.75em;
	font-weight: 700;
	padding: 0px 1.4em;
}

.interactive-results-desc {
	font-size: 0.875em;
	text-align: center;
	color: var(--option-text-secondary-color);
	margin-top: 0.5em;
	padding: 0px 1.4em;
}

.interactive-results-score div {
	font-size: 14px;
}

.interactive-results-score span {
	font-size: 20px;
}

@keyframes thumb {
	to {
		transform: initial;
	}
}

/* Interactive Quiz 4 option */
.interactive-quiz .interactive-poll-option {
	border-radius: 20px;
}

.interactive-quiz .interactive-poll-option label span {
	padding-left: 0.5em;
}

.interactive-quiz .input-option {
	width: 1.75em;
	height: 1.75em;
	border: solid 1px var(--general-background-color);
	color: var(--general-background-color);
	justify-content: center;
	border-radius: 50%;
	display: block;
	padding: 0 !important;
	flex-shrink: 0;
	margin-left: 0.5em;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: flex;
	position: relative;
}

.interactive-quiz .quiz-wrong,
.interactive-quiz .quiz-wrong-selected,
.interactive-quiz .quiz-correct,
.interactive-quiz .quiz-correct-selected {
	pointer-events: none;
}

.interactive-quiz .quiz-wrong label .input-option {
	color: var(--wrong-answer);
	border-color: var(--wrong-answer);
	background-color: var(--option-background-color);
}

.interactive-quiz .quiz-wrong-selected label {
	background-color: var(--wrong-answer);
	color: var(--general-text-color);
}

.interactive-quiz .quiz-wrong-selected label .input-option {
	color: var(--wrong-answer);
	border-color: var(--general-text-color);
	background-color: var(--option-background-color);
}

.interactive-quiz .quiz-wrong label .input-option::after,
.interactive-quiz .quiz-wrong-selected label .input-option::after {
	display: flex;
	content: "\2715";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
}

.interactive-quiz .quiz-correct label .input-option {
	color: var(--correct-answer);
	border-color: var(--correct-answer);
	background-color: var(--option-background-color);
}

.interactive-quiz .quiz-correct-selected label {
	background-color: var(--correct-answer);
	color: var(--general-text-color);
}

.interactive-quiz .quiz-correct-selected label .input-option {
	color: var(--correct-answer);
	border-color: var(--general-text-color);
	background-color: var(--option-background-color);
}

.interactive-quiz .quiz-correct label .input-option::after,
.interactive-quiz .quiz-correct-selected label .input-option::after {
	display: flex;
	content: "\2713";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
}

/* Interactive Quiz 4 option with image */
.interactive-quiz-img .input-option {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75em;
	height: 1.75em;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--general-background-color);
	border: solid 2px #fff;
	border-radius: 50%;
	color: var(--general-text-color);
}

.interactive-quiz-img .quiz-wrong,
.interactive-quiz-img .quiz-wrong-selected,
.interactive-quiz-img .quiz-correct,
.interactive-quiz-img .quiz-correct-selected {
	pointer-events: none;
}

.interactive-quiz-img .quiz-wrong-selected {
	border: solid 4px var(--wrong-answer);
}

.interactive-quiz-img .quiz-wrong .input-option::after,
.interactive-quiz-img .quiz-wrong-selected .input-option::after {
	display: flex;
	content: "\2715";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: var(--wrong-answer);
}

.interactive-quiz-img .quiz-correct-selected {
	border: solid 4px var(--correct-answer);
}

.interactive-quiz-img .quiz-correct .input-option::after,
.interactive-quiz-img .quiz-correct-selected .input-option::after {
	display: flex;
	content: "\2713";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: var(--correct-answer);
}

.video-youtube {
	width: 100%;
	height: 100%;
}

/* interactive result score */
.quiz-results .interactive-results-container {
	padding-top: 0;
}

.interactive-results-score {
	width: 100%;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 1em;
	background: var(--prompt-background);
	color: var(--general-text-color);
	font-weight: bold;
}

.interactive-poll-multiple-option-container {
	background: var(--option-background-color);
	color: var(--option-text-primary-color);
	border-radius: 1em;
	overflow: hidden;
	box-shadow: 0px 4px 12px rgba(60, 64, 67, 0.08), 0px 2px 4px rgba(60, 64, 67, 0.12);
	margin-top: -0.875em;
}

.interactive-content {
	display: flex;
	flex-direction: column;
}

.interactive-content video {
	width: 100%;
	object-fit: cover;
	max-height: 280px;
}

.interactive-content .result-zodiac-pic video {
	max-height: 150px;
}

.interactive-content video {
	object-position: top;
}

.interactive-custom {
	margin-bottom: 0;
}

.interactive-custom .quiz-correct-selected label .input-option {
	border-color: #000;
}

.interactive-custom .interactive-poll-prompt-container {
	padding: 1em;
	border-radius: 8px;
	border: solid 2px #000;
	position: relative;
	box-shadow: 2px 2px;
}

.interactive-custom .interactive-poll-option-container {
	margin-top: 0;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
}

.interactive-custom .interactive-poll-option {
	border-radius: 8px;
	border: solid 2px #000;
	box-shadow: 2px 2px;
}

.interactive-custom .input-option {
	border: solid 2px #000;
	border-radius: 6px;
	background-color: #ddcc4c;
	font-weight: 700;
	margin-left: 0.25em;
	color: #000;
}

.interactive-custom .quiz-wrong-selected label .input-option,
.interactive-custom .quiz-wrong label .input-option,
.interactive-custom .quiz-correct label .input-option {
	border-color: #000;
}

.custom-more p {
	font-size: 1.25em;
	font-weight: 700;
	text-align: center;
	color: var(--general-text-color);
	text-shadow: 1.5px 1.5px 0 #000, -1.5px 1.5px 0 #000, -1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000;
}

.interactive-custom .interactive-results-container {
	box-shadow: none;
}

.interactive-custom.interactive-results {
	margin-top: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.interactive-custom .interactive-results-prompt {
	margin-top: 0;
	letter-spacing: normal;
	font-size: 2em;
	color: #000;
	text-transform: none;
}

.interactive-content .interactive-custom-result {
	font-weight: 700;
	font-size: 1.25em;
	color: #000;
}

.interactive-content .interactive-custom-result span {
	font-size: 1em;
	color: #000;
}

.cta-start {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
}

/* interactive survey */
.interactive-survey {
	display: flex;
	flex-direction: column;
}

.interactive-survey .interactive-poll-prompt {
	text-align: center;
}

.interactive-survey .interactive-poll-option label span {
	justify-content: center;
	text-align: center;
}

.interactive-survey .interactive-poll-option label input:checked + span {
	color: #fff;
}

.interactive-poll-option.disabled {
	pointer-events: none;
}

.interactive-survey .interactive-results-container {
	box-shadow: none;
}

.interactive-survey-result {
	top: 42%;
}

.result-text {
	font-weight: 500;
	font-size: 14px;
	margin-top: 20px;
}

.custom-cta {
	font-size: 14px;
	font-weight: 700;
	color: #000;
}

.text-white {
	color: #fffcf5;
}

.text-green {
	color: #3f5929;
}

.text-brown {
	color: #7b280f;
}

.text-purple {
	color: #4d365c;
}

.quiz-1 > img {
	width: 95%;
	margin: auto;
}

.quiz-2 > img {
	width: 60%;
	margin: -10px auto -5px;
}

.quiz-2 .interactive-poll-prompt {
	color: #fbf4eb;
}

.quiz-3 > img {
	width: 85%;
	margin: auto;
}

.quiz-3 .interactive-poll-prompt {
	color: #3f5929;
}

.quiz-4 > img {
	width: 68%;
	margin: -20px auto -5px;
}

.quiz-4 .interactive-poll-prompt {
	color: #fbf4eb;
}

.quiz-5 .interactive-poll-prompt {
	color: #7b280f;
}

.quiz-5 .interactive-poll-multiple-option {
	height: 3.5em;
	padding: 4px 10px;
}

.quiz-5 .opt-group {
	display: flex;
	height: 100%;
	align-items: center;
	flex-grow: 1;
}

.quiz-5 label img {
	max-width: 48px;
	height: 100%;
	width: 100%;
	object-fit: contain;
	margin-right: 10px;
}

.quiz-6 .interactive-poll-prompt {
	color: #4d365c;
}

.quiz-7 > img {
	width: 55%;
	margin: -20px auto -5px;
}

.quiz-7 .interactive-poll-prompt {
	color: #fbf4eb;
}

.quiz-7 span {
	font-size: 14px;
	text-align: center;
}

.interactive-poll-multiple-option {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	height: 2.5em;
	overflow: hidden;
	position: relative;
	box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px var(--theme-border), 2px 2px 0px 0px var(--theme-border);
	-webkit-box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px var(--theme-border), 2px 2px 0px 0px var(--theme-border);
	-moz-box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px var(--theme-border), 2px 2px 0px 0px var(--theme-border);
	border-radius: 0.5em;
	background-color: var(--option-background-color);
	border: none;
	font: inherit;
	color: inherit;
	width: 100%;
	outline: none;
	text-align: start;
	margin: 8px 0;
}

.interactive-poll-multiple-option input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.interactive-poll-multiple-option input + label {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	user-select: none;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	padding: 10px;
}

.interactive-poll-multiple-option input + label::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #5f4b44;
	border-radius: 4px;
	margin-right: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70% 70%;
}

.interactive-poll-multiple-option input:checked + label::before {
	border-color: blue;
	background-color: blue;
	background-image: url(../images/check-white.png);
}

.interactive-poll-multiple-option .answer {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--option-background-color);
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	flex-shrink: 0;
}

.interactive-poll-multiple-option[data-answer="correct"] .answer {
	background-image: url(../images/check.png);
}

.interactive-poll-multiple-option[data-answer="wrong"] .answer {
	background-image: url(../images/cross.png);
}

.checkbox-disabled {
	pointer-events: none;
}

.option-selected[data-answer="correct"] {
	background-color: #4faa8f;
	color: #fff;
	box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px #38856e, 2px 2px 0px 0px #38856e;
	-webkit-box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px #38856e, 2px 2px 0px 0px #38856e;
}

.option-selected[data-answer="correct"] input:checked + label::before {
	border-color: rgba(45, 43, 43, 0.7);
	background-color: rgba(45, 43, 43, 0.7);
}

.option-selected[data-answer="wrong"] {
	background-color: #ec5932;
	color: #fff;
	box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px #b13510, 2px 2px 0px 0px #b13510;
	-webkit-box-shadow: var(--chip-shadow), inset 0px 0px 0px 1px #b13510, 2px 2px 0px 0px #b13510;
}

.option-selected[data-answer="wrong"] input:checked + label::before {
	border-color: rgba(46, 46, 46, 0.7);
	background-color: rgba(46, 46, 46, 0.7);
}

.option-selected[data-answer="correct"] .answer,
.option-selected[data-answer="wrong"] .answer {
	opacity: 1;
}

.button-cover,
.story-btn {
	width: 180px;
	display: block;
	cursor: pointer;
	z-index: 1;
	position: relative;
	top: 70%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-decoration: none;
	background: transparent;
	border: none;
}

.button-cover {
	width: 230px;
}
.story-btn {
	top: 0;
}

.button-gold {
	display: block;
	cursor: pointer;
	z-index: 1;
	position: relative;
	top: 70%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-decoration: none;
	border: none;
	width: 250px;
	background-color: transparent;
}

.bottom-desc .button-gold {
	margin: 10% 0 0 auto;
	border-radius: 8px 0 0 8px;
}

.bottom-desc .button-gold.end-story {
	margin: 5% auto 0;
	border-radius: 8px;
	padding: 0.5em 1em;
}

.button-gold.show-zodiac-result {
	display: none;
	position: absolute;
	height: 40px;
	top: 75% !important;
}

.cta-tap {
	position: relative;
	width: 100%;
	padding: 0 15px;
	height: 29px;
	margin: 0 auto;
	z-index: 1;
	color: #fff;
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1rem;
	text-decoration: none;
	text-wrap: balance;
}

.cta-tap span {
	font-size: inherit;
	font-weight: 600;
	text-decoration: underline;
}

.interactive-poll > img {
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.share-cta {
	position: absolute;
	bottom: 16%;
	left: 0;
	right: 0;
}

/* interactive selection */

.interactive-selection {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
}

.main-selection {
	position: relative;
	width: 300px;
	margin-top: 4rem;
	margin-bottom: 8rem;
	z-index: 2;
	display: flex;
	gap: 15px;
}

.main-selection > div {
	position: relative;
	width: 300px;
}

.main-selection > div:nth-child(2) {
	width: 55%;
}

.main-selection select {
	appearance: none;
	width: 100%;
	padding: 0.8rem 1rem;
	background: #d78101;
	background: linear-gradient(4deg, rgba(215, 129, 1, 1) 0%, rgba(223, 168, 49, 1) 100%);
	color: #27282e;
	border-radius: 8px;
	overflow: hidden;
	border: none;
	outline: none;
}

.icon-dropdown {
	width: 13px;
	height: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto 0;
}

.icon-dropdown img {
	width: 100%;
}

.interactive-selection .button-gold {
	top: 3%;
	padding: 0.5em 1em;
	text-wrap: balance;
	pointer-events: none;
}

.slide-item-grid-layer.last {
	padding: 0;
}

.result-zodiac-pic {
	width: 100%;
}

.selection_result .text-desc.bottom-desc {
	height: 100%;
	position: relative;
	text-align: center;
	justify-content: start;
	background-image: none;
	color: #fff;
	padding-top: 10px;
	font-weight: 400;
}

.profile-zodiac {
	font-family: "Aladin", system-ui;
	color: #fff;
	position: absolute;
	top: 8%;
	left: 10%;
}

#title-zodiac {
	font-family: inherit;
	font-size: 35px;
	margin-bottom: 5px;
}

#date-zodiac {
	font-family: inherit;
	font-size: 18px;
}

.share-txt {
	color: #ffffff;
	font-family: "Andada Pro", serif;
	font-size: 12px;
	text-wrap: balance;
	padding: 0 20px;
}

.bottom-desc .button-gold.share-cta {
	width: 180px;
	height: 40px;
	position: static;
	margin: 0 auto;
	border-radius: 8px;
	padding: 0.5em 0;
}

.selection_result .title-desc-small {
	font-size: 12px;
	line-height: 15px;
	font-weight: 600;
	max-width: 380px;
}

.scroll-ramalan {
	height: 170px;
	width: calc(100% - 75px);
	margin: 0 auto;
	overflow-y: auto;
	padding: 0 10px;
	box-shadow: inset -5px 0 5px -5px rgba(176, 87, 0, 1);
	/* ;

	scrollbar-color: #b15700 #502903;
	scrollbar-width: auto; */
}

.scroll-ramalan::-webkit-scrollbar {
	background: #502903;
	width: 5px;
	border-radius: 8px;
}
.scroll-ramalan::-webkit-scrollbar-thumb {
	background: #b15700;
	border-radius: 8px;
}

.scroll-ramalan > div {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
	background-color: #163e7b;
	padding: 5px 15px;
	border-radius: 5px;
}

.scroll-ramalan > div:first-child {
	display: block;
	background-color: transparent;
	border-radius: 0;
}

.scroll-ramalan > div:last-child {
	margin-bottom: 0;
}

.scroll-ramalan .ramalan-pic {
	width: 55px;
	flex: none;
	height: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-ramalan p {
	font-size: 11px;
	line-height: 15px;
	text-align: left;
	font-weight: 200;
}

.artikel-txt {
	color: #fff;
}

.list-artikel {
	position: relative;
	z-index: 3;
}

.list-artikel p {
	text-align: center;
	color: #fff;
	font-size: 12px;
}
.artikel-slider {
	width: 100%;
	max-width: 235px;
	margin: 10px auto 0;
	overflow: hidden;
}

.artikel-slider a {
	text-decoration: none;
}

.slider,
.slider-item,
.slider-item > div {
	width: 100%;
	height: 100%;
}

.slider-item {
	border-radius: 8px;
	background-color: #fff;
}

.slider-item > a > div {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px;
	height: 75px;
}

.slider-img {
	flex: none;
	width: fit-content;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
}

.slider-img img {
	height: 100%;
	object-fit: cover;
}

.slider-text {
	height: 100%;

	display: flex;
	align-items: center;
}

.slider-text p {
	color: #182a6c;
	text-align: left;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.share-result {
	position: relative;
	z-index: 3;
}

.share-result p {
	color: #fff;
	font-size: 12px;
	text-align: center;
	margin: 0 auto;
	max-width: calc(100% - 50px);
}

.socmed-share {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 10px;
}

.socmed-share img {
	width: 30px;
}

.landing-cta {
	color: #ffbf2b;
	text-decoration: none;
	font-size: inherit;
}

audio {
	display: none;
}

.sound-control {
	position: absolute;
	top: 20px;
	left: 16px;
	display: flex;
	z-index: 1;
	cursor: pointer;
}

.sound-control img {
	width: 25px;
}

.sound-control .sound-mute {
	display: none;
}

.sound-control.pause .sound-mute {
	display: block;
}

.sound-control.pause .sound-on {
	display: none;
}

.slide-item-bg img.zodiac-person {
	position: absolute;
	top: unset;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: auto;
}

/* media query */

@media only screen and (min-width: 390px) and (max-width: 700px) {
	.title-desc-small p {
		font-size: 20px;
		line-height: 23px;
	}

	.button-cover,
	.story-btn {
		width: 250px;
	}

	.selection_result .text-desc.bottom-desc {
		padding-top: 20px;
	}

	.selection_result .title-desc-small {
		font-size: 13px;
	}

	.scroll-ramalan p {
		font-size: 12px;
	}

	/* .list-artikel p,
	.share-result p {
		font-size: 14px;
		text-wrap: balance;
		margin: 10px auto;
	} */

	/* .artikel-slider {
		max-width: 225px;
	} */

	/* .slider-item > a > div {
		height: 60px;
	} */

	.interactive-content .result-zodiac-pic video {
		max-height: 200px;
	}
}

@media screen and (min-width: 768px) {
	.instagram-share {
		display: none;
	}
}

@media only screen and (min-width: 1024px) {
	.container {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slide {
		max-width: 380px;
		max-height: 675.5px;
		width: auto;
		height: 95%;
		aspect-ratio: 9 / 16;
		margin: auto;
	}

	.slide-items {
		border-radius: 20px;
		box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.4);
	}

	.slide-nav {
		border-radius: 20px 20px 0 0;
	}

	.slide-arrow {
		display: block;
	}

	.cover-title {
		width: calc(100% - 100px);
	}

	.illust-info {
		max-height: 315px;
	}

	.title-desc-small p {
		font-size: 16px;
	}

	.selection_result .text-desc.bottom-desc {
		gap: 1.2rem;
	}

	.selection_result .text-desc.bottom-desc {
		padding-top: 25px;
	}

	.selection_result .title-desc-small {
		font-size: 14px;
		line-height: 16px;
	}

	.interactive-content video {
		max-height: 340px;
	}

	.interactive-content .result-zodiac-pic video {
		max-height: 230px;
	}
}
