html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Zpix";
  src: url("../fonts/Zpix.ttf");
}
@-webkit-keyframes open {
  0% {
    width: 51%;
  }
  20% {
    width: 51%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}
@keyframes open {
  0% {
    width: 51%;
  }
  20% {
    width: 51%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}
@-webkit-keyframes cut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes run-text {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes run-text {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  outline: none;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Zpix";
  font-weight: normal;
  line-height: normal;
  letter-spacing: 1px;
  line-height: 1.4;
  color: #fff;
  background-color: #000;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  z-index: 1000;
}
header a {
  width: 100px;
  position: relative;
  display: block;
}
header a .logo {
  width: 100%;
}

.container {
  width: 100%;
}
.container section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  -webkit-transition: opacity 0.5s, visibility 0.5s, max-height 0s ease 0.5s;
  -o-transition: opacity 0.5s, visibility 0.5s, max-height 0s ease 0.5s;
  transition: opacity 0.5s, visibility 0.5s, max-height 0s ease 0.5s;
}
.container section.active {
  -webkit-transition: opacity 0.5s, visibility 0.5s, max-height 0s ease 0s;
  -o-transition: opacity 0.5s, visibility 0.5s, max-height 0s ease 0s;
  transition: opacity 0.5s, visibility 0.5s, max-height 0s ease 0s;
  max-height: 9999px;
  visibility: visible;
  opacity: 1;
}
.container section .section-wrapper {
  width: 100%;
  max-width: 1200px;
  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;
  padding: 100px 20px;
}
.container section .section-wrapper .section-title {
  width: 100%;
  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;
  font-size: 30px;
  line-height: 1.5;
}
.container #step1 .section-wrapper {
  max-width: 500px;
}
.container #step1 .section-wrapper .title-img {
  width: 100%;
  margin-bottom: 30px;
}
.container #step1 .section-wrapper .title-img img {
  width: 100%;
}
.container #step1 .section-wrapper .title-img .run-text {
  position: absolute;
  top: 23%;
  left: 46.5%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #000;
  width: 24%;
  overflow: hidden;
  font-size: 0;
  color: #ff0;
}
.container #step1 .section-wrapper .title-img .run-text img {
  width: 200%;
  white-space: nowrap;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-animation: run-text 3s linear infinite;
          animation: run-text 3s linear infinite;
}
.container #step1 .section-wrapper .title-desc {
  width: 100%;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
}
.container #step1 .section-wrapper .title-desc p {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.container #step1 .section-wrapper .title-desc p:nth-child(2) {
  margin-bottom: 20px;
}
.container #step1 .section-wrapper .title-desc p span {
  white-space: nowrap;
}
@media screen and (max-width: 700px) {
  .container #step1 .section-wrapper .title-desc {
    text-align: left;
  }
}
.container #step1 .section-wrapper .next-step-btn {
  background-color: #fff;
  color: #000;
  padding: 20px 40px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  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;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#ff0, #ff0) left top 6px, -o-linear-gradient(#ff0, #ff0) right top 6px, -o-linear-gradient(#ff0, #ff0) left 6px top, -o-linear-gradient(#ff0, #ff0) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#ff0, #ff0) left top 6px, linear-gradient(#ff0, #ff0) right top 6px, linear-gradient(#ff0, #ff0) left 6px top, linear-gradient(#ff0, #ff0) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 0, 0);
  -webkit-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
  margin-top: 4.7px;
}
.container #step1 .section-wrapper .next-step-btn:hover {
  background-color: rgba(255, 255, 0, 0.2);
}
.container #step1 .section-wrapper .next-step-btn img {
  width: 180px;
}
.container #step1 .section-wrapper #upload-img-input {
  display: none;
}
.container #step2 .section-wrapper {
  max-width: 900px;
}
.container #step2 .section-wrapper .textify-container {
  margin-top: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}
.container #step2 .section-wrapper .textify-container .canvas-container {
  width: 60%;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 0;
  cursor: move;
}
.container #step2 .section-wrapper .textify-container .canvas-container .border {
  width: 100%;
  pointer-events: none;
}
.container #step2 .section-wrapper .textify-container .canvas-container #textify-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 93%;
}
.container #step2 .section-wrapper .textify-container .adjustment-container {
  margin-left: 40px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row.title {
  padding: 20px 0;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row.title::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, transparent), to(transparent));
  background: -o-linear-gradient(left, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background-size: 6px 3px;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row.title::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, transparent), to(transparent));
  background: -o-linear-gradient(left, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  background-size: 6px 3px;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row.title .col {
  font-size: 26px;
  color: #ff0;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row.title .col p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row.title .col .small {
  font-size: 14px;
  line-height: 1;
  margin-top: 10px;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row #text-input {
  background-color: #000;
  border: 0;
  height: 50px;
  padding: 5px 15px;
  width: calc(100% - 60px);
  color: #fff;
  font-family: "Zpix";
  font-size: 23px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#fff, #fff) left top 6px, -o-linear-gradient(#fff, #fff) right top 6px, -o-linear-gradient(#fff, #fff) left 6px top, -o-linear-gradient(#fff, #fff) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#fff, #fff) left top 6px, linear-gradient(#fff, #fff) right top 6px, linear-gradient(#fff, #fff) left 6px top, linear-gradient(#fff, #fff) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .clear-btn {
  margin-left: 10px;
  height: 50px;
  width: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  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;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#ff0, #ff0) left top 6px, -o-linear-gradient(#ff0, #ff0) right top 6px, -o-linear-gradient(#ff0, #ff0) left 6px top, -o-linear-gradient(#ff0, #ff0) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#ff0, #ff0) left top 6px, linear-gradient(#ff0, #ff0) right top 6px, linear-gradient(#ff0, #ff0) left 6px top, linear-gradient(#ff0, #ff0) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: #ff0;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .clear-btn img {
  width: 50%;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .text-size-btn {
  height: 45px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #000;
  margin-right: 10px;
  font-size: 20px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#fff, #fff) left top 6px, -o-linear-gradient(#fff, #fff) right top 6px, -o-linear-gradient(#fff, #fff) left 6px top, -o-linear-gradient(#fff, #fff) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#fff, #fff) left top 6px, linear-gradient(#fff, #fff) right top 6px, linear-gradient(#fff, #fff) left 6px top, linear-gradient(#fff, #fff) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: #fff;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .text-size-btn.active {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#ff0, #ff0) left top 6px, -o-linear-gradient(#ff0, #ff0) right top 6px, -o-linear-gradient(#ff0, #ff0) left 6px top, -o-linear-gradient(#ff0, #ff0) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#ff0, #ff0) left top 6px, linear-gradient(#ff0, #ff0) right top 6px, linear-gradient(#ff0, #ff0) left 6px top, linear-gradient(#ff0, #ff0) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: #ff0;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .text-size-btn:last-child {
  margin-right: 0;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .col {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .col:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .col:last-child {
  width: 100%;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .col p {
  margin-right: 10px;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .col p span {
  white-space: nowrap;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row .col #get-word-btn {
  width: 100%;
  color: #000;
  height: 40px;
  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;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#ff0, #ff0) left top 6px, -o-linear-gradient(#ff0, #ff0) right top 6px, -o-linear-gradient(#ff0, #ff0) left 6px top, -o-linear-gradient(#ff0, #ff0) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#ff0, #ff0) left top 6px, linear-gradient(#ff0, #ff0) right top 6px, linear-gradient(#ff0, #ff0) left 6px top, linear-gradient(#ff0, #ff0) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: #ff0;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row#word-list {
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row#word-list .word-list-btn {
  color: #000;
  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;
  cursor: pointer;
  margin: 10px 10px;
  margin-left: 0;
  margin-bottom: 0;
  padding: 6px 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#fff, #fff) left top 6px, -o-linear-gradient(#fff, #fff) right top 6px, -o-linear-gradient(#fff, #fff) left 6px top, -o-linear-gradient(#fff, #fff) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#fff, #fff) left top 6px, linear-gradient(#fff, #fff) right top 6px, linear-gradient(#fff, #fff) left 6px top, linear-gradient(#fff, #fff) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: #fff;
}
.container #step2 .section-wrapper .textify-container .adjustment-container .row#word-list .word-list-btn.disabled {
  color: #999;
  cursor: not-allowed;
}
@media screen and (max-width: 700px) {
  .container #step2 .section-wrapper .textify-container {
    -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;
  }
  .container #step2 .section-wrapper .textify-container .canvas-container {
    width: 100%;
  }
  .container #step2 .section-wrapper .textify-container .adjustment-container {
    margin-top: 20px;
    margin-left: 0px;
    height: auto;
  }
}
.container #step2 .section-wrapper .btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.container #step2 .section-wrapper .btn-list .re-upload-btn, .container #step2 .section-wrapper .btn-list .next-step-btn {
  color: #ff0;
  padding: 15px 30px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#ff0, #ff0) left top 6px, -o-linear-gradient(#ff0, #ff0) right top 6px, -o-linear-gradient(#ff0, #ff0) left 6px top, -o-linear-gradient(#ff0, #ff0) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#ff0, #ff0) left top 6px, linear-gradient(#ff0, #ff0) right top 6px, linear-gradient(#ff0, #ff0) left 6px top, linear-gradient(#ff0, #ff0) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 0, 0);
  -webkit-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.container #step2 .section-wrapper .btn-list .re-upload-btn:hover, .container #step2 .section-wrapper .btn-list .next-step-btn:hover {
  background-color: rgba(255, 255, 0, 0.2);
}
.container #step2 .section-wrapper .btn-list .re-upload-btn.disabled, .container #step2 .section-wrapper .btn-list .next-step-btn.disabled {
  color: #550;
  cursor: not-allowed;
}
.container #step2 .section-wrapper .btn-list .re-upload-btn {
  margin-right: 20px;
}
.container #step3 .section-wrapper {
  max-width: 900px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 30px;
  margin-bottom: 30px;
}
.container #step3 .section-wrapper .complete-img-border {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  z-index: 10;
}
.container #step3 .section-wrapper .complete-img-border > img {
  width: 100%;
}
.container #step3 .section-wrapper .complete-img-container-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 4.7%;
}
.container #step3 .section-wrapper .complete-img-container {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 0;
  overflow: hidden;
}
.container #step3 .section-wrapper .complete-img-container .complete-img {
  width: 100%;
}
.container #step3 .section-wrapper .complete-img-container #mask1, .container #step3 .section-wrapper .complete-img-container #mask2 {
  width: 51%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  -webkit-transition: width 0.7s;
  -o-transition: width 0.7s;
  transition: width 0.7s;
}
.container #step3 .section-wrapper .complete-img-container #mask1.open, .container #step3 .section-wrapper .complete-img-container #mask2.open {
  width: 0%;
}
.container #step3 .section-wrapper .complete-img-container #mask1 img, .container #step3 .section-wrapper .complete-img-container #mask2 img {
  position: absolute;
  height: 100%;
  top: 0;
  background-color: #000;
}
.container #step3 .section-wrapper .complete-img-container #mask1, .container #step3 .section-wrapper .complete-img-container #mask1 > img {
  left: 0;
}
.container #step3 .section-wrapper .complete-img-container #mask2, .container #step3 .section-wrapper .complete-img-container #mask2 > img {
  right: 0;
}
.container #step3 .section-wrapper .complete-img-container #cut-line {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  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;
}
.container #step3 .section-wrapper .complete-img-container #cut-line img {
  width: 2.7419%;
  opacity: 0;
  background-color: #000;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img {
  -webkit-animation: cut 0.5s;
          animation: cut 0.5s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(1) {
  -webkit-animation-delay: 0.01s;
          animation-delay: 0.01s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(2) {
  -webkit-animation-delay: 0.02s;
          animation-delay: 0.02s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(3) {
  -webkit-animation-delay: 0.03s;
          animation-delay: 0.03s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(4) {
  -webkit-animation-delay: 0.04s;
          animation-delay: 0.04s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(5) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(6) {
  -webkit-animation-delay: 0.06s;
          animation-delay: 0.06s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(7) {
  -webkit-animation-delay: 0.07s;
          animation-delay: 0.07s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(8) {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(9) {
  -webkit-animation-delay: 0.09s;
          animation-delay: 0.09s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(10) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(11) {
  -webkit-animation-delay: 0.11s;
          animation-delay: 0.11s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(12) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(13) {
  -webkit-animation-delay: 0.13s;
          animation-delay: 0.13s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(14) {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(15) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(16) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(17) {
  -webkit-animation-delay: 0.17s;
          animation-delay: 0.17s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(18) {
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(19) {
  -webkit-animation-delay: 0.19s;
          animation-delay: 0.19s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(20) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(21) {
  -webkit-animation-delay: 0.21s;
          animation-delay: 0.21s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(22) {
  -webkit-animation-delay: 0.22s;
          animation-delay: 0.22s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(23) {
  -webkit-animation-delay: 0.23s;
          animation-delay: 0.23s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(24) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(25) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(26) {
  -webkit-animation-delay: 0.26s;
          animation-delay: 0.26s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(27) {
  -webkit-animation-delay: 0.27s;
          animation-delay: 0.27s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(28) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(29) {
  -webkit-animation-delay: 0.29s;
          animation-delay: 0.29s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(30) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(31) {
  -webkit-animation-delay: 0.31s;
          animation-delay: 0.31s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(32) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(33) {
  -webkit-animation-delay: 0.33s;
          animation-delay: 0.33s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(34) {
  -webkit-animation-delay: 0.34s;
          animation-delay: 0.34s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(35) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(36) {
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(37) {
  -webkit-animation-delay: 0.37s;
          animation-delay: 0.37s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(38) {
  -webkit-animation-delay: 0.38s;
          animation-delay: 0.38s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(39) {
  -webkit-animation-delay: 0.39s;
          animation-delay: 0.39s;
}
.container #step3 .section-wrapper .complete-img-container #cut-line.active img:nth-child(40) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.container #step3 .section-wrapper .complete-img-container #blink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.container #step3 .section-wrapper .complete-img-container #blink.active {
  opacity: 0.9;
}
.container #step3 .section-wrapper .complete-content-container {
  margin-left: 20px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.container #step3 .section-wrapper .complete-content-container .complete-info {
  margin-top: 30px;
  width: 100%;
  font-size: 26px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}
.container #step3 .section-wrapper .complete-content-container .complete-info #complete-word {
  color: #ff0;
}
.container #step3 .section-wrapper .complete-content-container .complete-ad {
  width: 100%;
  line-height: 1.5;
  text-align: center;
}
.container #step3 .section-wrapper .complete-content-container .complete-ad p {
  margin-bottom: 15px;
}
.container #step3 .section-wrapper .complete-content-container .complete-btn-list {
  width: 100%;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  padding-bottom: 5px;
}
.container #step3 .section-wrapper .complete-content-container .complete-btn-list .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.container #step3 .section-wrapper .complete-content-container .complete-btn-list .complete-btn {
  color: #ff0;
  height: 70px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  cursor: pointer;
  margin: 5px;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#ff0, #ff0) left top 6px, -o-linear-gradient(#ff0, #ff0) right top 6px, -o-linear-gradient(#ff0, #ff0) left 6px top, -o-linear-gradient(#ff0, #ff0) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#ff0, #ff0) left top 6px, linear-gradient(#ff0, #ff0) right top 6px, linear-gradient(#ff0, #ff0) left 6px top, linear-gradient(#ff0, #ff0) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  -webkit-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.container #step3 .section-wrapper .complete-content-container .complete-btn-list .complete-btn:hover {
  background-color: rgba(255, 255, 0, 0.2);
}
.container #step3 .section-wrapper .complete-content-container .complete-btn-list .complete-btn.disabled {
  color: #550;
}
.container #step3 .section-wrapper .complete-content-container .complete-btn-list .complete-btn .small {
  font-size: 12px;
}
@media screen and (max-width: 700px) {
  .container #step3 .section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container #step3 .section-wrapper .complete-img-border {
    width: 100%;
  }
  .container #step3 .section-wrapper .complete-content-container {
    margin-top: 20px;
    margin-left: 0px;
    height: auto;
  }
  .container #step3 .section-wrapper .complete-content-container .complete-info {
    margin-top: 0;
  }
  .container #step3 .section-wrapper .complete-content-container .complete-btn-list {
    margin-top: 40px;
  }
}

#share-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}
#share-popup.active {
  display: block;
}
#share-popup .popup-wrapper {
  max-width: 500px;
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#share-popup .popup-wrapper .border {
  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;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#fff, #fff) left top 6px, -o-linear-gradient(#fff, #fff) right top 6px, -o-linear-gradient(#fff, #fff) left 6px top, -o-linear-gradient(#fff, #fff) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#fff, #fff) left top 6px, linear-gradient(#fff, #fff) right top 6px, linear-gradient(#fff, #fff) left 6px top, linear-gradient(#fff, #fff) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: #000;
  padding: 60px 10px 30px 10px;
}
#share-popup .popup-wrapper .border .close-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#share-popup .popup-wrapper .border .share-img {
  width: 100%;
  margin-bottom: 20px;
}
#share-popup .popup-wrapper .border .share-img img {
  width: 100%;
}
#share-popup .popup-wrapper .border .share-btn {
  color: #ff0;
  height: 70px;
  padding: 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  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;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #ff0), to(#ff0)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#ff0), to(#ff0)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#ff0, #ff0) left top 6px, -o-linear-gradient(#ff0, #ff0) right top 6px, -o-linear-gradient(#ff0, #ff0) left 6px top, -o-linear-gradient(#ff0, #ff0) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #ff0 50%, #ff0 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#ff0, #ff0) left top 6px, linear-gradient(#ff0, #ff0) right top 6px, linear-gradient(#ff0, #ff0) left 6px top, linear-gradient(#ff0, #ff0) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  -webkit-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
#share-popup .popup-wrapper .border .share-btn:hover {
  background-color: rgba(255, 255, 0, 0.2);
}

#download-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}
#download-popup.active {
  display: block;
}
#download-popup .popup-wrapper {
  max-width: 500px;
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#download-popup .popup-wrapper .border {
  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;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left top, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right top 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right top, -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) left bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) left bottom, -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(50%, #000), color-stop(50%, #fff), to(#fff)) right bottom 3px, -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) right bottom, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right top 6px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px top, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left 6px bottom;
  background: -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, -o-linear-gradient(#000, #000) left top, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, -o-linear-gradient(#000, #000) right top, -o-linear-gradient(left, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, -o-linear-gradient(#000, #000) left bottom, -o-linear-gradient(right, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, -o-linear-gradient(#000, #000) right bottom, -o-linear-gradient(#fff, #fff) left top 6px, -o-linear-gradient(#fff, #fff) right top 6px, -o-linear-gradient(#fff, #fff) left 6px top, -o-linear-gradient(#fff, #fff) left 6px bottom;
  background: linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left top 3px, linear-gradient(#000, #000) left top, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right top 3px, linear-gradient(#000, #000) right top, linear-gradient(90deg, #000 0, #000 50%, #fff 50%, #fff 100%) left bottom 3px, linear-gradient(#000, #000) left bottom, linear-gradient(-90deg, #000 0, #000 50%, #fff 50%, #fff 100%) right bottom 3px, linear-gradient(#000, #000) right bottom, linear-gradient(#fff, #fff) left top 6px, linear-gradient(#fff, #fff) right top 6px, linear-gradient(#fff, #fff) left 6px top, linear-gradient(#fff, #fff) left 6px bottom;
  background-size: 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 6px 3px, 6px 4.5px, 3px calc(100% - 12px), 3px calc(100% - 12px), calc(100% - 12px) 3px, calc(100% - 12px) 3px;
  background-repeat: no-repeat;
  background-color: #000;
  padding: 60px 30px 30px 30px;
}
#download-popup .popup-wrapper .border .close-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#download-popup .popup-wrapper .border .download-img {
  width: 100%;
  margin-bottom: 20px;
}
#download-popup .popup-wrapper .border .download-img img {
  width: 100%;
}
#download-popup .popup-wrapper .border p {
  color: #fff;
  height: 70px;
  padding: 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  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;
  font-size: 16px;
}