.tmp-page-message {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
}

.tmp-page-message.show {
  visibility: visible;
  -webkit-animation: fadeinEffect 0.5s, fadeoutEffect 0.5s 4.5s;
  animation: fadeinEffect 0.5s, fadeoutEffect 0.5s 4.5s;
}

@-webkit-keyframes fadeinEffect {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadeinEffect {
  from {top: 0; opacity: 0;}
  to {top: 0; opacity: 1;}
}

@-webkit-keyframes fadeoutEffect {
  from {top: 0; opacity: 1;} 
  to {top: 0; opacity: 0;}
}

@keyframes fadeoutEffect {
  from {top: 0; opacity: 1;}
  to {top: 0; opacity: 0;}
}

.jq-toast-loader {
    display: block;
    position: absolute;
    top: 90%;
    height: 6px;
    width: 0;
    left: -1px;
    border-radius: 5px;
    -webkit-transition: width 4.5s ease-in;
	-o-transition: width 4.5s ease-in;
	transition: width 4.5s ease-in;
}
.jq-toast-loaded {
    width: 100%;
}

.jq-toast-loader-success {
	background-color: #155724;
}

.jq-toast-loader-danger {
	background-color: #B94A48;
}

.jq-toast-loader-warning {
	background-color: #C09853;
}

.jq-toast-loader-info {
	background-color: #3A87AD;
}