/* (c) 2016 Flavio Colonna Romano
This code is licensed under MIT license (see license.txt for details)
*/
.snackbar-wrapper {
   -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: fixed;
  bottom: -250px;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.snackbar-content {
  /*background: #323232;*/
  background: #17a2b8;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  z-index: 1000;
  width: 100%;
  max-height: 80px;
  box-sizing : border-box;
  line-height: 22px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.snackbar-wrapper.active {
  bottom: 0;
}
.snackbar-wrapper.active_bar {
  bottom: 70px;
}

.snackbar-msg {
  margin: 0;
}

.snackbar-btn {
  text-decoration: none;
  text-transform: uppercase;
  /*font-weight:bold;*/
  /*color: #ffc107 !important;*/

  color:#fff;
  background: #17a2b8;
  margin-left:24px;



	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}