/*--------------------------------------------------------------

# ARCHIVE



For blog page and archives pages like category, author etc.. 

ONLY for post type = post 

ADD your own stylesheet for custom post type archive 

OR, if it uses sames styles, add it to enqueue style function in functions.php 



--------------------------------------------------------------*/





/* LOAD MORE */



.loadmore-container {

	margin: 35px 0 70px;

	text-align: center;

}



.mahii-loadmore {

	display: inline-block;

	padding: 15px 30px;

	background-color: #000;

	color: #fff;

	transition: all 0.4s;

}



.mahii-loadmore.loading {

	display: none !important;

}



.mahii-loadmore:hover {

	cursor: pointer;

	background-color: #333;

	color: #fff;

}

/* loader */ 

.loarder-container {

	padding: 25px 0 65px;

	text-align: center;

}



.loader-05 {

	display: inline-block;

	width: 40px;

	height: 40px;

	color: inherit;

	vertical-align: middle;

	pointer-events: none;

	border: 5px solid #000;

	border-top-color: #333;

	border-radius: 50%;

	animation: 1s loader-05 linear infinite;

	position: relative;

}



@keyframes loader-05 {

	0% {

		transform: rotate(0deg);

	}

	100% {

		transform: rotate(360deg);

	}

}

