/* line 1, ../scss/style.scss */
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;
}

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

/* line 26, ../scss/style.scss */
body {
  line-height: 1;
  background: linear-gradient(135deg, #f1eaec 0%, #f5dfe7 14%, #e9d9f5 51%, #e5f0ff 100%);
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* line 35, ../scss/style.scss */
ol, ul {
  list-style: none;
}

/* line 38, ../scss/style.scss */
blockquote, q {
  quotes: none;
}

/* line 41, ../scss/style.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 46, ../scss/style.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 52, ../scss/style.scss */
header .container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
}
/* line 60, ../scss/style.scss */
header .container .logo img {
  width: 138px;
}
/* line 64, ../scss/style.scss */
header .container .menu {
  display: flex;
}
/* line 66, ../scss/style.scss */
header .container .menu li {
  margin-right: 40px;
}
/* line 68, ../scss/style.scss */
header .container .menu li a {
  color: #575e90;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}
/* line 74, ../scss/style.scss */
header .container .menu li a:hover {
  color: #3a3f61;
}
/* line 78, ../scss/style.scss */
header .container .menu li:last-child {
  margin-right: 0;
}
/* line 83, ../scss/style.scss */
header .container .btn.add {
  color: #575e90;
  border: none;
  padding: 7px 20px 7px 10px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: all .5s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
/* line 97, ../scss/style.scss */
header .container .btn.add img {
  margin-left: 10px;
  background: #575e90;
  padding: 5px;
  width: 25px;
  border-radius: 50%;
}
/* line 104, ../scss/style.scss */
header .container .btn.add:hover {
  color: #3a3f61;
  transition: all .5s ease;
}
/* line 107, ../scss/style.scss */
header .container .btn.add:hover img {
  background: #3a3f61;
  transition: all .5s ease;
}

/* line 116, ../scss/style.scss */
.container {
  width: 1200px;
  margin: 0 auto;
}

/* line 121, ../scss/style.scss */
.content .container {
  display: flex;
  align-items: center;
  height: calc(100vh - 189px);
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
/* line 128, ../scss/style.scss */
.content .container p {
  line-height: 1.4;
  color: #575e90;
  font-size: 14px;
  margin-bottom: 50px;
}
/* line 134, ../scss/style.scss */
.content .container .converter {
  background: white;
  width: 650px;
  height: 300px;
  border-radius: 40px;
  box-sizing: border-box;
  transition: all .5s ease;
  padding: 15px;
  box-shadow: 0px 30px 31px -8px #3a3f6138;
}
/* line 143, ../scss/style.scss */
.content .container .converter .converter-inner {
  width: 100%;
  height: 100%;
  border: 2px dashed #d0d1df;
  border-radius: 35px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* line 153, ../scss/style.scss */
.content .container .converter .converter-inner img {
  width: 101.5px;
}
/* line 156, ../scss/style.scss */
.content .container .converter .converter-inner h5 {
  color: #575e90;
  margin-bottom: 10px;
}
/* line 160, ../scss/style.scss */
.content .container .converter .converter-inner p {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 0;
}
/* line 166, ../scss/style.scss */
.content .container .converter:hover {
  box-shadow: none;
  transition: all .5s ease;
}

/* line 173, ../scss/style.scss */
h1 {
  margin-top: 0px;
  text-align: center;
  font-size: 55px;
  color: #3a3f61;
  font-weight: bold;
  margin-bottom: 30px;
}
/* line 180, ../scss/style.scss */
h1 span {
  color: #fc9519;
  text-decoration: underline;
}

/* line 185, ../scss/style.scss */
.progress {
  width: 400px;
  height: 13px;
  margin: 0 auto 20px auto;
  background: #f7f7f7;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 3px 5px;
}
/* line 193, ../scss/style.scss */
.progress .bar {
  background: linear-gradient(90deg, #ff8e23 0%, #f7c21c 100%);
  width: 0%;
  height: 100%;
  border-radius: 10px;
  animation: upload 1s forwards;
}

/* line 202, ../scss/style.scss */
.converter a {
  color: #ffae00;
}

/* line 207, ../scss/style.scss */
.theme-dark .progress {
  background: #232830;
}

@keyframes upload {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* line 220, ../scss/style.scss */
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  margin: 22px auto 10px auto;
  height: 80px;
}

/* line 227, ../scss/style.scss */
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

/* line 231, ../scss/style.scss */
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffae00;
  margin: -4px 0 0 -4px;
}

/* line 241, ../scss/style.scss */
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

/* line 244, ../scss/style.scss */
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

/* line 248, ../scss/style.scss */
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

/* line 251, ../scss/style.scss */
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

/* line 255, ../scss/style.scss */
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

/* line 258, ../scss/style.scss */
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

/* line 262, ../scss/style.scss */
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

/* line 265, ../scss/style.scss */
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

/* line 269, ../scss/style.scss */
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

/* line 272, ../scss/style.scss */
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

/* line 276, ../scss/style.scss */
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

/* line 279, ../scss/style.scss */
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

/* line 283, ../scss/style.scss */
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

/* line 286, ../scss/style.scss */
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

/* line 290, ../scss/style.scss */
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

/* line 293, ../scss/style.scss */
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* line 305, ../scss/style.scss */
footer {
  height: 70px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: #c9a3df26;
  box-sizing: border-box;
}
/* line 311, ../scss/style.scss */
footer .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
/* line 316, ../scss/style.scss */
footer .container img {
  width: 80px;
  opacity: 0.7;
}
/* line 320, ../scss/style.scss */
footer .container .footer-logo {
  display: inline-flex;
}
/* line 323, ../scss/style.scss */
footer .container ul {
  display: flex;
}
/* line 325, ../scss/style.scss */
footer .container ul li {
  margin-right: 40px;
}
/* line 327, ../scss/style.scss */
footer .container ul li a {
  color: #787fb3;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}
/* line 332, ../scss/style.scss */
footer .container ul li a:hover {
  color: #3a3f61;
}

/* line 341, ../scss/style.scss */
header, foooter, .content .heading, .content .converter {
  position: relative;
  z-index: 2;
}

/* line 346, ../scss/style.scss */
#canvas {
  width: 100%;
  height: 100%;
  position: fixed;
}

@media (max-height: 800px) {
  /* line 353, ../scss/style.scss */
  h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  /* line 357, ../scss/style.scss */
  .content .container .converter {
    height: 250px;
  }
}
/* line 362, ../scss/style.scss */
.inner {
  height: auto;
  overflow-y: auto;
}
/* line 365, ../scss/style.scss */
.inner .content .container {
  height: auto;
  display: block;
  text-align: left;
  background: white;
  box-sizing: border-box;
  padding: 30px;
  border-radius: 15px;
  margin: 20px auto 50px auto;
  position: relative;
  z-index: 13;
}
/* line 376, ../scss/style.scss */
.inner .content .container ul {
  list-style-type: disc;
  line-height: 1.5;
  margin: 20px 0;
  color: #575e90;
  font-size: 14px;
  padding-left: 20px;
}
/* line 384, ../scss/style.scss */
.inner .content .container h1 {
  text-align: left;
  font-size: 32px;
}
/* line 388, ../scss/style.scss */
.inner .content .container h4 {
  color: #575e90;
  font-weight: 600;
}
/* line 392, ../scss/style.scss */
.inner .content .container p {
  line-height: 1.5;
  margin: 20px 0;
}
/* line 397, ../scss/style.scss */
.inner #canvas {
  pointer-events: none;
  z-index: 0;
}

/* line 405, ../scss/style.scss */
#file {
  display: none;
}

/* line 409, ../scss/style.scss */
.size {
  font-size: 12px;
}

/* line 413, ../scss/style.scss */
.upload-area {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* line 421, ../scss/style.scss */
.upload-area.active img {
  animation: shake 1s ease-in-out;
}

/* line 431, ../scss/style.scss */
.step-4 img, .step-5 img {
  width: 80px !important;
  margin-bottom: 20px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(0, -1px, 0);
  }
  20%, 80% {
    transform: translate3d(0, 2px, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(0, -4px, 0);
  }
  40%, 60% {
    transform: translate3d(0, 4px, 0);
  }
}
/* line 455, ../scss/style.scss */
.converter {
  z-index: 4 !important;
  position: relative;
}

/* line 460, ../scss/style.scss */
.upload-overlay {
  position: fixed;
  background: #200c4852;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
  transition: all .5s ease;
  opacity: 0;
}
/* line 469, ../scss/style.scss */
.upload-overlay.active {
  opacity: 1;
  transition: all .5s ease;
}

/* line 476, ../scss/style.scss */
.upload-area > div {
  display: none;
}

/* line 482, ../scss/style.scss */
.active-1 .step-1 {
  display: block;
}

/* line 487, ../scss/style.scss */
.active-2 .step-2 {
  display: block;
}

/* line 492, ../scss/style.scss */
.active-3 .step-3 {
  display: block;
}

/* line 497, ../scss/style.scss */
.active-4 .step-4 {
  display: block;
}

/* line 502, ../scss/style.scss */
.active-5 .step-5 {
  display: block;
}
