// pagination
.pagination {

	.page-item {
		margin: 0 4px;
		border-radius: 0;

		&:first-child,
		&:last-child {
			margin-top: 3px;

			a {
				border: 0;
				width: auto;
				height: auto;
				font-size: 10px;

			}				
		}
	}

	&.pagination-sm {

		.page-item {

			&:first-child,
			&:last-child {
				margin-top: 5px;

				a {
					font-size: 9px;
				}				
			}
		}
	}

	&.pagination-lg {

		.page-item {

			&:first-child,
			&:last-child {
				margin-top: 9px;

				a {
					font-size: 14px;
				}				
			}
		}
	}
}