.bs-alert-toast {
  min-height: 50px;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1049;
}

.bs-alert-toast .alert {
  position: relative;
  width: 100%;
  z-index: 2;
  opacity: 1;
  left: 0;
  right: 0;
  margin-bottom: 0;
}

.bs-alert-toast .alert.affix {
  position: fixed;
}

.bs-alert-toast-spacer {
  padding-bottom: 50px;
}

.bs-alert-toast .block-all {
  background-color: rgba(0, 0, 0, .2);
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-width: 100vw;
  position: absolute;
  z-index: 1;
  cursor: not-allowed;
}

.bs-alert-toast .custom-icon-wrapper {
  position: relative;
  display: inline-block;
  top: 2px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0 3px;
}

.bs-alert-toast .custom-icon-wrapper > svg path {
  fill: currentColor;
}

.bs-alert-toast .simulcast-transport.ellipsis-loading-container {
  min-width: 1em;
  width: 1em;
  display: inline-block;
  text-align: left;
  vertical-align: bottom;
}

.bs-alert-toast .simulcast-transport .ellipsis-loading:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis-animation steps(4,end) 900ms infinite;
  animation: ellipsis-animation steps(4,end) 900ms infinite;
  content: "..."; /* ascii code for the ellipsis character */
  width: 0;
}

@keyframes ellipsis-animation {
  to {
    width: 1em;
  }
}

@-webkit-keyframes ellipsis-animation {
  to {
    width: 1em;
  }
}
