/**
* CSS themes for air-canada-pagination.js
* Author: Dileep Vanga
* Created On: 2019-02-08
* Copyrights 2019,  IBM
*/

/*------------------------------------*\
	Air Canada pagination Styles
\*------------------------------------*/

.air-canada-pagination span {
	cursor:pointer;
}

.air-canada-pagination a, .air-canada-pagination span {
	float: left;
	color: #666;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
}

.air-canada-pagination a:hover, .air-canada-pagination li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
}

.air-canada-pagination .disabled .current {
	color: #dddddd;
}

.air-canada-pagination .current {
	background: #FFF;
	color:red;
	cursor: default;
}

.air-canada-pagination .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}

ul.ac-pagination {
	list-style: none;
}

.ac-pagination {
	display: block;
	overflow: hidden;
	padding: 0 5px 5px 0;
	margin: 0;
}

.ac-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}
span.ellipse.clickable {
	cursor: pointer;
}

.ellipse input {
	width: 3em;
}

.air-canada-pagination a:link {
	color: #666;
	text-decoration: none;
}

.air-canada-pagination a:visited {
	color: #666;
	text-decoration: none;
}

.ac-loader {
    visibility: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 5%;
}

.ac-loader-img {
	position: relative;
	margin: auto;
	height: 150px;
	width: 150px;
}

.loader-rotate {
	animation: rotate 2s linear infinite;
	height: 100%;
	transform-origin: center center;
	width: 100%;
	position: absolute;
	top: 1220px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

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