@font-face { font-family: 'Inter Regular'; src: url('../fonts/Inter/Inter-Regular.ttf'); }
@font-face { font-family: 'Inter Bold'; src: url('../fonts/Inter/Inter-Bold.ttf'); }
@font-face { font-family: 'Inter SemiBold'; src: url('../fonts/Inter/Inter-SemiBold.ttf'); }
:root {
	--primary-btn-color: #166aea;
	--secondary-btn-color:#166aea;
	--primary-color: #166aea;
	--white: #fff;
	--black: #000;
	--brown: #b34329;
	--dark-green: #637e4c;
	--dark-blue: #34495e;
	--sea-blue: #5353ff;
	--background: #f8f6f9;
	--main-color: black;
	--price-color: #166aea;
	--font-family: "Inter Regular";
	--font-family-semi-bold: "Inter SemiBold";
	--font-family-bold: "Inter Bold";
}

::-moz-selection {
	background: var(--main-color);
	color: white;
}

::selection {
	background: var(--main-color);
	color: white;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

:-moz-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

*::-webkit-scrollbar {
	width: 0;
}

body::-webkit-scrollbar {
	width: 5px !important;
}

body::-webkit-scrollbar-thumb {
	background: var(--main-color);
}