﻿.snackbar {
  padding: 15px 24px;
  align-items: center;
  min-width: 288px;
  max-width: 568px;
  font-size: 0.875rem;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01071em;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 10px;
  overflow-y: hidden;
  background: #fff;
  color: #000;
  text-align: left;
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 4px solid #70c56a;
  padding-left: 37px;
  position: relative;
}

.snackbar.cs-danger {
  border-left: 4px solid #e63535;
}

.snackbarContainer {
  z-index: 1010;
  position: fixed;
  bottom: 10px;
  left: 10px;
}

@-moz-keyframes fadeOut {
  to {
    height: 0px;
  }
}

@-webkit-keyframes fadeOut {
  to {
    height: 0px;
  }
}

@keyframes fadeOut {
  to {
    height: 0px;
  }
}

@-moz-keyframes fadeIn {
  from {
    height: 0px;
  }
  to {
    height: auto;
  }
}

@-webkit-keyframes fadeIn {
  from {
    height: 0px;
  }
  to {
    height: auto;
  }
}

@keyframes fadeIn {
  from {
    height: 0px;
  }
  to {
    height: auto;
  }
}

.snackbar .snack-icon {
  position: absolute;
  left: 10px;
  top: 15px;
  width: 17px;
}

.snackbar .title {
  font-size: 18px;
  font-weight: 600;
}

.snackbar.active {
  -webkit-animation: fadeIn 500ms;
  -moz-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

.close-snack {
  position: absolute;
  right: 10px;
  top: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}
