#six-storage-toast-container {
  display:block;
  position: fixed;
  z-index: 10000;
  top: auto !important;
  right:unset !important;
  bottom: 0 !important;
  left:60%; 

  @media #{$small-and-down} {
    top: auto !important;
    right: auto !important;
    min-width: 100%;
    bottom: 0%;
  }
  @media #{$medium-only} {
    top: 10%;
    right: 7%;
    max-width: 86%;
  }
  @media #{$large-and-up} {
    top: 10%;
    right: 7%;
    max-width: 86%;
  }
}

.six-storage-toast {
  @extend .six-storage-z-depth-1;
  border-radius: 2px;
  transform:translateY(-50%);
  bottom: 0;
  width: auto;
  margin-top: 10px;
  position: relative;
  max-width:100%;
  height: auto;
  min-height: $toast-height;
  line-height: 1.5em;
  background-color: $toast-color;
  padding: 10px 25px;
  font-size: 1.1rem;
  font-weight: 300;
  // color: $toast-text-color;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;

  .six-storage-toast-action {
    color: $toast-action-color;
    font-weight: 500;
    margin-right: -25px;
    margin-left: 3rem;
  }

  &.six-storage-rounded{
    border-radius: 24px;
  }

  @media #{$small-and-down} {
    width: 100%;
    border-radius: 0;
  }
}
