@media only screen and (min-width: 600px){
.Vue-Toastification__container.bottom-right, .Vue-Toastification__container.top-right {
    right: 1em;
}	

.Vue-Toastification__container.top-center, .Vue-Toastification__container.top-left, .Vue-Toastification__container.top-right {
    top: 1em;
}

.Vue-Toastification__container.bottom-right .Vue-Toastification__toast, .Vue-Toastification__container.top-right .Vue-Toastification__toast {
    margin-left: auto;
}

}



.Vue-Toastification__container {
    z-index: 9999;
    position: fixed;
    padding: 4px;
    width: 600px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    pointer-events: none;
	
}


.Vue-Toastification__toast--default {
    background-color: #1976d2;
    color: #fff;
}

.Vue-error {
    background-color: rgb(231, 76, 60);
}

.Vue-success {
    background-color: rgb(106, 213, 179);
}

.Vue-warning {
    background-color: rgb(243, 156, 18);
}

.Vue-Toastification__icon {
    margin: auto 18px auto 0;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 100%;
}

.Vue-Toastification__toast-body, .Vue-Toastification__toast-component-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.Vue-Toastification__toast-body {
    line-height: 24px;
    font-size: 16px;
    word-break: break-word;
    white-space: pre-wrap;
	
	display: flex;
	
	animation: fade-in .65s ease-in forwards;
}

.Vue-Toastification__close-button {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    padding-left: 10px;
    cursor: pointer;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    opacity: .3;
    -webkit-transition: visibility 0s,opacity .2s linear;
    transition: visibility 0s,opacity .2s linear;
}

.Vue-Toastification__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 10000;
    background-color: hsla(0,0%,100%,.7);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-animation: scale-x-frames linear 1 forwards;
    animation: scale-x-frames linear 1 forwards;
}


.Vue-Toastification__toast {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    max-height: 800px;
    min-height: 64px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 1rem!important;
    padding: 22px 24px!important;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%), 0 2px 15px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%), 0 2px 15px 0 rgb(0 0 0 / 5%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: Lato,Helvetica,Roboto,Arial,sans-serif;
    max-width: 600px;
    min-width: 326px;
    pointer-events: auto;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    direction: ltr;
	
	opacity: 0;
	overflow: hidden;
	justify-content: flex-start;
	transform: scale(0);
	animation: scale-in .3s ease-out forwards
	
}

#toast.show{
  visibility:visible;
  animation:fadeInOut 3s;
}


@keyframes fadeInOut{
  5%,95%{opacity:1;top:50px}
  15%,85%{opacity:1;top:30px}
}

@keyframes scale-in {
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes expand {
	50% {
		width: 350px;
		border-radius: 6px;
	}
	100% {
		width: 300px;
		border-radius: 4px;
		box-shadow: 0px 1px 3px 0px rgba(0,0,0,.2),
								0px 1px 1px 0px rgba(0,0,0,.14),
								0px 3px 3px -1px rgba(0,0,0,.12);
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: .80;
	}
}


@media only screen and (max-width: 600px){
.Vue-Toastification__container.top-center, .Vue-Toastification__container.top-left, .Vue-Toastification__container.top-right {
    top: 0;
}

.Vue-Toastification__container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
}

.Vue-Toastification__container .Vue-Toastification__toast {
    width: 100%;
}

.Vue-Toastification__toast {
    border-radius: 0;
    margin-bottom: .5rem;
}
}