.toast-title {
    font-weight: bold;
  }
  .toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
  }
  .toast-message a,
  .toast-message label {
    color: #000000;
  }
  .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: #000000;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
  }
  .toast-close-button:hover,
  .toast-close-button:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
  }
  /*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-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-almost-bottom-full-width {
    bottom: 45px;
    right: 0;
    width: 100%;
  }
  #toast-container {
    position: fixed;
    z-index: 999999;
    /*overrides*/
  }
  #toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #toast-container > div {
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999999;
    -webkit-box-shadow: 0 0 12px #999999;
    box-shadow: 0 0 12px #999999;
    color: #000000;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
  }
  #toast-container > :hover {
    -moz-box-shadow: 0 0 12px #000000;
    -webkit-box-shadow: 0 0 12px #000000;
    box-shadow: 0 0 12px #000000;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    cursor: pointer;
  }
  #toast-container > .toast-info {
    color: #f68132;
  }
  #toast-container > .toast-error {
    color: #f68132;
  }
  #toast-container > .toast-success {
    color: #f68132;
  }
  #toast-container > .toast-warning {
    color: #f68132;
  }
  #toast-container.toast-top-full-width > div,
  #toast-container.toast-bottom-full-width > div {
    width: 96%;
    margin: auto;
  }
  .toast {
    background-color: white;
    color: black;
  }
  .toast-success {
    background-color: white;
  }
  .toast-error {
    background-color: white;
  }
  .toast-info {
    background-color: white;
  }
  .toast-warning {
    background-color: white;
  }
  /*Animations*/
  .toast {
    opacity: 1 !important;
  }
  .toast.ng-enter {
    opacity: 0 !important;
    transition: opacity .3s linear;
  }
  .toast.ng-enter.ng-enter-active {
    opacity: 1 !important;
  }
  .toast.ng-leave {
    opacity: 1;
    transition: opacity .3s linear;
  }
  .toast.ng-leave.ng-leave-active {
    opacity: 0 !important;
  }
  
  #toast-container > div {
    padding: 8px 35px 8px 15px;
  }
  #toast-container .toast-close-button {
    position: absolute;
    right: 3px;
    top: 4px;
    font-size: 18px;
    width: 28px;
    height: 28px;
    border: solid 1px black;
    border-radius: 100px;
    line-height: 16px;
  }
  
  
  