@media (max-width: 600px) {
	
	
    .logo-r {
        margin-right: -1rem !important;
    }
	header { 
		padding-top: 0 !important; 
		margin-top: -8px !important;
	}
	
	
}




body {
    margin: 0;
    padding: 0;
    font-family: "Questrial", sans-serif;
    background: #f7f7f7;
    color: #123;
}


header {
	position: relative;
    text-align: center;
    padding: 0 0 16px 0;
	margin-top: 8vh;
}


@font-face {
	font-family: 'Questrial';
	src: url('../fonts/Questrial-Regular.ttf') format('truetype'), 
		 url('../fonts/Questrial-Regular.woff2') format('woff2'),
		 url('../fonts/Questrial-Regular.woff') format('woff');
}


@font-face {
	font-family: 'Kanit';
	src: url('../fonts/Kanit-Black.ttf') format('truetype'), 
		 url('../fonts/Kanit-Black.woff2') format('woff2'),
		 url('../fonts/Kanit-Black.woff') format('woff');
}


@font-face {
	font-family: 'Parisienne';
	src: url('../fonts/Parisienne-Regular.ttf') format('truetype'), 
		 url('../fonts/Parisienne-Regular.woff2') format('woff2'),
		 url('../fonts/Parisienne-Regular.woff') format('woff');
}


.logo {
    font-family: "Kanit", sans-serif;
    font-weight: 900;
    color: #123;
    margin: 0 auto -2px auto;
    padding: 0 4vw;              
    font-size: clamp(2.4rem, 12vw, 4rem);
    white-space: nowrap;         
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
}


.logo-news {
    position: relative;
    display: inline-block;
}


.logo-news::after {
    content: "©";
    position: absolute;
    top: 2em;   
    right: -0.55em; 
    font-size: 0.17em; 
    opacity: 0.7;
	color: #7f7f7f;
    pointer-events: none;
}


.logo span {
    color: #dc0d0d;
}


.logo-r {
    position: relative;
    display: inline-block;
    width: 0.9em;
    height: 0.75em;
    vertical-align: -0.05em;
    margin-right: -.32em; 
    color: transparent;
}


.logo-r::before,
.logo-r::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0.22em;
    height: 0.22em;
    background: #123;
}


.logo-r::before { top: 0.20em; }


.logo-r::after  { top: 0.50em; }


.logo-r-circle {
    position: absolute;
    top: 0.20em;
    left: 0.30em;
    width: 0.24em;
    height: 0.24em;
    background: #dc0d0d;
    border-radius: 50%;
}


.dot-square {
    display: inline-block;
    width: 0.22em;      
    height: 0.22em;
    background: #dc0d0d; 
	margin: 0 2px 0 2px;
}


.tagline {
	margin-top: 0;
	font-size: 1.2rem;
	color: #555;
}


.container {
    max-width: 520px;
    margin: 48px auto 64px auto;
    padding: 0 24px;
}


.search-box input[type="text"] {
	font-family: Questrial, sans-serif;
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}


.search-box button {
	font-family: Questrial, sans-serif;
    margin-top: 16px;
    width: 100%;
    padding: 19px 16px 19px 16px;
    background: #123456;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: 0.2s;
}


.search-box button:hover {
    background: #123;
}


.search-results-box {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
}


.search-result-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}


.search-result-item:last-child {
    border-bottom: none;
}


.search-result-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}


.search-result-snippet {
    font-size: 0.9rem;
    color: #444;
    margin-top: 5px;
}


.no-results {
    margin-top: 12px;
    color: #777;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}


.hamburger_menu {
	margin: 123px 0 4px 6px;
	display: inline-block;
}


.hamburger {
    width: 32px;
	cursor: pointer;
	padding: 12px;
}
	
	
.hamburger div {
	height: 4px;
	background: #123;
	margin: 6px 0;
	transition: 0.3s;
}


.hamburger.jump div {
    animation: hambJump 280ms ease-out;
}


@keyframes hambJump {
    0%   { transform: translateY(0); }
    35%  { transform: translateY(-4px); }
    70%  { transform: translateY(1px); }
    100% { transform: translateY(0); }
}


.fadein {
    opacity: 0;
    transform: translateY(6px);
    transition: 
		opacity 1.25s ease, 
		transform 1.25s ease;
}


.fadein.show {
    opacity: 1;
    transform: translateY(0);
}


.menu {
    display: none;
    background: transparent;
    margin: 0;
    padding: 0;
    position: relative;
    animation: fadeIn .75s ease forwards;
    border-top: none;
}


.menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 17px;
    right: 13px;
    height: 1px;
    background: #e3e3e3;
}


.menu a .count {
    opacity: 0.6;
    font-size: 0.9em;
    margin-left: 4px;
}


.menu-wrap {
    background: #f7f7f7;
    padding: 0;
}


.menu a {
    display: block;
    padding: 14px 6px 14px 12px;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    background: #fff;
    border-left: 6px solid transparent;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


.menu a:nth-child(1) { border-top-right-radius: 6px; }
.menu a:nth-child(13) { border-bottom-right-radius: 6px; }


.menu a.active {
    background: #e3e3e3;
    font-weight: bold;
}

.all 		 { border-left-color: #B2B2B2 !important; }
.nature	     { border-left-color: #7A9BAE !important; }
.science     { border-left-color: #3A8FB7 !important; }
.travel      { border-left-color: #4C8F8C !important; }
.work        { border-left-color: #8C9B6A !important; }
.sports      { border-left-color: #3F7D3C !important; }
.politics    { border-left-color: #3A4A6B !important; }
.arts        { border-left-color: #6E3A6F !important; }
.literature  { border-left-color: #5A4A6A !important; }
.religion    { border-left-color: #8A5A44 !important; }
.human       { border-left-color: #C00 	  !important; }
.crisis      { border-left-color: #A34A3A !important; }
.space 		 { border-left-color: #2D1E6F !important; }
.crime       { border-left-color: #4F1F1A !important; }
.it          { border-left-color: #000 	  !important; }
.general     { border-left-color: #6A7A8A !important; }


.about-reportage {
    float: right;
    cursor: pointer;
    font-size: .87rem;
    margin: 140px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
	line-height: .5
}


.eport-info {
	display: none; 
	border: 1px solid #e3e3e3; 
	margin: 48px 0 12px 0; 
	padding: 14px 18px 14px 18px; 
	border-radius: 6px; 
	background-color: #f7f7f7;
	line-height: 1.6;
	color: #123456;
	font-style: italic;
}


.about-eports {
	margin: 0 4px -3px 0 !important; 
	display: inline-block
}


.info-sign {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 0.08em solid #777;
	box-sizing: border-box;
	margin-left: 0.25em;
	font-size: 20px;
}


.info-sign .dot {
	width: 4px;
	height: 4px;
}


.info-sign .dot-circle {
	background: #b2b2b2;
	border-radius: 50%; 
}


.info-sign .dot-square {
	background: #777;
	margin-top: 1.5px;
}


.lede-wrapper {
	width: max-content;
	margin: 0 0 8px -4px;
	padding: 0 0 14px 0;
	border-bottom: 1px solid #e3e3e3;
}


.lede {
	font-weight: bold;
	font-size: .9rem;
	font-style: normal !important;
	font-family: Kanit, sans-serif;
	text-decoration: underline;
	color: #123;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .777rem .3rem .9rem;
	border: 1px dashed #e3e3e3;
	border-radius: 50%;
	line-height: 1;
	white-space: nowrap;
	position: relative;
}


.lede::after {
	content: "";
	position: absolute;
	bottom: .55rem;
	left: 44%;
	transform: translateX(-50%);
	width: 10px;
	height: 4px;
	background:
    linear-gradient(#123, #123) 0% 50% / 4px 4px no-repeat,
    linear-gradient(#123, #123) 100% 50% / 4px 4px no-repeat;
}


.lede::before {
	content: "";
	position: absolute;
	bottom: .55rem;
	left: calc(48% + 5px);
	width: 4px;
	height: 4px;
	background: #dc0d0d;
	border-radius: 50%;
}


.report-info {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-bottom: -12px !important;
}


.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    transform: translateY(5px);
}


.info-popup {
	position: absolute;
	top: 37px;
	left: -12px;
	background: #fff;
	color: #b2b2b2;
	padding: 2px 40px 0 12px;
	border-radius: 6px;
	font-size: 0.7rem;
	font-weight: bold;
	width: max-content;
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	-webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
	mask-image: linear-gradient(to right, black 75%, transparent 100%);
}


.meta {
    display: flex;
    align-items: center;
    gap: 12px;
}


.meta svg {
    display: block;
	margin-bottom: 3px;
}


.report-info:hover .info-popup {
	opacity: 1;
	visibility: visible;
}


.stats-icon .bar {
    fill: #b2b2b2;
    transition: fill 0.4s ease, transform 0.4s ease;
}


.info-icon:hover .bar-2 {
    fill: #ff6b6b;
    transform: translateY(-2px);
}


.info-icon:hover .bar-3 {
    fill: #ffa94d;
    transform: translateY(-3px);
}


.info-icon:hover .bar-4 {
    fill: #4dabf7;
    transform: translateY(-4px);
}


.info-icon:hover .bar-1 {
    fill: #51cf66;
}


.section-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.2rem;
	font-weight: 900;
    margin: 128px 12px 12px 18px;
    color: #123;
	border-top: 1px solid #e3e3e3;
	padding: 10px 0 2px 0;
}


.section-title_eports {
    font-family: Questrial, sans-serif;
    font-size: 1.2rem;
	font-weight: 300;
    margin: 0 12px 12px 18px;
    color: #123;
	border-top: 1px solid #e3e3e3;
	padding: 17px 0 6px 0;
}


.dash_e-ports {
	cursor: pointer; 
	font-weight: 900 !important
}


.section-title u {
	text-decoration: underline; 
	text-underline-offset: 0.11em; 
	text-decoration-thickness: 0.1em
}


.text-item {
    padding: 10px 0 18px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
	box-shadow:
	0 -6px 9px -4px rgba(0,0,0,0.1),   
	6px 0 9px -4px rgba(0,0,0,0.1),    
	0 6px 9px -4px rgba(0,0,0,0.1);   
}


.text-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.15rem;
    color: #dc0d0d;
    padding-bottom: 2px;
}


.load-spinner {
	display:none; 
	padding:20px; 
	text-align:center;
}


.end_marker {
	display:none; 
	padding:20px; 
	text-align:center; 
	opacity:0.6;
}


.text-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 4px;
    font-style: italic;
	display: block;
	width: 100%;        
	padding: 1px 0;    
	cursor: pointer; 
}


.text-meta {
    font-size: 0.85rem;
    color: #777;
    padding: 4px 0 20px 0;
	text-decoration: none
}


.no-rates {
	color: #123; 
	border-top: 1px solid #e3e3e3; 
	width: 100%; 
	padding: 20px 0 8px 0; 
	display: block; 
	font-size: .8rem
}


.pdf-img {
	height: 16px; 
	margin: 0 0 -1px 4px;
}


.pdf_index {
	float: right; 
	font-weight: bold;
	margin-top: -5px;
}


.read-link {
    font-size: 0.9rem;
    color: #123456;
    text-decoration: none;
    font-weight: bold;
	margin: 32px 0 6px 0;
	display: inline-block
}


.read-link:hover {
    text-decoration: underline;
}


.stolpe_stile {
	font-family: Questrial; 
	font-weight: bold; 
	font-size: 1.3rem;
}


.sub_rating {
	color: #123;
	text-decoration: none;
}


.featured {
    border-left: 6px solid #dc0d0d;
    background: linear-gradient(to right, #ffffff, #ffffffd0);
    border-radius: 6px;
	padding: 12px;
    margin-bottom: 64px;
	position: relative;
	box-sizing: border-box;
}


.color-non_pub {
	color: #e3e3e3
}


.featured .text-title {
    font-size: 1.22rem;
    color: #dc0d0d;
    letter-spacing: 0.2px;
}


.fade-out {
    opacity: 0;
    transition: opacity .5s ease;
}


.fade-in {
    opacity: 0;
    animation: fadeIn .5s ease forwards;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.destiny_link {
	color: #dc0d0d;
	text-decoration: none;
}


.interaction-bar {
	margin-top: 8px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	padding: 16px 0 2px 0;
	border-top: 1px solid #e3e3e3;
	height: 21px;
}


.heart { 
	width: 16px; 
	height: 16px; 
	fill: currentColor; 
} 


.heart-button { cursor: pointer; }
.heart-count { margin: 0 -1px 0 0; }
.heart-red .heart-icon svg { fill: #dc0d0d; }
.heart-blue .heart-icon_blue svg { fill: #123456; }
.score-output { font-weight: bold; }


.featured a:link,
.featured a:visited,
.featured a:hover,
.featured a:active {
    color: inherit !important;
    text-decoration: none !important;
}


.rank-item { 
	transition: transform 0.6s ease, opacity 0.6s ease; 
	opacity: 1; 
	position: relative; 
}


.rank-item.moving {
    opacity: 0.6;
}
	
	
.heart.red { color: #dc0d0d; } 
.heart.blue { color: #123456; }


.heart-button {
	border: none;
	background: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: ##123; 
	font-size: 1rem;
	font-family: Questrial, sans-serif;
	padding: 0;
	transition: color 0.2s ease;
}


#index-style {
	padding: 18px 12px 8px 0;
}


.heart-button.clicked {
	color: #123456; 
}


.heart-button .heart-icon {
	font-size: 1rem;
	transition: transform 0.15s ease;
}


.heart-icon {
	color: #dc0d0d;
	font-size: 1rem; 
	font-weight: 900;
	font-family: Questrial, sans-serif
}


.heart-button.pulse .heart-icon {
	transform: scale(1.35);
}


.heart-button_blue {
	border: none;
	margin: 0 1px -2px 0;
	background: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	color: #123456; 
	font-size: 1rem;
	font-family: Questrial, sans-serif;
	padding: 0;
	transition: color 0.2s ease;
}


.interaction-bar a,
.interaction-bar svg {
    pointer-events: none;
}


.rank-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    font-size: 1.2em;
}


#rank-wrapper {
	margin-top: 116px;
}


.rank-button_stl {
	margin-right: -8px;
}


.rank-blue,
.rank-red {
	font-size: 1rem;
	margin-left: -1px;
}


.heart-button_blue.clicked {
	color: #dc0d0d; 
}


.heart-button_blue .heart-icon_blue {
	font-size: 1rem;
	transition: transform 0.15s ease;
}


.heart-button_blue.pulse .heart-icon {
	transform: scale(1.35);
}


.rank-item {
    position: relative;
}


.popup-info {
    position: absolute;
    top: 40px;
    left: 0;
    width: 220px;
    display: none;
    z-index: 50;
}


.popup-box {
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    font-size: 14px;
}


#rank-button-2:hover ~ .popup-info {
    display: block;
}


#rank-button-2:active ~ .popup-info {
    display: block;
}


#rank-button-2:focus-within ~ .popup-info {
    display: block;
}


.rank-trigger {
    position: relative;
    display: inline-block;
}


.rank-popup {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-size: 13px;
    white-space: nowrap;
    display: none;
    z-index: 20;
}


.rank-popup::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #ccc transparent transparent transparent;
}


.rank-trigger:hover .rank-popup {
    display: block;
}


.rank-trigger:focus-within .rank-popup {
    display: block;
}


.share-button,
.comments-link {
	font-family: Questrial, sans-serif;
	border: none;
	background: none;
	cursor: pointer;
	color: #123456;
	font-size: 0.9rem;
	padding: 0;
	margin: 0 0 0 -2px;
}


.comments-link:hover {
	color: #123;
}


.publish-btn {
	display: inline-block;
	font-size: 1.15rem;
	font-family: Kanit, sans-serif;
	color: #fff;
	background: #dc0d0d;
	margin: 48px 0 -12px 0;
	padding: 12px 26px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 900;
	letter-spacing: 0.3px;
	transition: 0.25s ease;
	box-shadow: 0 3px 10px rgba(220, 13, 13, 0.25);
}


.publish-btn:hover {
	background: #b50b0b;
	box-shadow: 0 4px 14px rgba(220, 13, 13, 0.35);
	transform: translateY(-2px);
}


.publish-wrapper {
	text-align: center;
	margin: 123px 0 123px 0;
}


.publish-note {
	margin-top: 12px;
	text-align: center;
	color: #777;
	font-size: 0.9rem;
	display: none;
}


.rank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.rank-name {
    font-family: "Kanit", sans-serif;
    font-size: 1.2rem;
    color: #123;
}


.rank-score {
    font-family: "Kanit", sans-serif;
    font-weight: 900;
    color: #123;
	font-size: 0.9rem;
	display: inline-block;
	margin-top: -2px;
}


#no-touch-heart {
	margin: 0 0 -3px 0;
}


#count-destiny-blue {
	margin: 0 0 0 -10px;
	font-size: 1rem;
	font-family: Questrial, sans-serif
}


#count-destiny-red {
	margin: 0 0 0 -10px;
	font-size: 1rem;
	font-family: Questrial, sans-serif
}


.separator {
	padding-bottom: 2px;
}


.rank-number {
	position: absolute;
	top: 8px;
	right: 12px;
	font-family: "Kanit", sans-serif;
	font-size: 1.15rem;
	font-weight: 900;
	color: #dc0d0d;
	opacity: 0.85;
}


.heart-icon, .heart-icon_blue {
    cursor: pointer;
	user-select: none;
	font-size: 1rem;
	display: inline-flex; 
	align-items: center; 
	justify-content: center; 
	line-height: 1;
	margin: -3px 0 0 0;
}


.heart-icon { color: #dc0d0d; }
.heart-icon_blue { color: #123456; }
.heart-icon:hover, 
.heart-icon_blue:hover {
	cursor: pointer
}


.info-toggle {
	font-family: Questrial, sans-serif;
	font-size: 0.9rem;
	color: #444;
	cursor: pointer;
	margin: 8px 0 12px 0;
	display: inline-block;
	opacity: 0.8;
	float: right;
}


.info-toggle_scores {
	font-family: Questrial, sans-serif;
	font-size: .9rem;
	text-decoration: underline;
	color: #444;
	cursor: pointer !important;
	margin: -2px 4px 0 0;
	display: inline-flex;
	opacity: 0.8;
}


.info-toggle_information {
	font-family: Questrial, sans-serif;
	font-size: .9rem;
	font-weight: bold;
	color: #123;
	cursor: pointer !important;
	margin: 0 -12px 0 0;
	display: inline-flex;
    position: relative;
    z-index: 50;
}


.dot-red {
	color: #dc0d0d; 
	margin: 0 3px 0 2px;
}


.round {
	margin-right: 0px; 
	font-size: 1.2rem;
}


.info-box {
	font-family: Questrial, sans-serif;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #333;
	background: #fafafa;
	border-left: 3px solid #dc0d0d;
	padding: 12px 16px;
	margin-bottom: 22px;
	display: none;
	border-radius: 6px;
}


.no-rating .heart-button {
    pointer-events: none;
    cursor: default;
}


.no-rating .heart-count { 
    display: inline-block; 
    transform: rotate(90deg) scaleX(1.6); 
    transform-origin: center; 
}


.box {
	margin: 0 0 -4px -4px
}


.heart-icon.clicked       { color: #123456; }
.heart-icon_blue.clicked  { color: #dc0d0d; }


@keyframes heartPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.28); }
    100% { transform: scale(1); }
}


.heart-pulse {
    animation: heartPulse 0.22s ease;
}


.terms {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif; 
	line-height: 1.6; 
	color: #222; 
	padding: 64px;
	max-width: 800px; 
	margin: 0 auto;
}


.wrap_previous {
    height: 512px;
    position: relative;
    overflow: visible;
	margin: -8px 0 0 0;
}


.scroll-indicator {
    position: absolute;
    top: -16px;           
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0.75;
    z-index: 10;
}


.linked-red {
	 color: #123456 !important
}


.previous-inner {
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 8px 0;
    box-sizing: border-box;
}


.scroll-wrapper {
    position: relative;
	margin: 128px 0 0 0;
}


.scroll-wrapper::after {
    content: "↕";
    position: absolute;
    top: -5%;
    right: 50%; 
    transform: translateY(-50%);
    font-size: 40px;
    opacity: 0.5;
    pointer-events: none;
}


.previous-inner {
    scrollbar-width: none;
    -ms-overflow-style: none;
}


.previous-inner::-webkit-scrollbar {
    display: none;
}


.fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    pointer-events: none;
    z-index: 10;

    background:
      
        radial-gradient(circle at bottom left,
            rgba(247,247,247,1) 0%,
            rgba(247,247,247,0) 42%) bottom left / 34% 100% no-repeat,

        radial-gradient(circle at bottom right,
            rgba(247,247,247,1) 0%,
            rgba(247,247,247,0) 42%) bottom right / 34% 100% no-repeat,

        linear-gradient(to top,
            rgba(247,247,247,1) 0%,
            rgba(247,247,247,0) 8%);
}


.fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    pointer-events: none;
    z-index: 10;

    background:

        radial-gradient(circle at top left,
            rgba(247,247,247,1) 0%,
            rgba(247,247,247,0) 42%) top left / 34% 100% no-repeat,

        radial-gradient(circle at top right,
            rgba(247,247,247,1) 0%,
            rgba(247,247,247,0) 42%) top right / 34% 100% no-repeat,

        linear-gradient(to bottom,
            rgba(247,247,247,1) 0%,
            rgba(247,247,247,0) 8%);
}


.comments-block {
    margin: 48px 0 40px 0;
    padding-top: 28px;
    font-family: 'Questrial', sans-serif;
}


.comment-form {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e3e3e3;
}


.comment-textarea {
    width: 100%;
    min-height: 110px;
    padding: 12px 16px;
    border: 1px solid #ccc;
    background: linear-gradient(to right, #ffffff, #ffffffd0);
    border-radius: 6px;
    font-size: 1.05rem;
	font-family: Questrial, sans-serif;
    line-height: 1.5;
	margin-bottom: 9px;
	box-sizing: border-box;
}


.comment-input {
    width: 100%;
    padding: 10px 16px 10px 16px;
    border: 1px solid #ccc;
    background: linear-gradient(to right, #ffffff, #ffffffd0);
    border-radius: 6px;
    font-size: 1rem !important;
	box-sizing: border-box;
	font-family: Questrial, sans-serif !important;
}


.comment-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    margin: 16px 0 0 0;
}


.comment-submit {
    align-self: flex-start;
    padding: 8px 18px;
	margin: 16px 0 8px 0;
    background: #123;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
	font-family: Questrial, sans-serif;
}


.comment-submit:hover {
    background: #000;
}


.comments-thread {
    border: 2px solid #e3e3e3; 
    border-radius: 6px;
    padding: 16px;
    background: linear-gradient(to right, #ffffff, #ffffffd0);
    margin-bottom: 20px;
	font-family: Questrial, sans-serif;
}


.comment, .reply {
    margin-bottom: 28px;
}


.reply {
    margin-left: 28px;
    border-left: 1px dashed #e3e3e3; 
	padding: 12px 0 12px 16px; 
}


.comment p, .reply p {
    margin: 0 0 8px 0;
    font-size: .9rem;
    line-height: 1.6;
    color: #111;
	font-family: Questrial, sans-serif;
}


.name {
    font-size: .8rem;
    color: #123;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
	font-family: Questrial, sans-serif;
}


.notify, .identity-symbol {
	font-size: 0.8rem;
}


.identity-name {
    font-weight: 600;
}


.time {
    font-size: 0.7rem;
    color: #777;
    margin-bottom: 8px;
}


.reply_button {
    background: #f7f7f7;
    border: 1px solid #ccc;
    color: #dc0d0d;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 2px;
	margin: 0 0 8px 0;
	border-radius: 6px;
}


.reply_button:hover {
    text-decoration: underline;
}


.load-more-button {
    margin-top: 20px;
    background: none;
    border: 1px solid #e3e3e3;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 6px;
}


.load-more-button:hover {
    background: #f7f7f7;
}


.comment {
    padding: 16px 0;
    border-bottom: 1px solid #e3e3e3;
}


button.comment-submit[data-loading="true"] {
	position: relative;
	color: transparent;
}


button.comment-submit[data-loading="true"]::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	margin: -7px 0 0 -7px;
	border: 2px solid #999;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}


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


button.policy-toggle {
	border: 0;
	color: #123;
	margin: -32px 0 0 0;
	cursor: pointer;
	font-family: Questrial, sans-serif;
	font-size: 1rem;
	padding: 8px 18px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 6px;
	float: right;
}


#policy {
    display: none;
    border: 1px solid #e3e3e3;
    padding: 1rem 2.4rem 1rem 2.4rem;
    margin: 0 0 123px 0;
    background: #f9f9f9;
	font-size: 1rem;
	font-family: Questrial, sans-serif;
	font-weight: normal;
}


.policy-box {
    display: none;
    border: 1px solid #e3e3e3;
    padding: 1rem 2.4rem;
    background: #f9f9f9;
}

 
.publish-information {
	font-family: 'Kanit', sans-serif; 
	color: #123;
	margin: 96px 0 0 0;
	display: block;
}


.wrap_comment-info { margin: 108px 0 192px 0; }


.comment-information {
	font-family: 'Questrial', sans-serif; 
	color: #123456;
	font-weight: bold;
}


.wrap-button_eport-info {
	margin: 48px auto 48px -32px; 
	text-align: center
}
 
 
.policy-box.open {
    display: block;
}


.comment_policy {
	font-size: .8rem
}


.comment-error {
	color: #dc0d0d;
}