
.sh-toast-container {
  position: fixed;
/*  bottom: 20px;*/
  right: 20px;
  max-width: 300px;
  z-index: 9999;
}

.sh-toast-container.top {
  top: 10px;
}

.sh-toast-container.bottom {
  bottom: 20px;
}

.sh-toast {
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  animation: jelly 0.5s;
}

.success,.danger,.warning,.info
{
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
 
.success {
  background-color: #E3FDEB;
  color: #3C763D;
  border:1px #3C763D solid;
}

.danger {
  background-color: #F8D7DA;
  color: #721C24;
  border:1px #721C24 solid;
}

.warning {
  background-color: #FCF8E3;
  color: #8A6D3B;
  border:1px #8A6D3B solid;
}

.info {
  background-color: #D9EDF7;
  color: #31708F;
  border:1px #31708F solid;
}

.sh-progress-bar {
  height: 10px;
  background-color: #D9EDF7;
  width: 100%;
  position: relative;
  bottom: -16px;
  left: 0;
}

.sh-toast.with-sh-progress-bar .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  background-color: #D9EDF7;
  width: 0;
}

@keyframes jelly 
{
	0%,100% 
	{
		transform: scale(1, 1);
	}
	25% 
	{
		transform: scale(0.9, 1.1);
	}
	50% 
	{
		transform: scale(1.1, 0.9);
	}
	75% 
	{
		transform: scale(0.95, 1.05);
	}
}