@charset "UTF-8";
/* ============================================================================
   config.scss  —  똑똑수학 공통 디자인 토큰 (Single Source of Truth)
   ----------------------------------------------------------------------------
   · 색상 / 버튼 치수 / 폰트 / breakpoint 등 "여러 파일에서 공통으로 쓰이는 값"을
     이 파일 한 곳에서만 정의합니다.
   · 각 scss 파일 최상단에서  @import 'config';  로 불러와 사용합니다.
   ※ 색상 토큰 접두사는 $c- 로 통일 (각 파일의 로컬 변수명과 충돌 방지)
   ============================================================================ */
/* ── 브랜드 · 퍼플 (2025 기존) ──────────────────────────────────────────── */
/* ── 브랜드 · 인디고 (버튼/포인트) ──────────────────────────────────────── */
/* ── 브랜드 · 바이올렛 (2026 리뉴얼 메인) ───────────────────────────────── */
/* ── 브랜드 · 보라 틴트(보조) ───────────────────────────────────────────── */
/* ── 액센트 ────────────────────────────────────────────────────────────── */
/* ── gray ────────────────────────────────────────────────────────────── */
/* ── 버튼 치수 · 폰트 토큰 ─────────────────────────────────────────────── */
/* ── 공통 믹스인 ───────────────────────────────────────────────────────── */
/* ── 반응형 breakpoint (신규 작업용 표준값) ────────────────────────────────
   ※ 기존 미디어쿼리는 값이 제각각(1200/1440/770/768/500/640…)이라 자동 치환하지
      않았습니다. 앞으로 새로 작성하는 반응형은 아래 믹스인 사용을 권장합니다.
      예)  @include respond-to($bp-sm) { ... }   또는   @include respond-to(600px) { ... }
   ------------------------------------------------------------------------- */
/* ==========================================================================
   Caption (숨김 처리)
   ========================================================================== */
caption {
  visibility: hidden;
  position: absolute;
  top: -9999999px;
  left: -9999999px;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  background: none;
  font-size: 0;
  line-height: 0;
  text-indent: -9999999px;
}

/* ==========================================================================
   Paging
   ========================================================================== */
.paging_wrap {
  margin: 20px 0 0;
  text-align: center;
}
.paging_wrap ul {
  display: inline-block;
}
.paging_wrap ul li {
  float: left;
  margin: 0 2px;
}
.paging_wrap ul li button {
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #666;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
}
.paging_wrap ul li.active button {
  color: #fff;
  border-color: #865dd5;
  background: #865dd5;
}
.paging_wrap ul li.first button {
  background: url(/resources/toctocmath/userImages/common/paging_icon_first-c3914446744fab6476f20c7b343a4afb.png) no-repeat center center;
}
.paging_wrap ul li.prev button {
  background: url(/resources/toctocmath/userImages/common/paging_icon_prev-e25a4029c9b07546ecb973a519ffa499.png) no-repeat center center;
}
.paging_wrap ul li.next button {
  background: url(/resources/toctocmath/userImages/common/paging_icon_next-e5a59b0afb501348f9aed23a9dd6f9b2.png) no-repeat center center;
}
.paging_wrap ul li.last button {
  background: url(/resources/toctocmath/userImages/common/paging_icon_last-da0fa7f24b301ae866c94761190f760e.png) no-repeat center center;
}

/* ==========================================================================
   평가결과 없음
   ========================================================================== */
.no_result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.no_result img {
  width: 250px;
}

/* ==========================================================================
   공통 유틸리티
   ========================================================================== */
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.displayNone {
  display: none !important;
}

.full {
  width: 100% !important;
}

.dip_n {
  display: none !important;
}

.dip_bl {
  display: block !important;
}

.dip_inb {
  display: inline-block !important;
}

.dip_f {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.fw_500 {
  font-weight: 500 !important;
}

.bold {
  font-weight: bold !important;
}

.normal {
  font-weight: normal !important;
}

.blue {
  color: #004dc4 !important;
}

.orange {
  color: #ff7200 !important;
}

.black {
  color: #000 !important;
}

.green {
  color: #457f00 !important;
}

.red {
  color: #cf0e0e !important;
}

.gray {
  color: #696969 !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

.align_l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.align_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.align_r button {
  font-size: 16px;
  padding: 6px 12px;
}
.align_r { /* 20260708버튼이 테이블 오른쪽에 올가능성 커서 공통단에 넣음*/ }

.align_c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align_l_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* ==========================================================================
   Input & Form
   ========================================================================== */
label {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  margin: 2px 10px 0 5px;
}

.text, select {
  display: inline-block;
  vertical-align: middle;
  height: 44px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 16px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  background: url(/resources/toctocmath/userImages/sub/icon_select_arrow-057526b05298a2e8ef1b67dfff611791.gif) right 10px top 50% no-repeat;
  background-color: #fff;
}
select::-ms-expand {
  display: none;
}
select:disabled {
  background-color: #eeeeee !important;
}

input[type=text], input[type=password], input[type=number], input[type=tel] {
  display: inline-block;
  vertical-align: middle;
  height: 44px;
  line-height: 41px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 16px;
}
input[type=radio] {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
input[type=date] {
  height: 44px;
  padding: 4px 10px;
  font-size: 16px;
  color: #333;
  border: 1px solid #ddd;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  border-radius: 5px;
}
input[type=date]::-webkit-calendar-picker-indicator {
  width: 30px;
  height: 30px;
  background: url("/resources/toctocmath/userImages/common/calendar-7303200a8434c4b4ba695e1c5ec6c833.png") 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
}

input[type=radio] ~ label {
  display: inline-block;
  vertical-align: middle;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
button {
  cursor: pointer;
  vertical-align: middle;
}

.btn_purple {
  background: #865dd5;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 18px;
}
@media (max-width: 770px) {
  .btn_purple {
    border-radius: 6px;
    font-size: 16px;
  }
}
.btn_purple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_red {
  background: #cc200e;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 18px;
}
@media (max-width: 770px) {
  .btn_red {
    border-radius: 6px;
    font-size: 16px;
  }
}
.btn_red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_green {
  background: #599e00;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 18px;
}
@media (max-width: 770px) {
  .btn_green {
    border-radius: 6px;
    font-size: 16px;
  }
}
.btn_green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_yellow {
  background: #E6B800;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 18px;
}
@media (max-width: 770px) {
  .btn_yellow {
    border-radius: 6px;
    font-size: 16px;
  }
}
.btn_yellow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_gray {
  background: #6a6a6a;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 18px;
}
@media (max-width: 770px) {
  .btn_gray {
    border-radius: 6px;
    font-size: 16px;
  }
}
.btn_gray {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_blue {
  background: #0095da;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 18px;
}
@media (max-width: 770px) {
  .btn_blue {
    border-radius: 6px;
    font-size: 16px;
  }
}
.btn_blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_white {
  background: #fff;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 18px;
}
@media (max-width: 770px) {
  .btn_white {
    border-radius: 6px;
    font-size: 16px;
  }
}
.btn_white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  border: 1px solid #c8c8c8;
}

.btn_s_gray {
  background: #6a6a6a;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 770px) {
  .btn_s_gray {
    border-radius: 4px;
    font-size: 14px;
  }
}
.btn_s_gray {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_s_blue {
  background: #0095da;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 770px) {
  .btn_s_blue {
    border-radius: 4px;
    font-size: 14px;
  }
}
.btn_s_blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_s_green {
  background: #599e00;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 770px) {
  .btn_s_green {
    border-radius: 4px;
    font-size: 14px;
  }
}
.btn_s_green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_s_red {
  background: #cc200e;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 770px) {
  .btn_s_red {
    border-radius: 4px;
    font-size: 14px;
  }
}
.btn_s_red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_s_purple {
  background: #865dd5;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 770px) {
  .btn_s_purple {
    border-radius: 4px;
    font-size: 14px;
  }
}
.btn_s_purple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff !important;
}

.btn_s_white {
  background: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 770px) {
  .btn_s_white {
    border-radius: 4px;
    font-size: 14px;
  }
}
.btn_s_white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  border: 1px solid #c8c8c8;
}

.btn_sort {
  background: #fff;
  height: 25px;
  padding: 0;
  color: #333;
  font-style: normal;
}
.btn_sort.active {
  color: #865dd5;
  border-bottom: 1px solid #865dd5;
  font-weight: 700;
  font-style: normal;
}

/* ==========================================================================
   Spacing — Padding
   ========================================================================== */
.pd0 {
  padding: 0 !important;
}

.pd5 {
  padding: 5px !important;
}

.pd10 {
  padding: 10px !important;
}

.pd15 {
  padding: 15px !important;
}

.pd20 {
  padding: 20px !important;
}

.pd25 {
  padding: 25px !important;
}

.pd30 {
  padding: 30px !important;
}

.pdt0 {
  padding-top: 0 !important;
}

.pdt5 {
  padding-top: 5px !important;
}

.pdt10 {
  padding-top: 10px !important;
}

.pdt15 {
  padding-top: 15px !important;
}

.pdt20 {
  padding-top: 20px !important;
}

.pdt25 {
  padding-top: 25px !important;
}

.pdt30 {
  padding-top: 30px !important;
}

.pdr5 {
  padding-right: 5px !important;
}

.pdr10 {
  padding-right: 10px !important;
}

.pdr15 {
  padding-right: 15px !important;
}

.pdr20 {
  padding-right: 20px !important;
}

.pdr25 {
  padding-right: 25px !important;
}

.pdr30 {
  padding-right: 30px !important;
}

.pdb5 {
  padding-bottom: 5px !important;
}

.pdb10 {
  padding-bottom: 10px !important;
}

.pdb15 {
  padding-bottom: 15px !important;
}

.pdb20 {
  padding-bottom: 20px !important;
}

.pdb25 {
  padding-bottom: 25px !important;
}

.pdb30 {
  padding-bottom: 30px !important;
}

.pdl5 {
  padding-left: 5px !important;
}

.pdl10 {
  padding-left: 10px !important;
}

.pdl15 {
  padding-left: 15px !important;
}

.pdl20 {
  padding-left: 20px !important;
}

.pdl25 {
  padding-left: 25px !important;
}

.pdl30 {
  padding-left: 30px !important;
}

/* ==========================================================================
   Spacing — Margin
   ========================================================================== */
.mg5 {
  margin: 5px !important;
}

.mg10 {
  margin: 10px !important;
}

.mg15 {
  margin: 15px !important;
}

.mg20 {
  margin: 20px !important;
}

.mg25 {
  margin: 25px !important;
}

.mg30 {
  margin: 30px !important;
}

.mgt0 {
  margin-top: 0 !important;
}

.mgt5 {
  margin-top: 5px !important;
}

.mgt10 {
  margin-top: 10px !important;
}

.mgt15 {
  margin-top: 15px !important;
}

.mgt20 {
  margin-top: 20px !important;
}

.mgt25 {
  margin-top: 25px !important;
}

.mgt30 {
  margin-top: 30px !important;
}

.mgr5 {
  margin-right: 5px !important;
}

.mgr10 {
  margin-right: 10px !important;
}

.mgr15 {
  margin-right: 15px !important;
}

.mgr20 {
  margin-right: 20px !important;
}

.mgr25 {
  margin-right: 25px !important;
}

.mgr30 {
  margin-right: 30px !important;
}

.mgb5 {
  margin-bottom: 5px !important;
}

.mgb10 {
  margin-bottom: 10px !important;
}

.mgb15 {
  margin-bottom: 15px !important;
}

.mgb20 {
  margin-bottom: 20px !important;
}

.mgb25 {
  margin-bottom: 25px !important;
}

.mgb30 {
  margin-bottom: 30px !important;
}

.mgl5 {
  margin-left: 5px !important;
}

.mgl10 {
  margin-left: 10px !important;
}

.mgl15 {
  margin-left: 15px !important;
}

.mgl20 {
  margin-left: 20px !important;
}

.mgl25 {
  margin-left: 25px !important;
}

.mgl30 {
  margin-left: 30px !important;
}

/* ==========================================================================
   Toast / Confirm Alert
   ========================================================================== */
#toast-root, #confirm-root {
  position: fixed;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5607843137);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#toast-root .toast-item-wrap, #confirm-root .toast-item-wrap {
  width: 100%;
  margin: 0 20px;
  max-width: 680px;
  min-width: 325px;
  min-height: 325px;
  background-color: #ffffff;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-animation-name: toast-show;
          animation-name: toast-show;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  overflow: hidden;
}
#toast-root .toast-header, #confirm-root .toast-header {
  width: 100%;
  min-height: 60px;
  background-color: #865dd5;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#toast-root, #confirm-root { /*색상변경*/ }
#toast-root .toast-message-wrap, #confirm-root .toast-message-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2C2C2C;
  font-size: 24px;
  padding: 40px;
  text-align: center;
  word-break: keep-all;
  width: 100%;
  max-width: 450px;
  line-height: 1.1;
}
#toast-root .toast-close-button,
#toast-root .toast-ok-button, #confirm-root .toast-close-button,
#confirm-root .toast-ok-button {
  width: 200px;
  height: 58px;
  margin-bottom: 30px;
  cursor: pointer;
}

/*20260703 팝업의 버튼 넓이 텍스트수정 */
@media (max-width: 500px) {
  #confirm-root .toast-item-wrap .toast-header, #toast-root .toast-header {
    font-size: 24px;
  }
  #confirm-root .toast-item-wrap .toast-message-wrap, #toast-root .toast-message-wrap {
    padding: 20px;
    font-size: 20px;
  }
  #confirm-root .toast-item-wrap .toast-button-wrap .popup_btn button, #toast-root .toast-button-wrap .popup_btn button {
    max-width: 200px !important;
  }
}
#toast-root .toast-item-wrap.success {
  background-color: blue;
}
#toast-root .toast-item-wrap.warning {
  background-color: orange;
}
#toast-root .toast-item-wrap.fail {
  background-color: red;
}
#toast-root .toast-message-wrap::before {
  content: "";
  display: block;
  width: 91px;
  height: 81px;
  margin-bottom: 30px;
  background-image: url("/resources/assets/img/icon/toast-warning-b002e3aee1d9a7bf57f9ce3bd0c05cd7.svg");
}
#toast-root .toast-message-wrap.no-image::before {
  display: none;
}
#toast-root .download-button {
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #7400ff;
  font-size: 22px;
  color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#toast-root .download-button img {
  margin-right: 5px;
}

#confirm-root .toast-item-wrap {
  background-color: #fff;
}
#confirm-root .toast-message-wrap span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2C2C2C;
  font-size: 26px;
  text-align: center;
}
#confirm-root .toast-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
#confirm-root .button {
  background-color: #b3b3b3;
  border-radius: 40px;
  font-size: 20px;
  margin-left: 10px;
  margin-right: 10px;
  color: #fff;
  max-width: 160px;
}
#confirm-root .button.toast-ok-button {
  background-color: #36a8ff;
}
#confirm-root .white-box {
  background-color: #fff;
  border: 3px solid #ffdf3d;
  font-size: 22px;
  padding: 15px 0;
  border-radius: 8px;
  width: 92%;
  margin: 20px 0;
}

@-webkit-keyframes toast-show {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes toast-show {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}