@charset "UTF-8";
/** 팝업 **/
.popups {
  /*display: none;*/
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  transition: all 0.4s;
}

.popups.on {
  /*display: block;*/
  visibility: visible;
  opacity: 1;
}

.popups .dimmed {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
}

.popups .modal-table {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}

.popups .modal-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.popups .modal-content {
  position: relative;
  max-width: 330px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  box-sizing: border-box;
}

.popups .copy {
  text-align: center;
}

.popups .modal-content {
  padding: 14px;
  border-radius: 20px;
}

.popups .copy {
  text-align: center;
  margin: 26px auto 35px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.popups .okay-btn {
  width: 100%;
}

.popups .okay-btn .btn-ok {
  display: inline-block;
  padding: 18px 0 18px;
  width: 100%;
  text-align: center;
  background: #ffe300;
  /* custom */
  border-radius: 10px;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  box-sizing: border-box;
}

.popups .okay-btn.cnt-2 {
  display: flex;
}

.popups .okay-btn.cnt-2 .btn-ok {
  padding: 20px 0 19px;
  float: left;
  flex: 0 80px;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  background: #e2e2e2;
}

.popups .okay-btn.cnt-2 .btn-ok + .btn-ok {
  float: none;
  background: #ffd600;
  margin-left: 10px;
  flex: 1;
}
.popups .copy .desc {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -1px;
  margin: 20px auto 0;

  color: #333333;
}
