@charset "utf-8";
@import url(reset.css);
@import url(font.css);
@import url(ui.common.css);

.hide {
  display: none !important;
}

.disabled {
  pointer-events: none;
}

/* 공통 */
* {
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  touch-action: pan-y;
}
body {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: 700;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

#wrap {
  position: absolute;
  width: 1080px;
  height: 1920px;
  padding: 0px 0px 0px;
  font-size: 16px;
  font-weight: inherit;
  color: #000;
  text-align: center;
}

#container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(100%);
  text-align: center;
  /* overflow: hidden; */
  top: 0px;
}
.fixed--area {
  position: fixed;
  left: 0;
  background-color: #e2f3eb;
}
#pageWrap {
  position: relative;
  width: 100%;
  height: 1399px;
  margin-top: 150px;
  /* overflow: hidden; */
}
#pageWrap .page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  background: #fef5eb;
}

#pageWrap .page.on {
  opacity: 1;
  z-index: 1;
  pointer-events: all;
}
#slideBtns .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
  height: 88px;
  background: url(../img/slide_prev.png) no-repeat center / 100%;
  z-index: 10;
}
#slideBtns .slide_prev {
  left: 12px;
}
#slideBtns .slide_next {
  right: 12px;
  background-image: url(../img/slide_next.png);
}
#slideBtns .btn.off {
  pointer-events: none;
}
#slideBtns .slide_prev.off {
  background-image: url(../img/slide_prev_off.png);
}
#slideBtns .slide_next.off {
  background-image: url(../img/slide_next_off.png);
}
#btnWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 36px;
}
#btnWrap > button {
  width: 208px;
  height: 56px;
  border-radius: 30px;
  box-shadow: 0px 2px 10px 0px rgba(9, 151, 124, 0.25);
}
#btnWrap .btn_capture {
  background: url(../img/btn_capture.png) no-repeat center / 100%;
}
#btnWrap .btn_download {
  background: url(../img/btn_download.png) no-repeat center / 100%;
}
#btnWrap .btn_zoomin {
  width: 134px;
  background: url(../img/btn_zoomin.png) no-repeat center / 100%;
}
#btnWrap .btn_zoomout {
  width: 134px;
  background: url(../img/btn_zoomout.png) no-repeat center / 100%;
}

#pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 78px;
}
#pagination > span {
  width: 13px;
  height: 13px;
  background: rgba(63, 97, 90, 0.25);
  border-radius: 100%;
  cursor: pointer;
}
#pagination > span.on {
  pointer-events: none;
  background: rgba(63, 97, 90, 0.9);
  box-shadow: 0px 2px 5px rgba(63, 97, 90, 0.35);
}

.has_bubble > .bubble {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 16px;
  height: 32px;
  font-family: 'JejuGothic';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  align-items: center;
  justify-content: center;
  color: #000000;
  border-radius: 60px;
  background: #ffdeed;
  white-space: nowrap;
  display: none;
  text-indent: 0;
}

.has_bubble > .bubble::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 19px;
  height: 7px;
  background: url(../img/bubble_arrow.png) no-repeat center / 100%;
}
.has_bubble:hover > .bubble {
  display: flex;
}

.attach--img .btn_img {
  position: relative;
  width: 44px;
  height: 44px;
  background: url(../img/btn_img.png) no-repeat center / 100%;
}

.attach--img .img_area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.attach--img .img_area .wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.attach--img .img_area .wrap > img {
  max-width: 100%;
  max-height: 100%;
}

.attach--img .img_area .ctr {
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #fff;
  border: 2px solid #9ea6a9;
  cursor: pointer;
  display: none;
}

.attach--img .img_area.is_img:hover .ctr {
  display: block;
}
.attach--img .img_area .ctr.edge.e1 {
  top: -8px;
  left: -8px;
}

.attach--img .img_area .ctr.edge.e2 {
  top: -8px;
  right: -8px;
}
.attach--img .img_area .ctr.edge.e3 {
  top: calc(100% - 8px);
  left: -8px;
}
.attach--img .img_area .ctr.edge.e4 {
  top: calc(100% - 8px);
  right: -8px;
}
.attach--img .img_area .ctr.tb.top,
.attach--img .img_area .ctr.tb.bottom {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.attach--img .img_area .ctr.tb.bottom {
  top: calc(100% - 8px);
}
.attach--img .img_area .ctr.side.left {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}
.attach--img .img_area .ctr.side.right {
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.link--zone .btn_link {
  position: relative;
  width: 44px;
  height: 44px;
  background: url(../img/btn_link.png) no-repeat center / 100%;
  z-index: 2;
}
.draw--zone {
  position: absolute;
  top: 1426px;
  left: 80px;
}
.draw--zone .btn_draw {
  position: relative;
  width: 44px;
  height: 44px;
  background: url(../img/btn_draw.png) no-repeat center / 100%;
  z-index: 2;
}

.draw--zone .draw_tools {
  z-index: 5;
}

.draw--zone button {
  text-indent: -9999px;
}
.draw_tools {
  display: none;
  align-items: flex-start;
  padding: 17px 17px 20px 17px;
  background: linear-gradient(180deg, #ffffff 0.78%, #ffeff6 100.78%);
  box-shadow: inset -2px -2px 2px #f5bfd8, inset 2px 2px 2px #ffffff;
  border-radius: 0px 28px 28px 28px;
  border: 2px solid #e94893;
}
.draw_tools.show {
  display: flex;
}
.draw_tools .btn_close {
  position: absolute;
  top: -34px;
  left: -2px;
  width: 32px;
  height: 34px;
  background: url(../img/btn_close.png) no-repeat center / 100%;
}
.draw_tools .btn {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.draw_tools .btn.on {
  box-shadow: inset 2px 2px 2px rgba(174, 17, 91, 0.55);
}
.draw_tools .btn_pen {
  background: url(../img/btn_pen.png) no-repeat center / 22px 22px;
}
.draw_tools .btn_pen.on {
  background: #e94893 url(../img/btn_pen_on.png) no-repeat center / 22px 22px;
}
.draw_tools .btn_eraser {
  background: url(../img/btn_eraser.png) no-repeat center / 24px 24px;
}
.draw_tools .btn_eraser.on {
  background: #e94893 url(../img/btn_eraser_on.png) no-repeat center / 24px 24px;
}
.draw_tools .btn_reset {
  background: url(../img/btn_reset.png) no-repeat center / 22px 22px;
}
.draw_tools .btn_img {
  background: url(../img/btn_add_img.png) no-repeat center / 22px 22px;
}

.draw_tools .tools {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 14px;
  margin-right: 15px;
}

.draw_tools .colors {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.draw_tools .colors > span {
  position: relative;
  width: 32px;
  height: 32px;
  background: url(../img/palette_black.png) no-repeat center / 28px 28px;
  cursor: pointer;
}
.draw_tools .colors > span.on::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: url(../img/palette_active.png) no-repeat center / 100%;
}
.draw_tools .colors > span[data-color='#FF0000'] {
  background-image: url(../img/palette_red.png);
}
.draw_tools .colors > span[data-color='#FF9501'] {
  background-image: url(../img/palette_orange.png);
}
.draw_tools .colors > span[data-color='#FFE203'] {
  background-image: url(../img/palette_yellow.png);
}
.draw_tools .colors > span[data-color='#00B777'] {
  background-image: url(../img/palette_green.png);
}
.draw_tools .colors > span[data-color='#00ADFF'] {
  background-image: url(../img/palette_sky.png);
}
.draw_tools .colors > span[data-color='#2C25FF'] {
  background-image: url(../img/palette_blue.png);
}
.draw_tools .range_slider {
  position: relative;
  margin-top: -6px;
}
.draw_tools .range_slider,
.draw_tools .range_slider progress {
  width: 254px;
}

.draw_tools .range_slider progress {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  overflow: hidden;
  pointer-events: none;
}

.draw_tools .range_slider progress::-webkit-progress-bar {
  background: #ebe4e7;
  box-shadow: inset 2px 2px 2px rgba(210, 189, 201, 0.5);
  border-radius: 4px;
}
.draw_tools .range_slider progress::-webkit-progress-value {
  -webkit-appearance: none;
  background: #9ea6a9;
  border-radius: 4px;
}
.draw_tools .range_slider .range_bar {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 10px);
  -webkit-appearance: none;
  height: 6px;
  background-color: transparent;
}
.draw_tools .range_slider .range_bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 21px;
  background: url(../img/range_thumb.png) no-repeat center / 100%;
  border-radius: 100%;
  box-shadow: 0px 2px 3px rgba(233, 72, 147, 0.35);
  cursor: pointer;
}

.draw_tools .btns {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 4px;
  margin-right: 15px;
}

.draw_tools .btns::before,
.draw_tools .btns::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #f0dbe5;
  box-shadow: 1px 0px 0px #ffffff;
}
.draw_tools .btns::before {
  left: 0;
}
.draw_tools .btns::after {
  right: 0;
}
.draw--zone.img_draw canvas {
  cursor: crosshair;
}
.draw--zone.img_draw .btn_img,
.draw--zone.img_drag .btn_img {
  background: #e94893 url(../img/btn_add_img_on.png) no-repeat center / 22px 22px;
}
#wrap.screenshot .draw--zone .btn_draw {
  display: block !important;
}
#wrap.screenshot .draw--zone .draw_tools {
  display: none !important;
}


#wrap.screenshot .sound--zone .btn_sound{
  display: block !important;
}
#wrap.screenshot .sound--zone .sound_pop {
  display: none !important;
}

.sound--zone {
  position: absolute;
}

.sound--zone .btn_sound {
  position: relative;
  width: 44px;
  height: 44px;
  background: url(../img/btn_sound.png) no-repeat center / 100%;
}
.sound--zone .sound_pop {
  position: absolute;
  top: 0;
  left: 0;
  width: 465px;
  background: linear-gradient(180deg, #ffffff 0.78%, #ffeff6 100.78%);
  box-shadow: inset -2px -2px 2px #f5bfd8, inset 2px 2px 2px #ffffff;
  border-radius: 0px 28px 28px 28px;
  border: 2px solid #e94893;
  padding: 16px;
  display: none;
}
.sound--zone[data-play='play'] .sound_pop {
  display: block;
}
.sound--zone .sound_pop .btn_close {
  position: absolute;
  top: -34px;
  left: -2px;
  width: 32px;
  height: 34px;
  background: url(../img/btn_close.png) no-repeat center / 100%;
  text-indent: -9999px;
}
.sound--zone .sound_pop video {
  width: 100%;
  object-fit: cover;
}

.input_wrap input[type='text'] {
  border: none;
  /* border: 1px solid; */
  background: none;
}

.input_wrap textarea {
  border: none;
  border-radius: 4px;
  padding: 5px 8px;
  background: #f0f4f6 url(../img/icon_write.png) no-repeat 8px 8px / 15px 15px;
  line-height: 1.4;
  overflow: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.input_wrap textarea.active {
  background: #f0f4f6;
}

#wrap.screenshot .input_wrap.form .input {
  top: 262px;
}
.input_wrap.form .form2 {
  left: 749px;
}

.input_wrap.form .form3 {
  left: 866px;
  width: 94px;
}
.input_wrap.form .form4 {
  left: 856px;
  width: 116px;
  text-align: left;
}
.text_wrap {
  position: relative;
}
.text_wrap textarea {
  width: 100%;
  height: 100%;
}
.text_wrap .clone_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  padding: 5px 8px;
  background: #f0f4f6;
  line-height: 1.4;
  overflow: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: left;
  display: none;
}
#wrap.screenshot .text_wrap textarea {
  display: none;
}

#wrap.screenshot .text_wrap .clone_text {
  display: block;
}

/*이름,반번호 입력창*/
.input_wrap.iw1 {
  position: absolute;
  border: none;
  left: 690px;
  top: 214px;
  display: flex;
}
.input_wrap.iw1.type2{
  left: 705px;
}
.input_wrap.iw1 .name {
  background: none;
}

.input_wrap.iw1 .text_wrap {
  width: 40px;
  height: 33px;
}

.input_wrap.iw1 .text_wrap:nth-child(2) {
  margin-left: 30px;
}

.input_wrap.iw1 .text_wrap .clone_text {
  background: none;
  text-align: right;
}

.input_wrap.iw1 .text_wrap:nth-child(3) {
  margin-left: 56px;
  width: 100px;
}

.input_wrap.iw1 .text_wrap textarea {
  background: none;
  margin-left: 0;
  width: 100%;
  height: 100%;
  text-align: right;
}


