/**
 * ریست پایه هانل
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	direction: rtl;
	text-align: right;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-height: 100%;
}

/* مخفی‌سازی کامل اسکرول‌بار در کل سایت */
html,
body,
.hanel,
.hanel__page,
.hanel-main,
* {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.hanel::-webkit-scrollbar,
.hanel__page::-webkit-scrollbar,
.hanel-main::-webkit-scrollbar,
*::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
	background: transparent;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

button {
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:focus:not(:focus-visible) {
	outline: none;
}

:focus-visible {
	outline: 2px solid var(--hanel-color-text);
	outline-offset: 2px;
}
