@charset "UTF-8";
/*************/
/* CONSTANTS */
/*************/
/*********/
/* FONTS */
/*********/
html {
  font-size: 16px;
}

/*********/
/* RESET */
/*********/
/*! minireset.css v0.0.5 | MIT License | github.com/jgthms/minireset.css */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td, th {
  padding: 0;
  text-align: left;
}

/**********/
/* LAYOUT */
/**********/
body {
  display: flex;
  flex-direction: column;
  min-height: 94vh;
  font-family: "Open Sans", sans-serif;
  color: #888;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none!important;
  position: fixed!important;
}
/* MENU PANEL */
/* RESULTS PANEL */

.splashscreen {
  z-index: 9000;
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: splashscreen 2s ease-in-out;
  pointer-events: none;
}
@keyframes splashscreen {
  0% {
    opacity: 1;
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.5);
  }
  75% {
    opacity: 1;
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.5);
  }
  100% {
    opacity: 0;
    backdrop-filter: blur(0px);
    background: rgba(255,255,255,0);
  }
}
@keyframes greeting {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.splashscreen h3 {
  font-size: 1.4em;
  animation: greeting 2s ease-in-out;
  opacity: 0;
  background-color: #f55d1b;
  padding: 0.5em;
  border-radius: 0.5em;
  color: #efefef;
}
body .main {
  flex: 1;
  padding: 5em 1em 1em 1em;
  flex-direction: row;
}
body.log .main {
  width: 75%;
}
body .log-area {
  font-family: 'Courier New', Courier, monospace;
  width: 0;
  overflow: hidden;
  position: fixed;
  font-size: 0.8em;
  height: calc(100vh - 7em);
  background: #efefef;
  top: 6em;
  right: -4em;
  z-index: 9999;
  padding: 1em;
  box-sizing: border-box;
  overflow-wrap: break-word;
}
body.log .log-area {
  width: 25%;
  right: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}
body .log-area .clear-log{
  bottom: 1%;
  display: flex;
  align-items: center;
  background-color: #ddd;
  padding: 0.5em;
  width: 100%;
}
body .log-area .clear-log p{
  flex-basis: 50%;
}
body .log-area .pre {
  position: relative;
  bottom: 0;
  transition: all 0.3s;
  color: #880000;
}
.log-area .pre strong {
  color: #003388;
}
.log-area .pre .declined {
  background-color: yellow;
}
.log-area .pre h3 {
  background-color: #880000;
  color: #fff;
  padding: 0.3em;
}
.log-area .pre small {
  color: #333;
}
.log-area .pre pre {
  font-size: 0.9em;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  color: #333;
}
.log-area .pre .toggler {
  color: white;
  background-color: darkorange;
  padding: 0.5em;
  cursor: pointer;
}
.log-area .pre .location {
  background-color: darkgreen;
  padding: 0.5em;
  cursor: pointer;
}
.log-area .pre .location a{
  color: white;
  text-decoration: none;
}
.log-area .pre .toggle {
  background-color: teal;
  color: white;
  padding: 0.5em;
  display: none;
}
.log-area .trContent {
  border: 1px solid grey;
  padding: 0.5em;
}
.log-area .trContent a.btn {
  display: block;
  padding: 0.5em;
  border: 1px solid grey;
  margin-top: 0.5em;
  cursor: pointer;
}
.log-area .trContent a.btn:hover {
  color: white;
  background-color: grey;
}
body .main .container {
  text-align: left;
  perspective: 1000px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: perspective(900px) rotate3d(20, -45, 0, 0deg) scale(1);
  opacity: 1;
}
body .main .container .text {
  margin-bottom: 2em;
}
#enter-form {
  width: 100%;
  margin-right: 1em;
  border: 2px solid #eee;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
  border-radius: 1em;
}
#enter-qr {
  flex-basis: 35%;
  border: 2px solid #eee;
  align-self: stretch;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1em;
  padding: 15px;
}
body .footer {
  display: none;
  flex-direction: row;
}
body .footer .apps {
  margin: 0 auto;
  z-index: 5;
  position: relative;
}
body .footer .apps .qrcode {
  padding: 1em;
  box-sizing: border-box;
}
body .footer .apps .qrcode img {
  height: 5.8em;
}
body .footer .apps .applinks {
  display: flex;
  flex-direction: row;
}
body .footer .apps .applinks a {
  display: block;
  margin-left: 1em;
}
body .footer .apps:before {
  position: absolute;
  content: "↓";
  display: block;
  top: -100%;
  left: 55%;
  transform: translate(-50%, 0%);
  font-size: 5em;
  color: #003388;
  opacity: 0;
  pointer-events: none;
}
body .footer .apps.arrow:before {
  animation: arrow 1s infinite;
}
body .footer .exit {
  padding: 2em;
}
.greeting {
  position: relative;
  margin-bottom: 2em;
  background-color: #efefef;
  padding: 1em 5em 1em 1em;
  border-radius: 1em;
}
.greeting a {
  position: absolute;
  right: 1em;
}
body .footer .exit a, .greeting a {
  text-decoration: none;
  transition: all 0.3s ease;
}
body .footer .exit a:hover, .greeting a:hover {
  color: #003388;
}
body .footer .exit a:hover img, .greeting a:hover img {
  transform: translate(0em, 0.1em);
  opacity: 1;
}
body .footer .exit a img, .greeting a img {
  height: 1em;
  display: inline-block;
  transform: translate(-0.5em, 0.1em);
  transition: all 0.3s ease;
  opacity: 0.5;
}
@keyframes arrow {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
}
body .techspec {
  display: none!important;
  right: 0;
  left: unset;
  padding: 1em;
  z-index: 13;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  transform: translateY(0%);
  transition: transform 0.3s ease;
}
body .techspec p {
  font-size: 0.7em;
  margin: 0;
  padding: 0;
  text-align: right;
  padding-right: 10px;
  color: rgba(0, 0, 0, 0.5);
  position: absolute;
  right: 80%;
  top: 1.2em;
  width: 100px;
}
body .techspec input {
  position: fixed;
  left: -9999px;
}
body .techspec input:checked ~ label svg polyline {
  stroke-dasharray: 160;
  stroke-dashoffset: -138;
}
body .techspec input:checked ~ p {
  opacity: 0;
}
body .techspec label {
  width: auto;
  height: auto;
  display: block;
  cursor: pointer;
}
body .techspec label:hover {
  opacity: 0.7;
}
body .techspec label svg {
  height: 100%;
  width: 40px;
}
body .techspec label svg polyline {
  stroke-dasharray: 133;
  stroke-dashoffset: 0;
  transition: all 0.2s ease;
  fill: none;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

body .beauty-checkbox input {
  position: fixed;
  left: -9999px;
}
body .beauty-checkbox input:checked ~ label svg polyline {
  stroke-dasharray: 160;
  stroke-dashoffset: -138;
}
body .beauty-checkbox input:checked ~ p {
  opacity: 0;
}
body .beauty-checkbox label {
  width: auto;
  height: auto;
  display: block;
  cursor: pointer;
}
body .beauty-checkbox label:hover {
  opacity: 0.7;
}
body .beauty-checkbox label svg {
  height: 100%;
  width: 25px;
}
body .beauty-checkbox label svg polyline {
  stroke-dasharray: 133;
  stroke-dashoffset: 0;
  transition: all 0.2s ease;
  fill: none;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

body .beauty-checkbox label span {
  vertical-align: 5px;
  padding-left: 5px;
}

body .beauty-checkbox i  {
  width: 100%;
  left: 0;
  font-size: 0.8em;
  background-color: #efefef;
  display: block;
  padding: 1em;
  margin-top: 1em;
  position: relative;
  border-radius: 1em;
}

body .beauty-checkbox i:before {
  position: absolute;
  display: block;
  content: "";
  background-color: #efefef;
  width: 1em;
  height: 1em;
  transform: rotate(45deg);
  top: -0.5em;
  left: calc(15% - 0.5em);
}

body .pclogo {
  top: 0em;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease;
  z-index: 11;
  padding: 1em 1em 0.5em 1em;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 0 0 2em 2em;
}
body .pclogo img {
  height: 3em;
}
body .stlogo {
  top: 1em;
  left: 50%;
  transform: translate(-50%, -200%);
  transition: all 0.3s ease;
  z-index: 11;
}
body .stlogo img {
  height: 3.5em;
}
body .close {
  padding: 1em;
  z-index: 14;
}
body .menu {
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 11;
}
body .menu .links p {
  text-transform: uppercase;
  color: #888;
  font-size: 0.8em;
  text-align: center;
  border-bottom: 1px solid #888;
  opacity: 0;
  margin-bottom: 2em;
  padding-bottom: 0.5em;
  transition: opacity 0.3s ease;
  letter-spacing: 0.5em;
  padding-left: 1em;
}
body .menu .links a {
  display: block;
  margin: 0 auto 1em auto;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-20px);
  opacity: 0;
  text-transform: uppercase;
  text-decoration: none;
  color: #888;
  position: relative;
}
body .menu .links a:before {
  content: ">";
  display: inline-block;
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
  transform: translateX(-20px);
}
body .menu .links a:after {
  content: "<";
  display: inline-block;
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
  transform: translateX(20px);
}
body .menu .links a:hover {
  color: #0069B2;
}
body .menu .links a:hover:before {
  opacity: 1;
  transform: translateX(-10px);
}
body .menu .links a:hover:after {
  opacity: 1;
  transform: translateX(10px);
}
body .results {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fafafa;
  transition: opacity 0.3s ease;
}
body .results .res-content {
  max-width: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  color: #888;
}
body .results .res-content p {
  margin-bottom: 2em;
}
body .results .res-content p img {
  width: 100%;
}
body .results .res-content .spoiler_body {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
body .results .res-content .spoiler_body.visible {
  max-height: 1000px;
}
.checksign {
  color: green;
}

/************************************************************************************/
/* LAYOUT MENU PANEL ACTIVE */
/************************************************************************************/
body.menu-active .main .container {
  transform: perspective(900px) rotate3d(20, -45, 0, 45deg) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body.menu-active .menu {
  opacity: 1;
  pointer-events: all;
}
body.menu-active .menu .links p {
  opacity: 1;
  transition-delay: 0.1s;
}
body.menu-active .menu .links a {
  transform: translateY(0);
  opacity: 1;
}
body.menu-active .menu .links a:nth-of-type(1) {
  transition-delay: 0.2s;
}
body.menu-active .menu .links a:nth-of-type(2) {
  transition-delay: 0.3s;
}
body.menu-active .menu .links a:nth-of-type(3) {
  transition-delay: 0.4s;
}
body.menu-active .pclogo {
  transform: translate(-50%, -200%);
}
body.menu-active .stlogo {
  transform: translate(-50%, 0);
}

/************************************************************************************/
/* RESULTS MENU PANEL ACTIVE */
/************************************************************************************/
body.results-active .main .container {
  transform: perspective(900px) rotate3d(20, -45, 0, 45deg) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body.results-active .results {
  opacity: 1;
  pointer-events: all;
}

/**************/
/* TYPOGRAPHY */
/**************/
.heading {
  font-size: 1.5em;
}
.heading.pdf {
  display: none;
}
.heading .highlite-download {
  text-decoration: underline;
  text-decoration-line: 1px;
  transition: all 0.3s;
}
.heading .highlite-download:hover {
  color: #003388;
}

.small {
  font-size: 0.8em;
}

.italic {
  font-style: italic;
}
.sign-in  {
  margin-top: 1em;
  text-align: center;
}

a {
  color: #888;
}
a:hover {
  text-decoration: none;
}
.sign-in  {
  margin-top: 1em;
  text-align: center;
}

/*****************/
/* COMMON STYLES */
/*****************/
.abs {
  top: 0;
  left: 0;
  position: absolute;
}
.fixed {
  position: fixed!important;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.action {
  text-align: right;
  color: #0069b2;
  cursor: pointer;
}
.action span {
  color: #bbb;
}

input, button {
  outline: none;
}

.input-field {
  margin-bottom: 1.5em;
  position: relative;
}
.input-field input {
  border: none;
  border-bottom: 2px solid #888;
  padding: 1em 0;
  width: 100%;
}
.input-field input:not(:placeholder-shown) ~ span, .input-field input:focus ~ span {
  transform: translateY(-150%);
  color: #888;
  font-size: 0.7em;
}
.input-field span {
  position: absolute;
  top: 0.7em;
  left: 0;
  color: #ccc;
  transition: all 0.3s ease;
  pointer-events: none;
}
.input-field i {
  color: #888;
  font-size: 0.8em;
}
.error {
  color: #880000;
}

.badge {
  display: inline-block;
  padding: 0.3em 0.7em;
  border-radius: 1em;
  background-color: #efefef;
  text-decoration: none;
  transition: all 0.3s;
}
.badge:hover {
  background-color: #ddd;
}

.btn {
  position: relative;
}
.btn input, .btn a {
  position: relative;
  border: 2px solid #888;
  background: none;
  width: 100%;
  border-radius: 3em;
  padding: 1em;
  z-index: 2;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.btn input:hover, .btn a:hover {
  color: white;
}
.btn input:hover ~ span, .btn a:hover ~ span {
  opacity: 1;
  transform: translate(0, 0);
}
.btn a {
  line-height: 1em;
}
.btn span {
  position: absolute;
  width: 100%;
  height: calc(3em + 4px);
  top: 0;
  left: 0;
  border-radius: 3em;
  background-color: #f55d1b;
  z-index: 1;
  opacity: 0;
  transform: translate(1em, 1em);
  transition: all 0.3s ease;
}
.btn a em {
  font-style: normal;
  color: #0069b2;
}
.btn i, i[data-pc='registerDescEmail']  {
  width: 100%;
  left: 0;
  font-size: 0.8em;
  background-color: #efefef;
  display: block;
  padding: 1em;
  margin-top: 1em;
  position: relative;
  border-radius: 1em;
}

.btn i:before, i[data-pc='registerDescEmail']:before {
  position: absolute;
  display: block;
  content: "";
  background-color: #efefef;
  width: 1em;
  height: 1em;
  transform: rotate(45deg);
  top: -0.5em;
  left: calc(50% - 0.5em);
}

.btns {
  display: flex;
}
.btns .btn {
  flex: 1;
}
.btns .btn:first-of-type {
  margin-right: 1em;
}

.files {
  height: 5em;
  margin: 0 0 2em 0;
  border: 2px dotted #ccc;
  position: relative;
}
.files input {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}
.files span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  max-width: 80%;
}
.files span strong {
  display: inline-block;
  cursor: pointer;
  font-size: 1.5em;
  color: #f41e23;
  padding: 0em 0.3em 0em 0.3em;
  transform: translateY(0.13em);
}

.row {
  display: flex;
  align-items: center;
  margin-top: 1em;
  flex-wrap: nowrap;
}
input.register_type {
  display: none;
}
label[for="register_type_kyc"] {
  width: 2.5em;
  height: 1.5em;
  border-radius: 1em;
  display: block;
  background-color: #efefef;
  margin-right: 1em;
  position: relative;
  cursor: pointer;
}
label[for="register_type_kyc"]:after {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  content: "";
  display: block;
  background-color: white;
  margin-right: 1em;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
  transform: translateX(0);
  transition: transform 0.3s ease;
}
input#register_type_kyc:checked ~ label {
  background-color: #f55d1b;
}
input#register_type_kyc:checked ~ label:after {
  transform: translateX(1em);
}
#ekyc_form label[for="register_type_kyc"] {
  width: 3.5em;
}


/* Change register form with KYC or not */
section.main {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: calc(100vh - 5em); */
  overflow-y: auto;
  /* max-height: calc(100vh - 5em);
  margin-top: 5em; */
}
section.main.demo {
  position: relative;
  align-items: flex-start;
}
section.main.hidden .container{
    transform: translate(-100%,0);
    opacity: 0;
    transition: all 0.3s;
}
section.main.visible .container {
    animation: show 0.3s;
 }
 
 #s_two {
   display: none;
 }

 fieldset#renew_cert_form, fieldset#create_cert_form {
   padding: 2em;
   margin: 1em 0;
   border-radius: 1em;
   border: 1px solid #ccc;
   position: relative;
 }
 fieldset#renew_cert_form #close_renew_cert_form {
  position: absolute;
  display: block;
  content: "×";
  top: -0.3em;
  right: 1em;
  background: white;
  padding: 0.1em 0.5em;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 0px #fff;
  transition: box-shadow 0.3s;
}
fieldset#renew_cert_form #close_renew_cert_form:hover {
  box-shadow: 0 0 10px #ccc;
}
 legend {
   padding: 0 1em;
 }

 span#user_nav {
  padding-top: 1em;
  border-top: 1px dotted #ccc;
  margin-top: 1em;
  display: block;
 }

 span#user_nav a {
  position: static;
  font-size: 0.8em;
 }
 
 @keyframes show {
   0% {
     transform: translate(-100%,0);
     opacity: 0;
   }
   100% {
     transform: translate(0,0);
     opacity: 1;
   }
 }

 .cert_block {
  margin: 2em 0;
 }
.cert_block h3 {
  font-weight: bold;
  /* background-color: #efefef; */
  margin-bottom: 0.5em;
}
 .cert_block ul {
   margin-left: 1.2em;
 }

 .cert_block ul li {
  list-style: none;
  font-size: 0.8em;
  color: black;
  position: relative;
 }

 .cert_block ul li:before {
  position: absolute;
  display: block;
  content: "•";
  left: -1em;
  color: #ccc;
  font-size: 1.5em;
  top: -0.25em;
}

 .cert_block table {
   width: 100%;
 }
.cert_block table tr {
   border-bottom: 1px solid #ccc;
}
.cert_block table tr:last-of-type {
   border-bottom: none;
}
 .cert_block table td {
   color: black;
   font-size: 0.8em;
   padding: 0.5em 0;
 }
 .cert_block table td:first-of-type {
   width: 30%;
   color: #888;
 }

 #tr_type_container, #pdf_type_container {
  padding: 0 1em 0 0;
  display: flex;
  align-items: center;
 }
input#tr_type, input#pdf_sign_type {
  display: none;
}
 label[for="tr_type"], label[for="pdf_sign_type"] {
  width: 3.5em;
  height: 2em;
  border-radius: 1em;
  display: inline-block;
  background-color: #efefef;
  margin: 0 1em;
  position: relative;
  cursor: pointer;
}
 label[for="tr_type"]:after, label[for="pdf_sign_type"]:after {
  position: absolute;
    top: 0.2em;
    left: 0.2em;
    width: 1.6em;
    height: 1.6em;
    border-radius: 50%;
    content: "";
    display: block;
    background-color: white;
    margin-right: 1em;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
    transform: translateX(0);
    transition: transform 0.3s ease;
}
#type_raw, #type_pdf {
  color: #f55d1b;
}
input#tr_type:checked ~ #type_cms, input#pdf_sign_type:checked ~ #type_cms {
  color: #f55d1b;
}
input#tr_type:checked ~ #type_raw, input#pdf_sign_type:checked ~ #type_pdf {
  color: #888;
}
input#tr_type:checked ~ label:after, input#pdf_sign_type:checked ~ label:after {
  transform: translateX(1.5em);
}

.active_span {
  background-color: #f55d1b;
  border-radius: 1em;
  padding: 0.1em 0.5em;
  color: white;
}
.tr_pdf_choose {
  margin-bottom: 2em;
}

#demo-form {
  position: absolute;
  width: 100%;
  transition: all 0.3s ease;
}
#pdf-form {
  opacity: 0;
  transform: translateX(-100%);
  flex-direction: column;
  min-width: 350px;
  position: absolute;
  width: 100%;
  transition: all 0.3s ease;
}

p.download_signed_file {
  text-align: center;
  text-decoration: underline;
  color: #0069b2;
  font-size: small;
  font-style: italic;
  cursor: pointer;
}

#ekyc_form .container {
  max-width: 350px;
}
#ekyc_form .container .btns .btn{
  margin-right: 0;
}

/* RELOAD */
@keyframes countdown {
  0% {
    text-indent: 0ch;
  }
  100% {
    text-indent: -6ch;
  }
}
span.seconds::before {
  content: '543210';
  font-family: monospace;
  transform: translateY(20%);
  display: inline-block;
  width: 1ch;
  overflow: hidden;
  animation: countdown 6s steps(6);
}

#choose_buttons {
  position: relative;
}

#choose_buttons .btns {
  display: block;
}

#choose_buttons .btn {
  position: relative;
}

#choose_buttons #toggle_block {
  display: none;
  position: absolute;
  bottom: 4em;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(255, 255, 255);
  border-radius: 1em;
  box-shadow: rgb(0 0 0 / 15%) 0px 0px 30px;
  padding: 1em;
  border: 2px solid rgb(255, 255, 255);
}

#choose_buttons .btn {
  margin-bottom: 1em;
}

#choose_buttons .btn:first-of-type {
  margin-right: 0;
}

#choose_buttons .btn:last-of-type {
  margin-bottom: 0;
}

#choose_buttons .btn i {
  width: 100%;
  font-size: 0.8em;
  background-color: #efefef;
  display: none;
  padding: 1em;
  margin-top: 1em;
  border-radius: 1em;
  position: absolute;
  left: calc(100% + 1em);
  bottom: -11%;
}

#choose_buttons .btn i:before {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  left: calc(0% - 0.4em);
}

#choose_buttons .btn:hover i {
  display: block;
}

.form-container {
  display:flex;
  align-items:center;
  margin-bottom: 1em;
}

@media (max-width: 992px) {
  * {
    margin: 0;
    padding: 0;
  }

  body {
    font-size: 14px;
  }
  body .pclogo {
    /* left: 9.5em; */
  }
  body .pclogo img {
    height: 2em;
  }
  body .techspec p {
    font-size: 0.7em;
    top: 1.7em;
  }

  td:nth-child(2) {
    word-break: break-all;
  }

  .btns {
    flex-direction: column;
  }
  .btns .btn {
    margin-top: 2em;
  }
  .form-container {
    flex-direction: column;
    min-width: unset!important;
  }
  #enter-form {
    margin-right: 0;
  }
  #enter-qr {
    margin-top: 1em;
  }
}

body.mobile .main {
  padding: 6em 2em 2em 2em;
}

body.mobile .main .container {
  width: 100%;
}
body.mobile #enter-qr {
  display: none;
}
body.mobile .form-container {
  display:block!important;
  align-items:center;
  margin-bottom: 1em;
  min-width: 100%!important;
}
body.mobile .qrcode {
  display: none;
}
body.mobile .applinks {
  padding-right: 1em;
}
body.mobile.log .log-area {
  position: absolute;
  top: 6em;
  left: 0;
  height: calc(100vh - 6em);
  width: 100%;
}
body.mobile .stlogo {
  left: calc(40px + 2em);
  max-width: 30%;
  transform: translate(0, -200%);
}
body.mobile.menu-active .stlogo {
  transform: translate(0%, -20%);
}
body.mobile .footer .apps:before {
  top: unset;
  bottom: 100%;
}

body.mobile #pdf-form {
  min-width: 100%;
}

body.mobile #pdf-form .files span {
  max-width: 100%;
  padding: 1em;
  width: 100%;
}

body#demo.mobile form#enter-form {
  padding-top: 3em;
}

#request_certificate_app {
  white-space: normal;
  margin-top: 1em;
}