@charset "utf-8";

/* 
  |----------------------
  |   breadcrumb
  |----------------------
  */
.breadcrumb {
	position: relative;
	z-index: 1;
	padding: 20px 20px 20px 0;
}

.breadcrumb-path {
	line-height: 30px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	overflow: hidden;
}

.breadcrumb-path b {
	display: inline-block;
	margin: 0 7px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #777;
	border-right: 1px solid #777;
	transform: rotate(45deg);
}

.breadcrumb-path a,
.breadcrumb-path span {
	margin: 5px 0;
	color: #808080;
	white-space: nowrap;
}

.breadcrumb-path span {
	color: #3C3C3C;
}

.breadcrumb .singleBack {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.breadcrumb .singleBack a {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--theme-red);
	color: #fff;
	font-size: 12px;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.breadcrumb .singleBack svg {
	width: 18px;
	margin-bottom: 4px;
}

@media(max-width:768px) {
	.breadcrumb {
		padding: 5px 0;
	}

	.breadcrumb-path {
		height: auto;
	}
}

@media (max-width:640px) {
	.breadcrumb .current_page {
		display: none;
	}
}

/* 
|----------------------
|   paging
|----------------------
*/
.paging {
	text-align: center;
}

.paging ul {
	justify-content: center;
}

.paging-link a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2px 4px;
	width: 40px;
	height: 40px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 50%;
}


/*  */
.paging-prev a,
.paging-next a {
	width: 40px;
	padding: 0 15px;
}

.paging-prev a i,
.paging-next a i {
	position: absolute;
	top: 14px;
	display: inline-block;
	width: 8px;
	height: 8px;
	border: 1px solid #333;
	transform: rotate(45deg);
}

.paging-prev a i {
	left: 15px;
	border-right: none;
	border-top: none;
}

.paging-next a i {
	left: 13px;
	border-left: none;
	border-bottom: none;
}

/* active */

.paging-link a.current,
.paging-link a:hover {
	text-decoration: underline;
	color: #fff;
	background-color: var(--theme-red);
	border-color: var(--theme-red);
}

.paging-prev a:hover i,
.paging-next a:hover i {
	border-color: #fff;
}