#toast-wrapper {
    position: absolute;
    top: 10px;
    right: 0px;
    width: 30%;
    min-width: 300px;
    overflow-x: hidden;
    padding-right: 10px;
	z-index: 100001;
}

.toast-content {
    padding-left: 30px;
    padding-top: 2px;
    white-space: normal;
    word-break: break-all;
}

.toast-info {
	-webkit-box-shadow: 0px 5px 0px 0px #fb8800;
    box-shadow: 0px 5px 0px 0px #fb9d2d;
	background: var(--info-background);
}

.toast-error {
    -webkit-box-shadow: 0px 5px 0px 0px #fb2d2d;
    box-shadow: 0px 5px 0px 0px #fb2d2d;
    background: #f85757;
}

.toast-element {
    min-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-align: left;
    color: white;
    padding: 10px;
    border-color: #ffffffba;
    border-style: solid solid hidden solid;
    border-width: 2px;
    position: relative;
	
	background-image: url(../icons/toast-info.png);
    background-repeat: no-repeat;
    background-position: 10px 10px;
    background-size: 20px;
	user-select: none;
	
	animation: appear-and-dissapear 5s;
    animation-timing-function: ease-in-out;
}

@keyframes appear-and-dissapear {
  0% {
    transform: translateX(100%);
	opacity: 0;
  }
  
  5% {
	transform: translateX(0%);
	opacity: 1;
  }
  
  95% {
	transform: translateX(0%);
	opacity: 1;
  }

  100% {
    transform: translateX(100%);
	opacity: 0;
  }
}

