﻿.toast-container {
	width: 90%;
	z-index: 9999;
	max-width: 450px;
}

* html .toast-container {
	position: absolute;
}

.toast-item {
	height: auto;
	background: rgba(255,255,255,0.9);
	border-radius: 10px;
	color: #626262;
	padding: 60px 20px 20px 20px;
	font-family: lucida Grande;
	font-size: 1.25rem;
	border: 2px solid #FFF;
	box-shadow: 0 0 10px rgba(0,0,0,0.2),0 0 5px rgba(0,0,0,0.2);
	display: block;
	position: relative;
	margin: 0 0 12px 0;
}

	.toast-item p {
		text-align: left;
		font-size: 2.25rem;
		line-height: 1.5;
	}

		.toast-item p:last-child {
			padding: 0;
		}

.toast-item-close {
	background: url(/Content/toastmessage/images/close.png);
	width: 22px;
	height: 22px;
	position: absolute;
	top: -12px;
	right: -12px;
	cursor: pointer;
}

.toast-item-image {
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 15px;
}

.toast-item-image-notice {
	background: url(/Content/toastmessage/images/notice.png);
}

.toast-item-image-success {
	background: url(/Content/toastmessage/images/success.png);
}

.toast-item-image-warning {
	background: url(/Content/toastmessage/images/warning.png);
}

.toast-item-image-error {
	background: url(/Content/toastmessage/images/error.png);
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
	color: #626262;
}

.toast-type-success {
	color: #626262;
}

.toast-type-warning {
	color: #626262;
	border-color: #FCBD57;
}

.toast-type-error {
	color: #626262;
	border-color: #B32B2B;
}

/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.toast-position-top-left {
	position: fixed;
	left: 20px;
	top: 20px;
}

.toast-position-top-center {
	position: fixed;
	top: 20px;
	left: 50%;
	margin-left: -140px;
}

.toast-position-top-right {
	position: fixed;
	top: 20px;
	right: 20px;
}

.toast-position-middle-left {
	position: fixed;
	left: 20px;
	top: 50%;
	margin-top: -40px;
}

.toast-position-middle-center {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

.toast-position-middle-right {
	position: fixed;
	right: 20px;
	margin-left: -140px;
	margin-top: -40px;
	top: 50%;
}
