* {
	font-family: var(--font) !important;
}

a {
	text-decoration: none !important;
	transition: all 0.3s ease-in-out;
}

.row {
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.body-no-scroll {
	overflow: hidden;
	height: 100vh;
	position: relative;
}

main {
	flex: 1;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}

.bg-mainColor {
	background-color: var(--mainColor) !important;
}

.text-mainColor {
	color: var(--mainColor) !important;
}

.text-mainText {
	color: var(--mainText) !important;
}

#tomi_loadingOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999999;
	visibility: visible;
}

.tomi_spinner {
	border: 13px solid #f3f3f3;
	border-top: 13px solid var(--mainColor, #3f85b9);
	border-radius: 50%;
	width: 65px;
	height: 65px;
	animation: spin 1s linear infinite;
}

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

.tw-language-button {
	background-color: #e7e7e7;
	color: #000;
	border: 2px solid transparent;
	border-radius: 10px;
	padding: 5px 10px;
	white-space: nowrap;
	font-size: 16px;

	&:hover {
		border: 2px solid #666;
	}

	&.active {
		border: 2px solid #666;
	}

	img {
		margin-right: 0.5rem;
	}
}

.breadcrumb {
	padding: 0;
	margin: 0;
	margin-bottom: 0;
	font-weight: 600;
	color: #000;
	z-index: 1;
	overflow-wrap: break-word;
	display: block;
	padding: 25px 0;

	.breadcrum-title-container {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 30px;
		font-weight: bold;

		.icon {
			display: flex;
			align-items: center;
			justify-content: center;
			background-color: #000;
			border-radius: 25px;
			width: 40px;
			height: 40px;
			flex-shrink: 0;

			span {
				color: #fff;
				font-size: 25px;
			}
		}

		a {
			color: #000;
			transition: all 0.3s ease-in-out;

			&:hover {
				color: var(--mainColor);
			}
		}
	}

	.breadcrumb-categories {
		margin-left: 50px;
		font-size: 16px;
		color: #000;
		margin-top: -5px;

		a {
			color: #000;
			transition: all 0.3s ease-in-out;

			&:hover {
				color: var(--mainColor);
			}
		}

		@media only screen and (max-width: 769px) {
			display: flex;
			flex-direction: column;
		}
	}
}

@media only screen and (max-width: 769px) {
	.breadcrumb {
		.breadcrum-title-container {
			align-items: start;
			.bc-vendor-title {
				font-size: 20px;
				font-weight: normal;
			}
		}
	}
}
