/* =========================================================
 * TokkiNovel - Comentarios propios
 * ========================================================= */

.tokki-comments {
	background: #1A191D;
	border: 1px solid #2A292C;
	border-radius: 22px;
	padding: 28px;
	margin: 34px auto;
	color: #E6E6E7;
}

.tokki-comments-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
	border-bottom: 1px solid #313034;
	padding-bottom: 16px;
}

.tokki-comments-header h2 {
	margin: 0;
	color: #E6E6E7;
	font-size: 26px;
	font-weight: 600;
}

.tokki-comments-header p {
	margin: 0;
	color: #B9B7C0;
	font-size: 14px;
}

.tokki-comments-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tokki-comment-card {
	display: flex;
	gap: 14px;
	background: #2A292C;
	border: 1px solid #313034;
	border-radius: 18px;
	padding: 16px;
}

.tokki-comment-avatar {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	background: #1A191D;
}

.tokki-comment-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tokki-comment-body {
	flex: 1;
	min-width: 0;
}

.tokki-comment-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 8px;
}

.tokki-comment-name {
	display: block;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.tokki-comment-role {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-top: 4px;
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(185, 139, 221, 0.12);
	color: #B98BDD;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.3;
}

.tokki-comment-date {
	flex: 0 0 auto;
	color: #99979D;
	font-size: 12px;
	white-space: nowrap;
}

.tokki-comment-content {
	color: #E6E6E7;
	font-size: 15px;
	line-height: 1.7;
}

.tokki-comment-content p {
	margin: 0 0 10px;
}

.tokki-comment-content p:last-child {
	margin-bottom: 0;
}

.tokki-comments-empty,
.tokki-login-to-comment,
.tokki-comments-closed {
	background: #2A292C;
	border: 1px solid #313034;
	border-radius: 16px;
	padding: 16px;
	color: #B9B7C0;
	font-size: 14px;
	line-height: 1.6;
}

/* Formulario */

.tokki-comments-form {
	margin: 0 0 28px;
	padding: 0 0 24px;
	border-bottom: 1px solid #313034;
}

.tokki-comment-form-title,
.tokki-comments-form #reply-title {
	margin: 0 0 14px;
	color: #E6E6E7;
	font-size: 20px;
	font-weight: 600;
}

.tokki-comments-form label,
.tokki-comments #respond label {
	display: block;
	margin-bottom: 8px;
	color: #B9B7C0;
	font-size: 13px;
}

.tokki-comments-form textarea,
.tokki-comments #respond textarea {
	width: 100%;
	min-height: 130px;
	resize: vertical;
	box-sizing: border-box;
	background: #222124 !important;
	border: 1px solid #313034 !important;
	border-radius: 16px !important;
	padding: 14px !important;
	color: #E6E6E7 !important;
	font-size: 15px;
	line-height: 1.6;
	outline: none;
	box-shadow: none;
}

.tokki-comments-form textarea:focus,
.tokki-comments #respond textarea:focus {
	border-color: #B98BDD !important;
	box-shadow: 0 0 0 3px rgba(185, 139, 221, 0.12) !important;
}

.tokki-comments-form .form-submit,
.tokki-comments #respond .form-submit {
	margin: 14px 0 0;
}

.tokki-comments-form .submit,
.tokki-comments #respond .submit {
	background: #B98BDD !important;
	border: 1px solid #B98BDD !important;
	border-radius: 999px !important;
	padding: 11px 22px !important;
	color: #1A191D !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	cursor: pointer;
	box-shadow: none !important;
	transition: none !important;
}

.tokki-comments-form .submit:hover,
.tokki-comments-form .submit:focus,
.tokki-comment-thread #respond .submit:hover,
.tokki-comment-thread #respond .submit:focus {
	background: #B98BDD !important;
	border-color: #B98BDD !important;
	color: #1A191D !important;
	box-shadow: none !important;
	transform: none !important;
}

.tokki-comments-form .submit:hover,
.tokki-comments-form .submit:focus {
	background: #B98BDD !important;
	border-color: #B98BDD !important;
	color: #1A191D !important;
}

/* Paginación */

.tokki-comments-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.tokki-comments-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border-radius: 999px;
	background: #2A292C;
	border: 1px solid #313034;
	color: #E6E6E7;
	font-size: 13px;
	text-decoration: none;
}

.tokki-comments-pagination .page-numbers.current {
	background: #B98BDD;
	border-color: #B98BDD;
	color: #1A191D;
}

/* Móvil */

@media (max-width: 600px) {
	.tokki-comments {
		padding: 20px 14px;
		border-radius: 18px;
	}

	.tokki-comments-header {
		display: block;
	}

	.tokki-comments-header h2 {
		font-size: 22px;
		margin-bottom: 6px;
	}

	.tokki-comment-card {
		gap: 10px;
		padding: 14px;
		border-radius: 16px;
	}

	.tokki-comment-avatar {
		flex-basis: 30px;
		width: 30px;
		height: 30px;
	}

	.tokki-comment-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}
    
    .tokki-comment-author-info {
    	min-width: 0;
    	flex: 1;
    }
    
    .tokki-comment-date {
    	flex-shrink: 0;
    	display: inline-block;
    	margin-top: 0;
    	font-size: 11px;
    	white-space: nowrap;
    }
    
    .tokki-comment-name {
    	overflow-wrap: anywhere;
    }
    

	.tokki-comment-content {
		font-size: 14px;
	}
}











/*================para comentarios====================*/
/* =========================================================
 * Respuestas anidadas
 * ========================================================= */

.tokki-comment-thread {
	width: 100%;
}

.tokki-comment-children {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 14px;
	margin-left: 34px;
	padding-left: 16px;
	border-left: 2px solid #313034;
}

.tokki-comment-actions {
	margin-top: 10px;
}

.tokki-comment-actions a {
	display: inline-flex;
	align-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #B98BDD;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.tokki-comment-actions a:hover,
.tokki-comment-actions a:focus {
	background: transparent;
	color: #B98BDD;
	text-decoration: none;
}

.tokki-cancel-reply {
	display: inline-block;
	margin-left: 10px;
}

.tokki-cancel-reply a {
	color: #99979D;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.tokki-cancel-reply a:hover,
.tokki-cancel-reply a:focus {
	color: #99979D;
	text-decoration: none;
}

/*
 * Cuando el formulario se mueve debajo de un comentario.
 */
.tokki-comment-thread #respond {
	margin-top: 14px;
	padding: 16px;
	background: #222124;
	border: 1px solid #313034;
	border-radius: 16px;
}

.tokki-comment-thread #respond .tokki-comment-form-title {
	font-size: 17px;
}



/*corazon, me gusta*/
/* =========================================================
 * Me gusta de comentarios
 * ========================================================= */

.tokki-comment-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 10px;
	min-height: 22px;
}

.tokki-comment-like {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	width: auto;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #99979D !important;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	box-shadow: none !important;
	transform: none !important;
	transition: none !important;
}

.tokki-comment-like:hover,
.tokki-comment-like:focus,
.tokki-comment-like:active {
	background: transparent !important;
	border: 0 !important;
	color: #B98BDD !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none;
}

.tokki-comment-like-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.tokki-comment-like-icon i {
	font-size: 15px;
	line-height: 1;
	display: block;
}

.tokki-comment-like-icon i {
	transition: transform .18s ease, color .18s ease;
}

.tokki-comment-like.is-liked .tokki-comment-like-icon i {
	transform: scale(1.10);
	color: #B98BDD;
}



.tokki-comment-like-count {
	font-size: 12px;
	line-height: 1;
}

.tokki-comment-like.is-liked {
	color: #B98BDD !important;
}

.tokki-comment-like.is-loading {
	opacity: 0.55;
	pointer-events: none;
}

.tokki-comment-like:disabled {
	color: #75727A !important;
	cursor: default;
	opacity: 0.75;
}

.tokki-comment-like:disabled:hover {
	color: #75727A !important;
}







/* =========================================================
 * Respuestas anidadas en móvil
 * ========================================================= */

@media (max-width: 600px) {
	.tokki-comment-children {
		margin-left: 14px;
		padding-left: 10px;
	}

	.tokki-comment-depth-4 .tokki-comment-children,
	.tokki-comment-depth-5 .tokki-comment-children,
	.tokki-comment-depth-6 .tokki-comment-children,
	.tokki-comment-depth-7 .tokki-comment-children,
	.tokki-comment-depth-8 .tokki-comment-children,
	.tokki-comment-depth-9 .tokki-comment-children {
		margin-left: 6px;
		padding-left: 6px;
	}

	.tokki-comment-thread #respond {
		padding: 13px;
	}
}



.tokki-comment-like {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;

	width: auto !important;
	min-width: 0 !important;
	height: 22px !important;
	min-height: 22px !important;

	margin: 0 !important;
	padding: 0 4px !important;

	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;

	color: #99979D !important;
	font-family: inherit;
	font-size: 12px !important;
	font-weight: 600;
	line-height: 1 !important;

	box-shadow: none !important;
	transform: none !important;
	vertical-align: middle;
}

.tokki-comment-like-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 16px;
	height: 16px;

	font-size: 17px !important;
	line-height: 16px !important;
}

.tokki-comment-like-count {
	display: inline-flex;
	align-items: center;

	height: 16px;
	font-size: 12px;
	line-height: 16px;
}




/* =========================================================
 * Formulario cuando se responde a cualquier comentario
 * ========================================================= */

.tokki-comments #respond {
	margin-top: 16px;
	padding: 18px;
	background: #1A191D;
	border: 1px solid #313034;
	border-radius: 16px;
	box-sizing: border-box;
}

.tokki-comments #respond .tokki-comment-form-title,
.tokki-comments #respond .comment-reply-title,
.tokki-comments #respond #reply-title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 16px;
	color: #E6E6E7;
	font-size: 20px;
	font-weight: 600;
}

.tokki-comments #respond .tokki-cancel-reply {
	display: inline-block;
	margin-left: 0;
}

.tokki-comments #respond .tokki-cancel-reply a,
.tokki-comments #respond #cancel-comment-reply-link {
	color: #B9B7C0;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.tokki-comments #respond .tokki-cancel-reply a:hover,
.tokki-comments #respond .tokki-cancel-reply a:focus,
.tokki-comments #respond #cancel-comment-reply-link:hover,
.tokki-comments #respond #cancel-comment-reply-link:focus {
	background: transparent;
	color: #B9B7C0;
	text-decoration: none;
}

.tokki-comments #respond .comment-form-comment {
	margin: 0;
}

.tokki-comments #respond label {
	display: block;
	margin-bottom: 8px;
	color: #B9B7C0;
	font-size: 13px;
}

.tokki-comments #respond textarea {
	display: block;
	width: 100%;
	min-height: 130px;
	resize: vertical;
	box-sizing: border-box;
	background: #222124 !important;
	border: 1px solid #313034 !important;
	border-radius: 16px !important;
	padding: 14px !important;
	color: #E6E6E7 !important;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.6;
	outline: none;
	box-shadow: none;
}

.tokki-comments #respond textarea:focus {
	background: #222124 !important;
	border-color: #B98BDD !important;
	box-shadow: 0 0 0 3px rgba(185, 139, 221, 0.12) !important;
}

.tokki-comments #respond .form-submit {
	margin: 14px 0 0;
}

.tokki-comments #respond .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: auto;
	background: #B98BDD !important;
	border: 1px solid #B98BDD !important;
	border-radius: 999px !important;
	padding: 11px 22px !important;
	color: #1A191D !important;
	font-family: inherit;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: none !important;
	transition: none !important;
}

.tokki-comments #respond .submit:hover,
.tokki-comments #respond .submit:focus,
.tokki-comments #respond .submit:active {
	background: #B98BDD !important;
	border-color: #B98BDD !important;
	color: #1A191D !important;
	box-shadow: none !important;
	transform: none !important;
}

@media (max-width: 600px) {
	.tokki-comments #respond {
		padding: 13px;
	}

	.tokki-comments #respond .tokki-comment-form-title,
	.tokki-comments #respond .comment-reply-title,
	.tokki-comments #respond #reply-title {
		font-size: 17px;
	}
}





/*comentario fijado*/
.tokki-comment-pin {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 22px !important;
	height: 22px !important;
	min-width: 22px !important;
	min-height: 22px !important;

	margin: 0 !important;
	padding: 0 !important;

	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;

	color: #99979D !important;
	cursor: pointer;

	box-shadow: none !important;
	transform: none !important;
	transition: none !important;
}

.tokki-comment-pin:hover,
.tokki-comment-pin:focus,
.tokki-comment-pin:active {
	background: transparent !important;
	border: 0 !important;
	color: #B98BDD !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none;
}

.tokki-comment-pin-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.tokki-comment-pin-icon i {
	display: block;
	font-size: 14px;
	line-height: 1;
}

/*
 * El icono no cambia cuando el comentario está fijado.
 * Solo conservamos la clase por razones de lógica.
 */
.tokki-comment-pin.is-pinned {
	color: #99979D !important;
}

.tokki-comment-thread.is-pinned > .tokki-comment-card {
	border-color: rgba(185, 139, 221, 0.65);
	background: #2A292C;
}

.tokki-comment-pinned-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
	color: #B98BDD;
	font-size: 12px;
	font-weight: 600;
}





/* =========================================================
 * Reportar comentarios
 * ========================================================= */

.tokki-comment-report {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;

	width: auto !important;
	min-width: 0 !important;
	height: 22px !important;
	min-height: 22px !important;

	margin: 0 !important;
	padding: 0 4px !important;

	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;

	color: #99979D !important;
	font-family: inherit;
	font-size: 12px !important;
	font-weight: 500;
	line-height: 1 !important;

	cursor: pointer;
	box-shadow: none !important;
	transform: none !important;
	transition: color 0.18s ease !important;
}

.tokki-comment-report:hover,
.tokki-comment-report:focus,
.tokki-comment-report:active {
	background: transparent !important;
	border: 0 !important;
	color: #D7A0A0 !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none;
}

.tokki-comment-report-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
}

.tokki-comment-report-icon i {
	display: block;
	font-size: 13px;
	line-height: 1;
}

.tokki-comment-report-text {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.tokki-comment-report.is-reported,
.tokki-comment-report:disabled {
	color: #75727A !important;
	cursor: default;
	opacity: 0.75;
}

.tokki-comment-report.is-reported:hover,
.tokki-comment-report:disabled:hover {
	color: #75727A !important;
}


/* =========================================================
 * Ventana emergente del reporte
 * ========================================================= */

body.tokki-report-dialog-open {
	overflow: hidden;
}

.tokki-comment-report-dialog[hidden] {
	display: none !important;
}

.tokki-comment-report-dialog {
	position: fixed;
	inset: 0;
	z-index: 999999;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 20px;
	box-sizing: border-box;
}

.tokki-comment-report-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 9, 12, 0.78);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.tokki-comment-report-modal {
	position: relative;
	z-index: 1;

	width: 100%;
	max-width: 480px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;

	box-sizing: border-box;
	padding: 26px;

	background: #1A191D;
	border: 1px solid #3A383D;
	border-radius: 20px;

	color: #E6E6E7;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.tokki-comment-report-modal h3 {
	margin: 0 40px 8px 0;
	color: #FFFFFF;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
}

.tokki-comment-report-description {
	margin: 0 40px 22px 0;
	color: #B9B7C0;
	font-size: 14px;
	line-height: 1.5;
}


/* Cerrar */

.tokki-comment-report-close {
	position: absolute;
	top: 18px;
	right: 18px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 32px !important;
	min-width: 32px !important;
	height: 32px !important;
	min-height: 32px !important;

	margin: 0 !important;
	padding: 0 !important;

	background: #2A292C !important;
	border: 1px solid #313034 !important;
	border-radius: 50% !important;

	color: #B9B7C0 !important;
	font-size: 14px !important;
	cursor: pointer;

	box-shadow: none !important;
	transform: none !important;
}

.tokki-comment-report-close:hover,
.tokki-comment-report-close:focus,
.tokki-comment-report-close:active {
	background: #313034 !important;
	border-color: #444247 !important;
	color: #FFFFFF !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none;
}


/* Motivos */

.tokki-comment-report-reasons {
	display: flex;
	flex-direction: column;
	gap: 8px;

	min-width: 0;
	margin: 0 0 20px;
	padding: 0;

	border: 0;
}

.tokki-comment-report-reasons legend {
	margin: 0 0 10px;
	padding: 0;

	color: #E6E6E7;
	font-size: 13px;
	font-weight: 600;
}

.tokki-comment-report-reasons label {
	display: flex;
	align-items: center;
	gap: 10px;

	margin: 0;
	padding: 11px 13px;

	background: #222124;
	border: 1px solid #313034;
	border-radius: 12px;

	color: #D4D3D6;
	font-size: 14px;
	line-height: 1.4;

	cursor: pointer;
	transition:
		border-color 0.18s ease,
		background-color 0.18s ease;
}

.tokki-comment-report-reasons label:hover {
	background: #272629;
	border-color: #454247;
}

.tokki-comment-report-reasons label:has(input:checked) {
	background: rgba(185, 139, 221, 0.09);
	border-color: rgba(185, 139, 221, 0.65);
	color: #E6E6E7;
}

.tokki-comment-report-reasons input[type="radio"] {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin: 0;

	accent-color: #B98BDD;
	cursor: pointer;
}


/* Detalles adicionales */

.tokki-comment-report-details-label {
	display: block;
	margin: 0 0 8px;

	color: #E6E6E7;
	font-size: 13px;
	font-weight: 600;
}

.tokki-comment-report-details-label span {
	color: #858289;
	font-size: 12px;
	font-weight: 400;
}

#tokki-comment-report-details {
	display: block;
	width: 100%;
	min-height: 100px;
	resize: vertical;

	box-sizing: border-box;
	margin: 0;
	padding: 12px 13px !important;

	background: #222124 !important;
	border: 1px solid #313034 !important;
	border-radius: 13px !important;

	color: #E6E6E7 !important;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;

	outline: none;
	box-shadow: none !important;
}

#tokki-comment-report-details::placeholder {
	color: #77747B;
	opacity: 1;
}

#tokki-comment-report-details:focus {
	background: #222124 !important;
	border-color: #B98BDD !important;
	box-shadow: 0 0 0 3px rgba(185, 139, 221, 0.12) !important;
}


/* Mensajes */

.tokki-comment-report-message {
	min-height: 20px;
	margin: 12px 0 0;

	color: #B9B7C0;
	font-size: 13px;
	line-height: 1.5;
}

.tokki-comment-report-message:empty {
	display: none;
}

.tokki-comment-report-message.is-error {
	color: #E4A3A3;
}

.tokki-comment-report-message.is-success {
	color: #B98BDD;
}


/* Botones inferiores */

.tokki-comment-report-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px;
}

.tokki-comment-report-cancel,
.tokki-comment-report-submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;

	width: auto !important;
	min-width: 0 !important;
	min-height: 40px !important;

	margin: 0 !important;
	padding: 10px 18px !important;

	border-radius: 999px !important;
	font-family: inherit;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;

	cursor: pointer;
	box-shadow: none !important;
	transform: none !important;
	transition: none !important;
}

.tokki-comment-report-cancel {
	background: transparent !important;
	border: 1px solid #454247 !important;
	color: #B9B7C0 !important;
}

.tokki-comment-report-cancel:hover,
.tokki-comment-report-cancel:focus,
.tokki-comment-report-cancel:active {
	background: #252427 !important;
	border-color: #555258 !important;
	color: #FFFFFF !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none;
}

.tokki-comment-report-submit {
	background: #B98BDD !important;
	border: 1px solid #B98BDD !important;
	color: #1A191D !important;
	font-weight: 700 !important;
}

.tokki-comment-report-submit:hover,
.tokki-comment-report-submit:focus,
.tokki-comment-report-submit:active {
	background: #B98BDD !important;
	border-color: #B98BDD !important;
	color: #1A191D !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none;
}

.tokki-comment-report-submit:disabled {
	cursor: wait;
	opacity: 0.65;
}


/* =========================================================
 * Reportes en móvil
 * ========================================================= */

@media (max-width: 600px) {
	body.tokki-report-dialog-open {
		position: fixed;
		width: 100%;
	}

	.tokki-comment-report-dialog {
		align-items: flex-end;
		padding: 12px;
	}

	.tokki-comment-report-modal {
		max-width: none;
		max-height: calc(100vh - 24px);
		padding: 22px 18px 18px;
		border-radius: 20px;
	}

	.tokki-comment-report-modal h3 {
		font-size: 19px;
	}

	.tokki-comment-report-description {
		margin-bottom: 18px;
		font-size: 13px;
	}

	.tokki-comment-report-reasons label {
		padding: 10px 12px;
		font-size: 13px;
	}

	.tokki-comment-report-buttons {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tokki-comment-report-cancel,
	.tokki-comment-report-submit {
		width: 100% !important;
		padding: 10px 12px !important;
	}
}