.Toast{
	display: none;
	position: fixed;
	z-index: 4000;
	border-radius: 3px;
	border: 1px solid var(--color-primary-light);
	width: 350px;
	height: 50px;
	padding: 0;
}

.Toast .body{
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-top: 6px;
	font-size: 11px;
}

.Toast .body .title{
	font-weight: bold;
	padding: 0px 5px;
	font-size: 13px;
	letter-spacing: 2px;
}

.Toast .body .note{
	font-size: 14px;
	height: 95px;
	padding: 0 6px;
	padding-top: 5px;
	color: #FFF;
}

.Toast .body .progressbar{
	position: relative;
	bottom: 0;
	width: 0;
	margin: 0;
	padding: 0;
	padding: 1px 0;
	background: red;
}


/*////////////////////////////////////////////////////////*/
/*//[POSITION]//*/
.position-top-right{
	top: 20px;
	right: 20px;
}

.position-top-left{
	top: 20px;
	left: 20px;
}

.position-bottom-right{
	bottom: 20px;
	right: 20px;
}

.position-bottom-left{
	bottom: 20px;
	left: 20px;
}

.position-top-center{
	top: 20px;
	right: calc((100vw / 2) - 150px);
}

.position-bottom-center{
	bottom: 20px;
	right: calc((100vw / 2) - 150px);
}


/*////////////////////////////////////////////////////////*/
/*//[TYPE]//*/

.Toast-info{
	background: rgb(2, 57, 55);
	color: #FFF;
}

.Toast-danger{
	background: rgb(247, 33, 33);
	color: #FFF;
}
.Toast-primary{
	background: rgb(232, 125, 13);
	color: #FFF;
}
.Toast-succecss{
	background: rgb(33, 126, 33);
	color: #FFF;
}
