@charset "UTF-8";
html, body {
  overscroll-behavior: none;
}

body {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  max-width: 1920px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.25;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif, serif;
  color: #16161B;
  background: url("./images/bg.jpg") no-repeat center top/1920px auto;
}

a {
  color: inherit;
}

a:hover {
  color: var(--t1);
}

h1, h2 {
  font-family: "Merriweather";
  font-weight: normal;
}

.wrap {
  max-width: 1230px;
  margin: 0 auto;
}

.main-wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
}

.main-body {
  display: flex;
  flex-direction: column;
  width: 500px;
  flex-shrink: 0;
}
.main-body .logo {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
}
.main-body .logo img {
  width: 75px;
  height: 75px;
  margin-right: 12px;
}
.main-body h1 {
  margin: 90px 0 0;
  font-size: 64px;
  font-weight: 700;
}
.main-body h1 + p {
  margin: 10px 0 0;
  font-size: 30px;
  font-weight: 100;
}

.preview {
  margin: 30px 0 70px;
  border-radius: 28px;
  border: solid 7px #3E424B;
}

.downloads {
  margin-top: 48px;
}
.downloads a {
  display: inline-block;
  width: 220px;
  height: 0;
  padding-top: 68px;
  overflow: hidden;
}
.downloads a:hover {
  opacity: 0.8;
}

.btn-google {
  background: url("./images/btn-google.png") no-repeat;
  background-size: contain;
}

.file-form {
  margin-top: 40px;
}

#ipt-code {
  width: 316px;
  height: 47px;
  font-size: 16px;
  border-radius: 9px;
  padding: 16px;
  background-color: rgba(50, 42, 99, 0.1);
  border: none;
  outline: none;
  box-sizing: border-box;
  text-transform: uppercase;
}
#ipt-code.error {
  color: #F1605D;
}

#file-msg {
  margin-top: 12px;
  color: #F1605D;
}

.page-foot {
  margin-top: auto;
  color: rgba(41, 44, 51, 0.5);
  padding-top: 20px;
}
.page-foot a {
  color: #F60037;
  margin: 0 3px;
  text-decoration: none;
}
.page-foot a:hover {
  color: #ff2958;
}

.modal-file .modal__container {
  width: 360px;
}
.modal-file .modal__header {
  justify-content: center;
}
.modal-file .modal__footer {
  display: flex;
  gap: 12px;
}
.modal-file .modal__btn {
  flex: 1;
  height: 3em;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 1.5em;
}
.modal-file .file-info {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 14px;
  border-radius: 14px;
  background-color: rgba(27, 18, 84, 0.05);
}
.modal-file .file-info .icon {
  border-radius: 7px;
  padding: 11px;
  background-color: rgba(27, 18, 84, 0.05);
}
.modal-file .file-info .icon img {
  width: 38px;
  height: 38px;
  vertical-align: middle;
}
.modal-file .file-info .info {
  min-width: 0;
}
.modal-file .file-info .name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.modal-file .file-info .date {
  font-size: 14px;
  margin-top: 6px;
  color: rgba(42, 45, 52, 0.5);
}

/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__container {
  background-color: #fff;
  padding: 30px;
  max-height: 95vh;
  border-radius: 23px;
  overflow-y: auto;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25em;
  line-height: 1.25;
  text-align: center;
  box-sizing: border-box;
}
.modal__close {
  background: transparent;
  border: 0;
}
.modal__header .modal__close:before {
  content: "✕";
}
.modal__content {
  margin-top: 2em;
  margin-bottom: 2em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__btn {
  font-size: 0.875em;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25em;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  outline: none;
}
.modal a.modal__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
}
.modal__btn:focus, .modal__btn:hover {
  opacity: 0.8;
}
.modal__btn-primary {
  background-color: #5D5AFD;
  color: #fff;
}
.modal__btn-primary:focus, .modal__btn-primary:hover {
  color: #fff;
}
.modal__btn-primary:disabled {
  background-color: #adadad;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: unset;
  }
}
@keyframes mmslideOut {
  from {
    transform: unset;
  }
  to {
    transform: translateY(-10%);
  }
}
.modal-slide {
  display: none;
}

.modal-slide.is-open {
  display: block;
}

.modal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal-slide .modal__container,
.modal-slide .modal__overlay {
  will-change: transform;
}

body {
  -webkit-tap-highlight-color: transparent;
}

@media screen and (min-width: 320PX) and (max-width: 750px) {
  html {
    font-size: 32PX;
  }
  body {
    font-size: 12PX;
  }
}
@media screen and (min-width: 360PX) and (max-width: 750px) {
  html {
    font-size: 36PX;
  }
  body {
    font-size: 13.5PX;
  }
}
@media screen and (min-width: 375PX) and (max-width: 750px) {
  html {
    font-size: 37.5PX;
  }
  body {
    font-size: 14.0625PX;
  }
}
@media screen and (min-width: 384PX) and (max-width: 750px) {
  html {
    font-size: 38.4PX;
  }
  body {
    font-size: 14.4PX;
  }
}
@media screen and (min-width: 393PX) and (max-width: 750px) {
  html {
    font-size: 39.3PX;
  }
  body {
    font-size: 14.7375PX;
  }
}
@media screen and (min-width: 400PX) and (max-width: 750px) {
  html {
    font-size: 40PX;
  }
  body {
    font-size: 15PX;
  }
}
@media screen and (min-width: 412PX) and (max-width: 750px) {
  html {
    font-size: 41.2PX;
  }
  body {
    font-size: 15.45PX;
  }
}
@media screen and (min-width: 414PX) and (max-width: 750px) {
  html {
    font-size: 41.4PX;
  }
  body {
    font-size: 15.525PX;
  }
}
@media screen and (min-width: 424PX) and (max-width: 750px) {
  html {
    font-size: 42.4PX;
  }
  body {
    font-size: 15.9PX;
  }
}
@media screen and (min-width: 480PX) and (max-width: 750px) {
  html {
    font-size: 48PX;
  }
  body {
    font-size: 18PX;
  }
}
@media screen and (min-width: 540PX) and (max-width: 750px) {
  html {
    font-size: 54PX;
  }
  body {
    font-size: 20.25PX;
  }
}
@media screen and (min-width: 640PX) and (max-width: 750px) {
  html {
    font-size: 64PX;
  }
  body {
    font-size: 24PX;
  }
}
@media screen and (min-width: 720PX) and (max-width: 750px) {
  html {
    font-size: 72PX;
  }
  body {
    font-size: 27PX;
  }
}
@media screen and (min-width: 320PX) and (max-width: 750px) {
  html {
    font-size: 10vw;
  }
}
@media screen and (max-width: 750px) {
  body {
    background: url("./images/bg-mobile.png") #E2E6F3 no-repeat center top/contain;
  }
  .wrap {
    max-width: 100%;
  }
  .main-wrap {
    display: block;
    padding: 0;
    overflow: hidden;
  }
  .main-body {
    box-sizing: border-box;
    width: auto;
    padding: 1.667rem 0.667rem 0;
    min-height: 100vh;
  }
  .main-body .logo {
    font-size: 1.481em;
  }
  .main-body .logo img {
    width: 1.278rem;
    height: 1.278rem;
    margin-right: 0.333rem;
  }
  .main-body h1 {
    margin: 1.556rem 0 0;
    font-size: 2.963em;
  }
  .main-body h1 + p {
    margin: 0.278rem 0 0;
    font-size: 1.333em;
  }
  .preview {
    display: none;
  }
  .downloads {
    margin-top: 1.278rem;
  }
  .file-form {
    margin-top: 0.778rem;
  }
  #ipt-code {
    width: 100%;
    padding: 0.389rem 0.444rem;
    font-size: 1.185em;
  }
  .page-foot {
    padding-top: 0.556rem;
    text-align: center;
  }
  .modal__container {
    padding: 0.833rem;
    max-width: 98%;
    border-radius: 0.639rem;
  }
}