@font-face {
  font-family: Roboto-Condensed-Regular;
  src: url("../src/fonts/RobotoCondensed-Regular.ttf");
}
.bmalert-container * {
  font-family: Roboto-Condensed-Regular, 'Roboto', sans-serif;
  box-sizing: border-box;
  outline: 0;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bmalert-container *:focus {
  outline: 0;
}
.bmalert-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(33, 33, 33, 0.48);
  display: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.bmalert-hide {
  -webkit-animation: display-none-transition 0.1s ease-in-out;
  animation: display-none-transition 0.1s ease-in-out;
  width: 0;
  height: 0;
  opacity: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.bmalert-show {
  -webkit-animation: display-transition 0.1s ease-in-out;
  animation: display-transition 0.1s ease-in-out;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#bmalert-prompt {
  width: 36rem;
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 768px) {
  #bmalert-prompt {
    margin-top: 8rem;
    max-width: 92%;
  }
}
#spinner_container {
  position: relative;
  height: 160px;
  width: 160px;
}
#spinner_container svg {
  position: absolute;
  top: 0;
  left: 0;
}
.spinner-container-complete {
  z-index: 2;
  top: 0;
  left: 0;
}
.spinner-container-complete .path {
  stroke-dasharray: 150, 150;
  stroke-dashoffset: 0;
  stroke: #8bc34a;
  stroke-linecap: round;
  -webkit-animation: dash-complete 0.5s ease-in-out;
  animation: dash-complete 0.5s ease-in-out;
}
.spinner-container-warning {
  z-index: 2;
  top: 0;
  left: 0;
}
.spinner-container-warning .path {
  stroke-dasharray: 150, 150;
  stroke-dashoffset: 0;
  stroke: #c7c30f;
  stroke-linecap: round;
  -webkit-animation: dash-warning 0.5s ease-in-out;
  animation: dash-warning 0.5s ease-in-out;
}
.spinner-container-error {
  z-index: 2;
  top: 0;
  left: 0;
}
.spinner-container-error .path {
  stroke-dasharray: 150, 150;
  stroke-dashoffset: 0;
  stroke: #c70f0f;
  stroke-linecap: round;
  -webkit-animation: dash-error 0.5s ease-in-out;
  animation: dash-error 0.5s ease-in-out;
}
.spinner-container-loading {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  z-index: 2;
  top: 0;
  left: 0;
}
.spinner-container-loading .path {
  stroke-dasharray: 1, 150;
  stroke-dashoffset: 0;
  stroke: #8bc34a;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
}
.loading-icon {
  opacity: 0;
}
.show-icon {
  opacity: 1;
  animation: icon-appear 0.5s ease-in-out;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes dash-complete {
  0% {
    stroke: rgba(139, 195, 74, 0.1);
  }
  100% {
    stroke: #8bc34a;
  }
}
@-webkit-keyframes dash-complete {
  0% {
    stroke: rgba(139, 195, 74, 0.1);
  }
  100% {
    stroke: #8bc34a;
  }
}
@keyframes dash-warning {
  0% {
    stroke: rgba(199, 195, 15, 0.1);
  }
  100% {
    stroke: #c7c30f;
  }
}
@-webkit-keyframes dash-warning {
  0% {
    stroke: rgba(199, 195, 15, 0.1);
  }
  100% {
    stroke: #c7c30f;
  }
}
@keyframes dash-error {
  0% {
    stroke: rgba(199, 15, 15, 0.1);
  }
  100% {
    stroke: #c70f0f;
  }
}
@-webkit-keyframes dash-error {
  0% {
    stroke: rgba(199, 15, 15, 0.1);
  }
  100% {
    stroke: #c70f0f;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes icon-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes icon-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes display-transition {
  0% {
    opacity: 0;
    width: 100%;
    height: 100%;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes display-transition {
  0% {
    opacity: 0;
    width: 100%;
    height: 100%;
  }
  100% {
    opacity: 1;
  }
}
@keyframes display-none-transition {
  0% {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
  99% {
    opacity: 0;
    width: 100%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 0;
  }
}
@-webkit-keyframes display-none-transition {
  0% {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
  99% {
    opacity: 0;
    width: 100%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 0;
  }
}
.transition {
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  -ms-transition: all .5s ease;
  transition: all .5s ease;
}
#spinner_container {
  text-align: center;
}
.dialog-container-BM {
  height: 24em;
  width: 30em;
}
.bmalert-container h1 {
  word-break: break-word;
  color: #333;
  font-weight: lighter;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
#bmalert-btns {
  display: flex;
}
.bmalert-container button {
  color: white;
  border: 0;
  border-radius: 2px;
  min-width: 200px;
  margin: 0 20px;
  background: #81bb3f;
  padding: 10px 20px;
  transition: all .3s;
  font-size: .9rem;
  line-height: normal;
  text-transform: none;
  font-family: Roboto-Condensed-Regular;
}
.bmalert-container button:hover {
  background: #6da72b !important;
}
.bmalert-container button:disabled {
  background: #ccc !important;
}
/*# sourceMappingURL=bmalert.css.map */