.toast-title {
    font-weight: bold;
}
.toast-message {
    word-wrap: break-word;
}
.toast-message a,
.toast-message label {
    color: #FFFFFF;
}
.toast-message a:hover {
    color: #CCCCCC;
    text-decoration: none;
}
.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    -webkit-text-shadow: 0 1px 0 #ffffff;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.8;
}
.toast-close-button:hover,
.toast-close-button:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}
.toast-bottom-center {
    /*bottom: 0;*/
    bottom: 10%;
    right: 0;
    width: auto;
}
.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}
.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}
.toast-top-left {
    top: 12px;
    left: 12px;
}
.toast-top-right {
    top: 12px;
    right: 12px;
}
.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}
.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}
.toast-container {
    /*position: fixed;*/
    position: absolute;
    width:280px;
    z-index: 2000;
    cursor: pointer;
    transition: opacity ease 0.5s;
    animation: slideUp 0.5s ease;
}

.toast-container br {
    margin: 0;
    content: unset;
}

.toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.toast-container > div {
  display: block;
  opacity: 1.0;
  overflow: hidden;
  box-shadow: 2px 2px 4px -1px rgba(0, 0, 0, 0.3), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  line-height: 28px;
  font-size:14px;
  color: white;
  width: auto;
  position: relative;
  margin: 0 0 6px;
  border-radius: 3px 3px 3px 3px;
  background-repeat: no-repeat;
}

/*@media (max-width: 768px) and (min-width: 481px){
  .toast-container > div {
    width: auto;
  }
}*/

.toast-container > div.toast-custom {
    padding: 15px;
    color: #030303;
}
@media (max-width: 480px) and (min-width: 241px){
    .toast-container>div {
    padding: 8px 8px 8px 15px;
    }
}


.toast-container > div.toast-custom .toast-close-button {
    color: #999999 !important;
}

.toast-container.toast-top-center > div,
.toast-container.toast-bottom-center > div {
    margin: auto;
}
.toast-container.toast-top-full-width > div,
.toast-container.toast-bottom-full-width > div {
    width: 96%;
    margin: auto;
}
.toast {
    background-color: #FFFFFF;
	padding:10px;
    border-radius: 5px;
	position: absolute;
	display: inline-block;

}
.toast-success {
    background-color: #51A351;
}
.toast-error {
    background-color: #BD362F;
}
.toast-info {
    background-color: #2F96B4;
}
.toast-warning {
    background-color: #F89406;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000000;
    opacity: 0.4;
}

/*Responsive Design*/
.toast-container .white-back {
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
  padding: 0 3px;
  color: black;
  font-size: 12px;
}
.mr-small {
  margin: 0 2px;
}

.ml-small {
  margin-left: 4px;
}

.toast-container .cupix-icons {
  font-size: 17px;
  vertical-align: bottom;
  margin-top: -10px;
  padding: 0;
}

.toast-container > .toast-warning {
  background-image: none !important;
}

.toast-container > .toast-info {
  background-image: none !important;
}

.toast-container > .toast-success {
  background-image: none !important;
}

.toast-container > .toast-error {
  background-image: none !important;
}

.toast .title {
  padding: 15pt 15px 10px 15px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 20pt;
}

.toast-wrapper {
  position: relative;
}

.toast .close-icon {
  position: absolute;
  top: -12px;
  right: -10px;
  margin: 0;
  padding: 0 0 0 6px;
  background: rgba(0,0,0,0.1);
  border-radius: 6px;
  font-size: 13px;
}

.toast > span{
	display: inline;
}

.toast p{
    line-height: 24px;
    padding: 0 5px;
}

br {
  display: block;
  content: "";
  margin-top: 12px;
}