.btAlert.alert {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 99999999 !important;
}

.btAlert.alert.fade.show {
  -webkit-animation: fadein 1s ease; /* Safari 4+ */
  -moz-animation:    fadein 1s ease; /* Fx 5+ */
  -o-animation:      fadein 1s ease; /* Opera 12+ */
  animation:         fadein 1s ease; /* IE 10+, Fx 29+ */
}

.btAlert.alert.alert-dismissible > span.alert-inner--text {
  padding-right: 38px;
}

.btAlert.alert.alert-dismissible > button.close {
  padding-top: 2px;
  text-align: right;
}

@-webkit-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
