.bert-alert {
	display: none;
	position: fixed;
	background: #eeeeee;
	z-index: 9999;
	color: #666666;
	padding: 15px;
  }
  .bert-alert.show {
	display: block;
  }
  .bert-alert > .bert-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
  }
  .bert-alert > .bert-container > .bert-gem {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	float: left;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 3px;
	margin-right: 15px;
  }
  .bert-alert > .bert-container > .bert-gem i {
	position: relative;
	top: 0px;
	font-size: 16px;
	line-height: 16px;
  }
  .bert-alert > .bert-container > .bert-content {
	float: left;
	width: calc(100% - 47px);
  }
  .bert-alert > .bert-container > .bert-content h5 + p {
	top: 0px;
  }
  .bert-alert > .bert-container > .bert-content p {
	position: relative;
	top: -1px;
  }
  .bert-alert .bert-content > h5 {
	display: block;
	color: #666666;
	margin: 0px 0px 5px;
	font-size: 14px;
  }
  .bert-alert:not(.default) .bert-content > h5, .bert-gem {
	color: #fff;
  }
  .bert-alert .bert-content > p {
	font-size: 14px;
	line-height: 20px;
	margin: 0;
  }
  .bert-alert .bert-content > .bert-icon {
	position: relative;
	top: -4px;
	float: right;
	font-size: 24px;
	line-height: 24px;
	margin: 0;
  }
  .bert-alert.success p, .bert-alert.info p, .bert-alert.warning p, .bert-alert.danger p, .bert-alert.success i, .bert-alert.info i, .bert-alert.warning i, .bert-alert.danger i {
	color: #fff;
  }
  .bert-alert.success {
	background: #75ba50;
  }
  .bert-alert.info {
	background: #1b9edb;
  }
  .bert-alert.warning {
	background: #fad131;
  }
  .bert-alert.danger {
	background: #da5347;
  }
  .bert-alert.fixed-top, .bert-alert.fixed-bottom {
	left: 0px;
	right: 0px;
  }
  .bert-alert.fixed-top {
	top: -100%;
	padding-top: 20px;
	-webkit-transition: top 0.8s cubic-bezier(0.5, 0, 0.275, 1.11);
  }
  .bert-alert.fixed-top.animate {
	padding-top: 20px;
	top: -6px;
  }
  .bert-alert.fixed-bottom {
	bottom: -100%;
	padding-bottom: 20px;
	-webkit-transition: bottom 0.8s cubic-bezier(0.5, 0, 0.275, 1.11);
  }
  .bert-alert.fixed-bottom.animate {
	padding-bottom: 20px;
	bottom: -6px;
  }
  .bert-alert[class*="growl-"] {
	border-radius: 3px;
	max-width: 350px;
  }
  .bert-alert[class*="growl-"] .bert-content h5 {
	display: block;
	color: #fff;
	margin: 0px 0px 5px;
	font-size: 14px;
  }
  .bert-alert[class*="growl-"] .bert-content p {
	font-size: 14px;
	width: 100%;
  }
  .bert-alert.growl-top-left, .bert-alert.growl-bottom-left {
	left: -100%;
	right: auto;
	width: calc(100% - 30px);
	-webkit-transition: left 0.8s cubic-bezier(0.5, 0, 0.275, 1.11);
  }
  .bert-alert.growl-top-left.animate, .bert-alert.growl-bottom-left.animate {
	left: 15px;
  }
  .bert-alert.growl-top-left, .bert-alert.growl-top-right {
	top: 15px;
  }
  .bert-alert.growl-bottom-left, .bert-alert.growl-bottom-right {
	bottom: 15px;
  }
  .bert-alert.growl-top-right, .bert-alert.growl-bottom-right {
	right: -100%;
	left: auto;
	width: calc(100% - 30px);
	-webkit-transition: right 0.8s cubic-bezier(0.5, 0, 0.275, 1.11);
  }
  .bert-alert.growl-top-right.animate, .bert-alert.growl-bottom-right.animate {
	right: 15px;
  }
  @media screen and (min-width: 350px) {
	.bert-alert[class*="growl-"] {
	  min-width: 350px;
	}
	.bert-alert.growl-top-left, .bert-alert.growl-bottom-left {
	  left: -100%;
	  right: auto;
	  -webkit-transition: left 0.8s cubic-bezier(0.5, 0, 0.275, 1.11);
	}
	.bert-alert.growl-top-left.animate, .bert-alert.growl-bottom-left.animate {
	  left: 15px;
	}
	.bert-alert.growl-top-right, .bert-alert.growl-bottom-right {
	  right: -100%;
	  left: auto;
	  -webkit-transition: right 0.8s cubic-bezier(0.5, 0, 0.275, 1.11);
	}
	.bert-alert.growl-top-right.animate, .bert-alert.growl-bottom-right.animate {
	  right: 15px;
	}
  }
