/* Toaster Styles */
.toastr-container {
  position: fixed;
  right: 10px;
  top: 10px;
  max-height: 100%;
  padding-left: 30px;
  z-index: 100004; }

.toastr-wrapper {
  width: 300px;
  font-family: proxima-nova, NunitoSans-Regular, sans-serif;
  margin: 12px 4px;
  background-color: #eee;
  border-radius: 3px !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  overflow: visible;
  position: relative; }

.toastr-wrapper:after {
  content: '';
  display: table;
  height: 0;
  clear: both; }

.toastr-badge {
  position: absolute;
  font-family: proxima-nova, NunitoSans-Regular, sans-serif;
  font-size: 13px;
  width: 28px;
  height: 28px;
  text-align: center;
  border-radius: 18px !important;
  background: #333;
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
  left: -16px;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #fff; }

.toastr-wrapper.multiple:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #eee;
  opacity: 0.6;
  z-index: -1;
  border: 1px solid #eee;
  top: 0;
  left: 0;
  border-radius: 3px !important;
  animation: pan 0.3s forwards; }

.toastr-wrapper.push {
  animation: push 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.toastr-wrapper.pop {
  animation: pop 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045); }

.toastr-wrapper.toastr-info {
  background-color: #cee9fa; }

.toastr-wrapper.toastr-info .toastr-badge {
  background-color: #6cbdf0; }

.toastr-wrapper.toastr-info.multiple:before {
  background-color: #cee9fa;
  border: 1px solid #cee9fa; }

.toastr-wrapper.toastr-warning {
  background-color: #ffd99a; }

.toastr-wrapper.toastr-warning .toastr-badge {
  background-color: #f6a623; }

.toastr-wrapper.toastr-warning.multiple:before {
  background-color: #ffd99a;
  border: 1px solid #ffd99a; }

.toastr-wrapper.toastr-error {
  background-color: #ffb9b2; }

.toastr-wrapper.toastr-error .toastr-badge {
  background-color: #e74c3c; }

.toastr-wrapper.toastr-error.multiple:before {
  background-color: #ffb9b2;
  border: 1px solid #ffb9b2; }

.toastr-wrapper.toastr-success {
  background-color: #bfecd9; }

.toastr-wrapper.toastr-success .toastr-badge {
  background-color: #40c68d; }

.toastr-wrapper.toastr-success.multiple:before {
  background-color: #bfecd9;
  border: 1px solid #bfecd9; }

.toastr-wrapper .toastr-details {
  padding: 7px 0 5px 18px;
  width: 240px;
  float: left; }

.toastr-wrapper .toastr-details .toastr-title {
  font-family: proxima-nova, NunitoSans-Regular, sans-serif;
  font-size: 14px;
  color: #404040;
  text-transform: capitalize; }

.toastr-wrapper .toastr-details .toastr-message {
  font-family: proxima-nova, NunitoSans-Regular, sans-serif;
  padding: 3px 0;
  color: #5c5c5c;
  font-size: 12px; }

.toastr-wrapper .toastr-action {
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0; }

.toastr-wrapper .toastr-action a.action {
  height: 100%;
  position: relative;
  min-width: 55px;
  font-family: proxima-nova, NunitoSans-Regular, sans-serif;
  font-weight: bold;
  display: block;
  font-size: 12px;
  text-decoration: none;
  background-color: #fff;
  color: #5c5c5c;
  text-transform: capitalize;
  border-radius: 0 3px 3px 0 !important;
  transition: background 0.3s linear, color 0.2s linear; }

.toastr-wrapper .toastr-action a.action span.toastr-action-text {
  position: absolute;
  max-width: 100px;
  min-width: 55px;
  height: 20px;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  margin: auto; }

.toastr-wrapper .toastr-action a.action:hover {
  color: #fff; }

.toastr-wrapper.toastr-success .toastr-action a.action:hover {
  background-color: #40c68d; }

.toastr-wrapper.toastr-info .toastr-action a.action:hover {
  background-color: #6cbdf0; }

.toastr-wrapper.toastr-error .toastr-action a.action:hover {
  background-color: #e74c3c; }

.toastr-wrapper.toastr-warning .toastr-action a.action:hover {
  background-color: #f6a623; }

@keyframes push {
  from {
    transform: translateX(100%); }
  to {
    transform: translateX(0); } }

@keyframes pop {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(100%); } }

@keyframes pan {
  from {
    transform: translate(0, 0); }
  to {
    transform: translate(-6px, -6px); } }

/*# sourceMappingURL=toaster.css.map */
