/*!*************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-2.use[1]!./node_modules/sass-loader/dist/cjs.js!./static/common/toast/toast.scss ***!
  \*************************************************************************************************************************************************/
@media screen and (min-width: 769px) {
  .toast-list {
    position: fixed;
    z-index: 999;
    top: 150px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .toast-list .toast-item {
    min-width: 277px;
    padding: 20px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    animation: toastIn 0.6s ease-in-out;
  }
  .toast-list .toast-item span {
    display: block;
    text-align: left;
    font-family: Poppins, Poppins;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
  }
  .toast-list .toast-item--fadeout {
    animation: toastOut 0.6s ease-in-out;
    opacity: 0;
  }
  @keyframes toastIn {
    0% {
      transform: translate(0, -100%);
      opacity: 0;
    }
    100% {
      transform: translate(0, 0);
      opacity: 1;
    }
  }
  @keyframes toastOut {
    0% {
      transform: translate(0, 0);
      opacity: 1;
    }
    100% {
      transform: translate(0, 20%);
      opacity: 0;
    }
  }
}
@media screen and (max-width: 768px) {
  .toast-list {
    position: fixed;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }
  .toast-list .toast-item {
    min-width: 277px;
    padding: 20px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    animation: toastIn 0.6s ease-in-out;
  }
  .toast-list .toast-item span {
    display: block;
    text-align: left;
    font-family: Poppins, Poppins;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
  }
  .toast-list .toast-item--fadeout {
    animation: toastOut 0.6s ease-in-out;
    opacity: 0;
  }
  @keyframes toastIn {
    0% {
      transform: translate(0, -100%);
      opacity: 0;
    }
    100% {
      transform: translate(0, 0);
      opacity: 1;
    }
  }
  @keyframes toastOut {
    0% {
      transform: translate(0, 0);
      opacity: 1;
    }
    100% {
      transform: translate(0, 20%);
      opacity: 0;
    }
  }
}

/*# sourceMappingURL=entry-client.c58bd5bd10838054e85f.css.map*/