/** CSS FOR HTML COMPONENTS **/

/** TOAST **/
[class*="toast-"] {
	padding: .875em;
	border-radius: .25em;
	margin: 0rem;
}
.toast-error {
	color: #E4192C;
	background: #FDEBE3;
}
.toast-info {
	color: #1A7BBA;
	background: #EAEEF7;
}
.toast-success {
	color: #3DA141;
	background: #E5EEE0;
}
.toast-warning {
	color: #F1B135;
	background: #FEF5E9;
}
.alert-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(35, 31, 32, 0.95);
	overflow: auto;
	z-index: 9998;
	display: flex;
	justify-content: center;
}
.alert-wrapper {
	display: table;
	position: relative;
	top: 5rem;
	overflow: hidden;
	border-radius: .3rem;
	z-index: 9999;
	max-width: 90%;
	animation-name: animatetop;
	animation-duration: 0.4s;
	animation-timing-function: cubic-bezier(.83,-0.01,.44,2.1);
}
.alert-content {
	display: flex;
	vertical-align: middle;
}
[class*="alert-type-"], .alert-message {
	float: left;
	padding: 1rem;
}
[class*="alert-type-"] {
	display: block;
	color: #FFFFFF;
}
.alert-type-info {
	background: #1A7BBA;
}
.alert-type-success {
	background: #3DA141;
}
.alert-type-warning {
	background: #F1B135;
}
.alert-type-error {
	background: #E4192C;
}
.alert-message {
	background: #FFFFFF;
	padding-right: 2rem;
}
[class*="alert-message-"] {
	padding: 1rem 2.5rem;
}
.alert-message-info {
	background: #1A7BBA;
	color: #FFFFFF;
}
.alert-message-success {
	background: #3DA141;
	color: #FFFFFF;
}
.alert-message-warning {
	background: #F1B135;
}
.alert-message-error {
	background: #E4192C;
	color: #FFFFFF;
}
.alert-icon {
	display: inline-block;
	width: 1rem;
	text-align: center;
}
.alert-close-btn {
	color: #000000;
	position: absolute;
	top: 0em;
	right: 0em;
	height: 2rem;
	width: 2rem;
	text-align: center;
	cursor: pointer;
	font-size: 1em;
	transition: all 100ms ease-in-out;
	display: inline-flex;
	justify-content: center;
	border-radius: 3rem;
	overflow: hidden;
}
.alert-btn-item {
	width: 100%;
	height: 100%;
	padding: .35rem .6rem;
}
@keyframes animatetop {
	from {
		top: -5rem;
		opacity: 0;
	}
	to {
		top: 5rem;
		opacity: 1;
	}
}
.page {
    display: inline-block;
    padding: .5em 1em;
    margin-right: 4px;
    border-radius: 3px;
    border: solid 1px #c0c0c0;
    background: #e9e9e9;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: .875em;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
}
.page:hover {
    background: #fefefe;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FEFEFE), to(#f0f0f0));
    background: -moz-linear-gradient(0% 0% 270deg,#FEFEFE, #f0f0f0);
}
.page.active {
    border: none;
    background: #616161;
    box-shadow: inset 0px 0px 8px rgba(0,0,0, .5), 0px 1px 0px rgba(255,255,255, .8);
    color: #f0f0f0;
    text-shadow: 0px 0px 3px rgba(0,0,0, .5);
}