/*!*************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-3.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: var(--toast-z-index);
    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: var(--toast-z-index);
  }
  .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;
    }
  }
}
/*!************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-3.use[1]!./node_modules/sass-loader/dist/cjs.js!./static/viewComponents/PrivacyDialog/template/privacyDialog/privacyDialog.scss ***!
  \************************************************************************************************************************************************************************************************/
@media screen and (min-width: 769px) {
  .privacy-dialog {
    position: fixed;
    z-index: var(--privacy-z-index);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .privacy-dialog .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
  }
  .privacy-dialog .dialog-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 576px;
    background-color: #FFF;
    border-radius: 16px;
    transition: all 0.3s ease;
  }
  .privacy-dialog .dialog-box * {
    box-sizing: border-box;
  }
  .privacy-dialog .dialog-box .title-box {
    width: 100%;
    padding: 19px 40px 15px;
    border-bottom: 1px solid #DDDDDD;
  }
  .privacy-dialog .dialog-box .title-box img {
    width: 112px;
    height: auto;
    display: block;
  }
  .privacy-dialog .dialog-box .content-box {
    padding: 0 40px;
    padding-bottom: 40px;
    font-family: "Roboto";
  }
  .privacy-dialog .dialog-box .content-box .line-1 {
    margin-top: 16px;
    font-weight: 500;
    font-size: 16px;
    color: #555555;
    line-height: 1.1875;
    text-align: left;
  }
  .privacy-dialog .dialog-box .content-box .line-2 {
    margin-top: 16px;
    font-weight: 400;
    font-size: 12px;
    color: #555555;
    line-height: 1.4814814815;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }
  .privacy-dialog .dialog-box .content-box .line-3 {
    margin-top: 32px;
    font-weight: 500;
    font-size: 16px;
    color: #555555;
    line-height: 1.1875;
    text-align: left;
  }
  .privacy-dialog .dialog-box .content-box .line-4 {
    margin-top: 17px;
    border-radius: 12px;
    border: 1px solid #707070;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 59px;
    padding: 0 24px 0;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .content {
    font-weight: 500;
    font-size: 14px;
    color: #555555;
    line-height: 1;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .switch-box {
    position: relative;
    background-color: #D1D5DB;
    width: 44px;
    height: 24px;
    border-radius: 3000px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .switch-box::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 3000px;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .switch-box.not-allowed {
    background-color: #FEC629;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .switch-box.not-allowed::after {
    left: 22px;
  }
  .privacy-dialog .dialog-box .content-box .line-5 {
    border-radius: 12px;
    width: 292px;
    height: 42px;
    line-height: 42px;
    background: #0F0F0F;
    margin: 0 auto;
    margin-top: 32px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    transition: all 0.4s;
  }
  .privacy-dialog .dialog-box .content-box .line-5:hover {
    background: #383838;
  }
  .privacy-dialog.hide {
    display: none;
  }
  .privacy-dialog.hide-animation .mask {
    opacity: 0;
  }
  .privacy-dialog.hide-animation .dialog-box {
    transform: scale(0) translate(-50%, -50%);
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .privacy-dialog {
    position: fixed;
    z-index: var(--privacy-z-index);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .privacy-dialog .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
  }
  .privacy-dialog .dialog-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(410 / 430 * 100vw);
    background-color: #FFF;
    border-radius: calc(16 / 430 * 100vw);
    transition: all 0.3s ease;
  }
  .privacy-dialog .dialog-box * {
    box-sizing: border-box;
  }
  .privacy-dialog .dialog-box .title-box {
    width: 100%;
    padding: calc(19 / 430 * 100vw) calc(24 / 430 * 100vw) calc(15 / 430 * 100vw);
    border-bottom: 1px solid #DDDDDD;
  }
  .privacy-dialog .dialog-box .title-box img {
    width: calc(112 / 430 * 100vw);
    height: auto;
    display: block;
  }
  .privacy-dialog .dialog-box .content-box {
    padding: 0 calc(24 / 430 * 100vw);
    padding-bottom: calc(34 / 430 * 100vw);
    font-family: "Roboto";
  }
  .privacy-dialog .dialog-box .content-box .line-1 {
    margin-top: calc(16 / 430 * 100vw);
    font-weight: 500;
    font-size: calc(16 / 430 * 100vw);
    color: #555555;
    line-height: 1.21875;
    text-align: left;
  }
  .privacy-dialog .dialog-box .content-box .line-2 {
    margin-top: calc(24 / 430 * 100vw);
    font-weight: 400;
    font-size: calc(12 / 430 * 100vw);
    color: #555555;
    line-height: 1.5;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }
  .privacy-dialog .dialog-box .content-box .line-3 {
    margin-top: calc(24 / 430 * 100vw);
    font-weight: 500;
    font-size: calc(16 / 430 * 100vw);
    color: #555555;
    line-height: 1.1875;
    text-align: left;
  }
  .privacy-dialog .dialog-box .content-box .line-4 {
    margin-top: calc(17 / 430 * 100vw);
    border-radius: calc(12 / 430 * 100vw);
    border: 1px solid #707070;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: calc(76 / 430 * 100vw);
    padding: 0 calc(16 / 430 * 100vw) 0;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .content {
    width: calc(222 / 430 * 100vw);
    font-weight: 500;
    font-size: calc(14 / 430 * 100vw);
    color: #555555;
    line-height: 1;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .switch-box {
    position: relative;
    background-color: #D1D5DB;
    width: calc(44 / 430 * 100vw);
    height: calc(24 / 430 * 100vw);
    border-radius: 3000px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .switch-box::after {
    content: "";
    position: absolute;
    top: calc(2 / 430 * 100vw);
    left: calc(2 / 430 * 100vw);
    width: calc(20 / 430 * 100vw);
    height: calc(20 / 430 * 100vw);
    background-color: #fff;
    border-radius: calc(20 / 430 * 100vw);
    transition: all 0.3s ease-in-out;
    border-radius: 3000px;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .switch-box.not-allowed {
    background-color: #FEC629;
  }
  .privacy-dialog .dialog-box .content-box .line-4 .switch-box.not-allowed::after {
    left: calc(22 / 430 * 100vw);
  }
  .privacy-dialog .dialog-box .content-box .line-5 {
    border-radius: calc(12 / 430 * 100vw);
    width: 100%;
    height: calc(42 / 430 * 100vw);
    line-height: calc(42 / 430 * 100vw);
    background: #0F0F0F;
    margin: 0 auto;
    margin-top: calc(36 / 430 * 100vw);
    cursor: pointer;
    font-weight: 600;
    font-size: calc(14 / 430 * 100vw);
    color: #FFFFFF;
    text-align: center;
  }
  .privacy-dialog.hide {
    display: none;
  }
  .privacy-dialog.hide-animation .mask {
    opacity: 0;
  }
  .privacy-dialog.hide-animation .dialog-box {
    transform: scale(0) translate(-50%, -50%);
    opacity: 0;
  }
}

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