.toast-container {
	width: 280px;
	z-index: 9999;
}


* html .toast-container {
	position: absolute;
}

.toast-item {
	height: auto;
	background: rgba(0, 0, 0, 0.870588);
	color: white;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 6px;
	padding-right: 6px;
	display: block;
	position: relative;
	margin: 0 0 12px 0;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.toast-item p {
    text-align: left;
    margin-left: 50px;
}

.toast-item-close
{
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 24px;
	line-height: 24px;

	width: 24px;
	height: 24px;
	position: absolute;
	top: 7px;
	right: 7px;
	cursor: pointer;
}

.toast-item-close:before
{
	content: '\f00d';
}

.toast-item-image
{
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 24px;

	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	left: 10px;
	border-radius: 16px;
	background-color: white;
}

.toast-item-image-notice:before
{
	content: "\f129";
}

.toast-item-image-success:before
{
	content: "\f00c";
}

.toast-item-image-warning:before
{
	content: "\f12a";
}

.toast-item-image-error:before
{
	content: "\f12a";
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */

/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.toast-position-top-left {
    position: fixed;
    left: 10px;
    top: 70px;
}

.toast-position-top-center {
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: -140px;
}

.toast-position-top-right {
    position: fixed;
    top: 70px;
    right: 10px;
}


.toast-position-bottom-right {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.toast-position-middle-left {
    position: fixed;
    left: 20px;
    top: 50%;
    margin-top: -40px;
}

.toast-position-middle-center {
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}

.toast-position-middle-right {
    position: fixed;
    right: 20px;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}


/**
 * width < 600px
 * 2 columns, action bar hidden, stream hidden.
 * Phone portait, small phone landscape.
 */
@media all and (max-width:  599px) and (orientation: portrait), (max-width:  799px) and (orientation: landscape)
{
	.toast-position-bottom-right
	{
		bottom: 0px;
		right: 0px;
		width: 100%;
		z-index : 90001;
	}

	.toast-item
	{
		padding-top: 7px;
		padding-bottom: 7px;
		margin: 0px;
	}

	.toast-item p
	{
		margin-right: 35px;
	}

	.toast-item-close
	{
		top: 10px;
	}
}
