.x-snackbars-wrapper {
  position: fixed;
  z-index: 99;
  margin: 16px;
}
.x-snackbars-wrapper-top {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.x-snackbars-wrapper-top .x-snackbars {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.x-snackbars-wrapper-top .x-snackbars-transition-enter-from, .x-snackbars-wrapper-top .x-snackbars-transition-leave-to {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.x-snackbars-wrapper-left-top {
  top: 0;
  left: 0;
}
.x-snackbars-wrapper-left-top .x-snackbars-transition-enter-from, .x-snackbars-wrapper-left-top .x-snackbars-transition-leave-to {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.x-snackbars-wrapper-right-top {
  top: 0;
  right: 0;
}
.x-snackbars-wrapper-right-top .x-snackbars {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.x-snackbars-wrapper-right-top .x-snackbars-transition-enter-from, .x-snackbars-wrapper-right-top .x-snackbars-transition-leave-to {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.x-snackbars-wrapper-bottom {
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.x-snackbars-wrapper-bottom .x-snackbars {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.x-snackbars-wrapper-bottom .x-snackbars-transition-enter-from, .x-snackbars-wrapper-bottom .x-snackbars-transition-leave-to {
  -webkit-transform: translateY(calc(-100% + 30px));
          transform: translateY(calc(-100% + 30px));
}
.x-snackbars-wrapper-left-bottom {
  left: 0;
  bottom: 0;
}
.x-snackbars-wrapper-left-bottom .x-snackbars-transition-enter-from {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
.x-snackbars-wrapper-left-bottom .x-snackbars-transition-leave-to {
  -webkit-transform: translate(-30px, -100%);
          transform: translate(-30px, -100%);
}
.x-snackbars-wrapper-right-bottom {
  right: 0;
  bottom: 0;
}
.x-snackbars-wrapper-right-bottom .x-snackbars {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.x-snackbars-wrapper-right-bottom .x-snackbars-transition-enter-from {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.x-snackbars-wrapper-right-bottom .x-snackbars-transition-leave-to {
  -webkit-transform: translate(30px, -100%);
          transform: translate(30px, -100%);
}

.x-snackbars {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.x-snackbars-item {
  padding-bottom: 16px;
}
.x-snackbars-transition-move, .x-snackbars-transition-enter-active, .x-snackbars-transition-leave-active {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.x-snackbars-transition-enter-from {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.x-snackbars-transition-leave-to {
  opacity: 0;
}
.x-snackbars-transition-leave-active {
  position: absolute;
}

.x-snackbar {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 334px;
  max-width: 672px;
  min-height: 48px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.x-snackbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: all 0.3s ease;
          transform: all 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.x-snackbar-elevation::before {
  background-color: currentColor;
}
.x-snackbar-elevation .x-snackbar-content {
  color: #fff;
}
.x-snackbar-elevation .x-snackbar-action {
  color: #fff;
}
.x-snackbar-tonal {
  border-color: transparent;
}
.x-snackbar-tonal::before {
  background-color: currentColor;
  opacity: 0.4;
}
.x-snackbar-outlined {
  border-color: currentColor;
}
.x-snackbar-rounded {
  border-radius: 4px;
}
.x-snackbar-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.x-snackbar-vertical .x-snackbar-content {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.x-snackbar-vertical .x-snackbar-action {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.x-snackbar-content {
  padding: 12px 16px;
}
.x-snackbar-action {
  padding: 6px 8px;
}