body {
  margin: 0;
  height: 100%;
  width: 100%;
}
body .close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
}
body .close:before, body .close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}
body .close:before {
  transform: rotate(45deg);
}
body .close:after {
  transform: rotate(-45deg);
}
body .qr-wrapper {
  text-align: center;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: fixed;
  inset: 0;
}
body .qr-wrapper .logo {
  display: inline-block;
  z-index: 1;
  position: relative;
  margin: 30px 0;
}
body .qr-wrapper .qr-scan {
  width: 80%;
  margin: auto;
  box-shadow: 0px 0 0px 1000px rgba(0, 0, 0, 0.3215686275);
  position: relative;
  height: 70%;
}
body .qr-wrapper .qr-scan img {
  width: 13%;
}
body .qr-wrapper .qr-scan .center-loader {
  position: absolute;
  right: 50%;
  top: 50%;
  margin: -7%;
}
body .qr-wrapper .qr-scan .top-left {
  position: absolute;
  left: 0;
  transform: rotate(-135deg);
  top: 0;
  margin: -7%;
}
body .qr-wrapper .qr-scan .top-right {
  position: absolute;
  right: 0;
  transform: rotate(-45deg);
  top: 0;
  margin: -7%;
}
body .qr-wrapper .qr-scan .bottom-left {
  position: absolute;
  left: 0;
  transform: rotate(135deg);
  bottom: 0;
  margin: -7%;
}
body .qr-wrapper .qr-scan .bottom-right {
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  bottom: 0;
  margin: -7%;
}
body .qr-wrapper .qr-scan::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2%;
  border-radius: 15%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, transparent -5%, white 50%, transparent 100%);
  -webkit-animation: scan 3s linear infinite;
          animation: scan 3s linear infinite;
}
@-webkit-keyframes scan {
  0% {
    top: 0px;
  }
  50% {
    top: 98%;
  }
  0% {
    top: 0;
  }
}
@keyframes scan {
  0% {
    top: 0px;
  }
  50% {
    top: 98%;
  }
  0% {
    top: 0;
  }
}
body .qr-wrapper .edit {
  right: 30px;
  bottom: 37px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 1;
}
body .qr-wrapper .edit img {
  width: 25px;
  display: block;
}
body .qr-wrapper button {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.6588235294);
  position: relative;
  margin: 30px 0;
}
body .qr-wrapper button::after {
  content: "";
  position: absolute;
  inset: -4px;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  border: 2px solid rgba(255, 255, 255, 0.6588235294);
  border-radius: 50%;
}
body .qr-wrapper .gtext {
  color: #fff;
  z-index: 1;
  padding: 30px 15px;
  font-size: 17px;
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  position: relative;
}
body .qr-wrapper .gtext span {
  font-size: 25px;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  font-family: "Courgette", cursive;
}
body .qr-wrapper.overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3215686275);
}
body .qr-wrapper.grey-background {
  background-image: none !important;
  background: grey;
}
body .qr-wrapper.qr-greeting .gtext-greetings {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 15px;
}
body .qr-wrapper.qr-greeting .gtext-greetings span {
  width: auto;
  padding: 0 2px;
}
body .popup-wrapper {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4392156863);
  z-index: 11;
  inset: 0;
  display: flex;
  display: none;
}
body .popup-wrapper .popup {
  width: 80vw;
  padding: 30px 20px;
  text-align: center;
  margin: auto;
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px #3c3c3c;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
}
body .popup-wrapper .popup a {
  display: inline-block;
  margin-bottom: 15px;
}
body .popup-wrapper .popup form .form-control {
  border: 1px solid #d2d2d2;
  width: 100%;
  margin-bottom: 0px;
  min-height: 40px;
  padding: 6px 12px;
  box-sizing: border-box;
  color: #000;
  font-size: 16px;
  font-family: sans-serif;
}
body .popup-wrapper .popup form .form-control:focus {
  border: 1px solid #404041;
  outline: none;
}
body .popup-wrapper .popup form .btn {
  background-color: #404041;
  color: #fff;
  border: 1px solid transparent;
  padding: 9px 28px;
  border-radius: 0;
  transition: all 0.2s linear;
}
body .popup-wrapper .popup form .btn:hover {
  background-color: #fff;
  color: #404041;
  border: 1px solid #404041;
  cursor: pointer;
}
body .popup-wrapper .popup form .msg {
  margin: 40px 0;
  font-size: 16px;
  font-family: sans-serif;
  color: green;
}
body .popup-wrapper .popup svg {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  padding: 10px;
}
body #qr-reader {
  position: fixed !important;
  inset: 0;
  width: 100% !important;
  height: 100%;
}
body #qr-reader video {
  height: 100%;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
body #secondScreen .gtext {
  padding: 30px 85px 20px 30px;
}
body #secondScreen .edit {
  position: absolute;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
body .overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(34, 34, 34, 0.57);
}
body .overlay .overlay__inner {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
body .overlay .overlay__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
body .overlay .spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.05);
  border-top-color: #fff;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}
@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
body #qr-shaded-region {
  display: none !important;
}

.none {
  display: none !important;
}

.back {
  text-decoration: none;
  color: #fff;
}

.mb-1 {
  margin-bottom: 16px;
}

.error {
  display: block;
  text-align: left;
  color: red;
}

.title-word {
  -webkit-animation: color-animation 2s linear infinite;
          animation: color-animation 2s linear infinite;
}
.title-word.title-word-1 {
  --color-1: #7ed956;
  --color-2: #77d7ff;
  --color-3: #e4a9a8;
}
.title-word.title-word-2 {
  --color-1: #dbad4a;
  --color-2: #ed86ff;
  --color-3: #5770ff;
}
.title-word.title-word-3 {
  --color-1: #accfcb;
  --color-2: #e4a9a8;
  --color-3: #accfcb;
}
.title-word.title-word-4 {
  --color-1: #3d8dae;
  --color-2: #df8453;
  --color-3: #ff3030;
}

@-webkit-keyframes color-animation {
  0% {
    color: var(--color-1);
  }
  32% {
    color: var(--color-1);
  }
  33% {
    color: var(--color-2);
  }
  65% {
    color: var(--color-2);
  }
  66% {
    color: var(--color-3);
  }
  99% {
    color: var(--color-3);
  }
  100% {
    color: var(--color-1);
  }
}

@keyframes color-animation {
  0% {
    color: var(--color-1);
  }
  32% {
    color: var(--color-1);
  }
  33% {
    color: var(--color-2);
  }
  65% {
    color: var(--color-2);
  }
  66% {
    color: var(--color-3);
  }
  99% {
    color: var(--color-3);
  }
  100% {
    color: var(--color-1);
  }
}/*# sourceMappingURL=style.css.map */