﻿@charset "UTF-8";

@font-face {
	font-family: toast;
	src: url(../fonts/toast.eot);
	src: url(../fonts/toast.eot) format('embedded-opentype'),
		 url(../fonts/toast.ttf) format('truetype'),
		 url(../fonts/toast.woff) format('woff'),
		 url(../fonts/toast.woff2) format('woff2'),
		 url(../fonts/toast.svg) format('svg');
	font-weight: 400;
	font-style: normal
}

i.toast-icon {
	display: none !important
}

.toast-item-wrapper {
	min-width: 350px;
	padding: 10px;
	padding-right: 20px;
	box-sizing: border-box;
	color: #fff;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	position: fixed;
	border-radius: 6px;
	z-index: 99999;
	user-select: none
}

.toast-item-wrapper i.toast-icon {
	position: absolute;
	top: 12px;
	left: 0;
	width: 50px;
	text-align: center;
	vertical-align: middle;
	font-size: 2rem
}

.toast-title {
	font-size: 18px
}

.toast-item-wrapper .toast-close {
	font-size: 1rem;
	position: absolute;
	top: 10px;
	left: 20px;
	width: 20px;
	text-align: center;
	cursor: pointer
}

.toast-item-wrapper.success {
	background-color: #33ab29;
}

.toast-item-wrapper.error {
	background-color: #ff4646;
}

.toast-item-wrapper.warning {
	background-color: #ff8300
}

.toast-item-wrapper.notice {
	background-color: #48a9f8
}

.toast-item-wrapper.info {
	background-color: #7f97a3
}

.toast-item-wrapper {
	left: 20px;
	bottom: 20px
}

.toast-item-wrapper.fullscreen {
	left: 20px;
	right: 20px;
	width: calc(100% - 40px)
}

.toast-item-wrapper p {
	margin: 0
}

.toast-item-wrapper .toast-message {
	font-size: .87rem;
	max-width: 325px !important
}

.toast-item-wrapper .toast-progress {
	width: 0;
	height: 3px;
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	bottom: 0;
	right: 0
}

.toast-item-wrapper.rtl {
	direction: rtl;
	text-align: right
}

.toast-item-wrapper.rtl i.toast-icon {
	left: auto;
	right: 0
}

.toast-item-wrapper.rtl .toast-close {
	right: auto;
	left: 0
}

.toast-item-wrapper.rtl p {
	text-align: right
}

.toast-item-wrapper.rtl .toast-progress {
	left: auto;
	right: 0
}