.c-toast {
  border: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1051;
  -webkit-user-select: none;
  user-select: none;
  justify-content: center;
  align-items: center;
  display: flex;
  .c-toast__content {
    z-index: 1;
    min-width: 130px;
    max-width: 80%;
    background: rgba(40, 40, 40, 0.9);
    padding: 15px 15px;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    margin-top: -40px;
    p {
      padding-bottom: 5px;
      width: 100%;
      word-wrap: break-word;
      word-break: normal;
      line-height: 22px;
      &:last-child {
        padding: 0;
      }
    }
  }
  &::before {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: " ";
  }
}
