.smart-fixed {
	position: fixed;
}

.smart-e-mail {
	position: absolute;
	left: -99999px;
	z-index: 0;
}

.smart-sliding-block-manual {
	position: absolute;
	height: 100%;
	min-height: 100%;
	right: 0;
}

.smart-sliding-block-fixed {
	position: fixed;
	top: 50px;
	bottom: auto;
}

.smart-sliding-block-position-footer {
	top: auto;
	bottom: 30px;
	position: absolute;
}

.smart-throbber-container {
	position: fixed;
	background-color: rgba(255, 255, 255, 0.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
}

@-webkit-keyframes throbber {
	0% {
		background: #dde2e7;
	}

	10% {
		background: #6b9dc8;
	}

	40% {
		background: #dde2e7;
	}
}

@-moz-keyframes throbber {
	0% {
		background: #dde2e7;
	}

	10% {
		background: #6b9dc8;
	}

	40% {
		background: #dde2e7;
	}
}

@-o-keyframes throbber {
	0% {
		background: #dde2e7;
	}

	10% {
		background: #6b9dc8;
	}

	40% {
		background: #dde2e7;
	}
}

@keyframes throbber {
	0% {
		background: #dde2e7;
	}

	10% {
		background: #6b9dc8;
	}

	40% {
		background: #dde2e7;
	}
}

/* :not(:required) hides these rules from IE9 and below */
.throbber:not(:required) {
	-webkit-animation: throbber 2000ms 300ms infinite ease-out;
	-moz-animation: throbber 2000ms 300ms infinite ease-out;
	-ms-animation: throbber 2000ms 300ms infinite ease-out;
	-o-animation: throbber 2000ms 300ms infinite ease-out;
	animation: throbber 2000ms 300ms infinite ease-out;
	background: #dde2e7;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-indent: -9999px;
	width: 25px;
	height: 25px;
	margin: auto;
}

.throbber:not(:required):before, .throbber:not(:required):after {
	background: #dde2e7;
	content: '\x200B';
	display: inline-block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 0;
}

.throbber:not(:required):before {
	-webkit-animation: throbber 2000ms 150ms infinite ease-out;
	-moz-animation: throbber 2000ms 150ms infinite ease-out;
	-ms-animation: throbber 2000ms 150ms infinite ease-out;
	-o-animation: throbber 2000ms 150ms infinite ease-out;
	animation: throbber 2000ms 150ms infinite ease-out;
	left: -35px;
}

.throbber:not(:required):after {
	-webkit-animation: throbber 2000ms 450ms infinite ease-out;
	-moz-animation: throbber 2000ms 450ms infinite ease-out;
	-ms-animation: throbber 2000ms 450ms infinite ease-out;
	-o-animation: throbber 2000ms 450ms infinite ease-out;
	animation: throbber 2000ms 450ms infinite ease-out;
	right: -35px;
}

