/**
* Bert
* Styles for the bertAlert template.
* /lib/bert-alert.html
*/

/*------------------------------------*\
  Reset & Clearfix
\*------------------------------------*/

* {
  margin: 0;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*------------------------------------*\
  .bert-alert
\*------------------------------------*/

.bert-alert {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 20px;
}

.bert-alert.visible {
  display: block;
}

.bert-alert p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 22px;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.bert-alert span {
  display: inline-block;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.bert-alert span:hover {
  cursor: pointer;
}

.bert-alert.animated {
  transition-duration: .3s;
  transition-timing-function: linear;
}

/*------------------------------------*\
  .bert-alert .container
\*------------------------------------*/

.bert-alert > .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/*------------------------------------*\
  .bert-alert.default
\*------------------------------------*/

.bert-alert.default {
  background-color: #eee;
  color: #333;
}

/*------------------------------------*\
  .bert-alert.success
\*------------------------------------*/

.bert-alert.success {
  background-color: #75BA50;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.info
\*------------------------------------*/

.bert-alert.info {
  background-color: #1B9EDB;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.warning
\*------------------------------------*/

.bert-alert.warning {
  background-color: #FFCF50;
  color: #7B5F17;
}

/*------------------------------------*\
  .bert-alert.danger
\*------------------------------------*/

.bert-alert.danger {
  background-color: #DA5347;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.fixed-top,
  .bert-alert.fixed-bottom
\*------------------------------------*/

.bert-alert.fixed-top,
.bert-alert.fixed-bottom {
  left: 0px;
  right: 0px;
}

.bert-alert.fixed-top p,
.bert-alert.fixed-bottom p {
  float: left;
  max-width: 95%;
}

.bert-alert.fixed-top span,
.bert-alert.fixed-bottom span {
  float: right;
  font-size: 22px;
  line-height: 21px;
}

/*------------------------------------*\
  .bert-alert.fixed-top
\*------------------------------------*/

.bert-alert.fixed-top {
  top: 0px;
}

.bert-alert.fixed-top span {
  margin-top: -2px;
}

.bert-alert.fixed-bottom span {
  margin-top: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-top.animated
\*------------------------------------*/

.bert-alert.fixed-top.animated {
  top: -100px;
  transition-property: top;
}

.bert-alert.fixed-top.animated.move {
  top: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-bottom
\*------------------------------------*/

.bert-alert.fixed-bottom {
  bottom: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-bottom.animated
\*------------------------------------*/

.bert-alert.fixed-bottom.animated {
  bottom: -100px;
  transition-property: bottom;
}

.bert-alert.fixed-bottom.animated.move {
  bottom: 0px;
}

/*------------------------------------*\
  .bert-alert.growl-top-left,
  .bert-alert.growl-top-right,
  .bert-alert.growl-bottom-right,
  .bert-alert.growl-bottom-left
\*------------------------------------*/

.bert-alert.growl-top-left,
.bert-alert.growl-top-right,
.bert-alert.growl-bottom-right,
.bert-alert.growl-bottom-left {
  max-width: 300px;
}

.bert-alert.growl-top-left,
.bert-alert.growl-top-right {
  top: 20px;
}

.bert-alert.growl-bottom-left,
.bert-alert.growl-bottom-right {
  bottom: 20px;
}

.bert-alert.growl-top-left,
.bert-alert.growl-bottom-left {
  left: 20px;
}

.bert-alert.growl-top-right,
.bert-alert.growl-bottom-right {
  right: 20px;
}

.bert-alert.growl-top-left span,
.bert-alert.growl-top-right span,
.bert-alert.growl-bottom-right span,
.bert-alert.growl-bottom-left span {
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 25px;
  padding: 3px 0 4px;
  top: -10px;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  background: #333;
  color: #fff;
  border-radius: 50px;
}

.bert-alert.growl-top-left span,
.bert-alert.growl-bottom-left span {
  left: -10px;
}

.bert-alert.growl-top-right span,
.bert-alert.growl-bottom-right span {
  right: -10px;
}

/*------------------------------------*\
  .growl-top-right.animated,
  .growl-bottom-right.animated
\*------------------------------------*/

.bert-alert.growl-top-right.animated,
.bert-alert.growl-bottom-right.animated {
  right: -350px;
  transition-property: right;
}

.bert-alert.growl-top-right.animated.move,
.bert-alert.growl-bottom-right.animated.move {
  right: 20px;
}

/*------------------------------------*\
  .growl-top-left.animated,
  .growl-bottom-left.animated
\*------------------------------------*/

.bert-alert.growl-top-left.animated,
.bert-alert.growl-bottom-left.animated {
  left: -350px;
  transition-property: left;
}

.bert-alert.growl-top-left.animated.move,
.bert-alert.growl-bottom-left.animated.move {
  left: 20px;
}