.link, .button  {
	display: flex;
	align-items: center;
}


.link {
	display: flex;
	align-items: center;
}

.link > * {
	line-height: 1;
	display: inline-flex;
	align-items: center;
}

.link > span {
	line-height: 1;
	padding: .4rem 0;
}

.link-theme-01 {
	color: var(--light-theme-link-color);
	transition: all .5s ease-in-out;
}

.link-theme-01:hover {
	color: var(--light-theme-link-color-hover);
}


.button {
	display: inline-flex;
	align-items: center;
	border-radius: 1.5rem;
}

.button > * {
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
}

.button > span {
	line-height: 1;
	padding: .5rem 1rem;
}

.button-theme-01 {
	border-radius: 1.5rem;
	background: var(--light-theme-btn-background);
	color: var(--light-theme-btn-color);
	transition: all .5s ease-in-out;
}

.button-theme-01:hover {
	background: var(--light-theme-btn-background-hover);
	color: var(--light-theme-btn-color-hover);
}

.button-theme-02 {
	border-radius: 1.5rem;
	color: var(--dark-theme-background);
	transition: all .5s ease-in-out;
	background: transparent;
	border: 2px solid var(--dark-theme-background);
}

.button-theme-02:hover {
	background: var(--light-theme-btn-background-hover);
}
.button-theme-02 {
	padding: 0 .8rem !important;
}
.button-theme-02 span {
	font-weight: bolder;
	padding: .5rem;
}

.button-theme-03 {
	border-radius: 1.5rem;
	color: var(--light-theme-background);
	transition: all .5s ease-in-out;
	background: transparent;
	border: 2px solid var(--light-theme-background);
}

.button-theme-03:hover {
	background: var(--dark-theme-btn-background-hover);
}
.button-theme-03 {
	padding: 0 .8rem !important;
}
.button-theme-03 span {
	font-weight: bolder;
	padding: .5rem;
}


/* Home Item Buttons */
.theme-btn-01 {
	font-size: 1rem;
	color: var(--dark-theme-font-color);
	padding: .25rem 1rem;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-transform: capitalize;
	position: relative;
	cursor: pointer;
	border-radius: 8px;
	text-align: center;
	overflow: hidden;
	z-index: 1;
	background-color: var(--light-theme-link-color);
	border: 2px solid transparent;
	box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
	text-wrap: nowrap;
	flex-wrap: wrap;
	align-items: center;
}
.theme-btn-01 > * {
	display: flex;
	flex-wrap: wrap;
}

.theme-btn-01:hover {
	color: var(--dark-theme-font-color);
	background: var(--light-theme-link-color-hover);
}

.theme-btn-01 i {
	margin-left: .4rem;
}

.border-btn-01 {
	background: transparent;
	color: var(--dark-theme-font-color);
	border-color: var(--light-theme-link-color);
}

.border-btn-01:hover {
	border-color: transparent;
}

/******************************** PAGINATION ********************************/
.pagination-area {
	position: relative;
	padding: 2rem 0;

}
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 14px;
	gap: .5rem;
}

.pagination .page-link {
	position: relative;
	display: block;
	border: none;
	text-decoration:none;
	background: var(--light-theme-link-color);
	color: var(--dark-theme-font-color);
	border-radius: .5rem !important;
	text-align: center;
	transition: all .5s ease-in-out;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
}

.pagination .page-link:hover, .pagination .page-item.active .page-link {
	background: var(--light-theme-link-color-hover);
	transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}