@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a, img, formfield, button {
  outline: 0;
  border: 0;
}

body {
  height: 100%;
  font-family: "Nunito Sans", sans-serif;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

a {
  color: #1274c3;
}

.text-center {
  text-align: center;
}

#background {
  animation: background-gradient-animation 12s ease infinite;
  background-image: -webkit-linear-gradient(bottom left, #50b830, #26b69a);
  background-image: -o-linear-gradient(bottom left, #50b830, #26b69a);
  background-image: linear-gradient(to top right, #50b830, #26b69a);
  background-size: 200% 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#background.white {
  background: #fff;
}

#terminal {
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  position: relative;
  max-width: 768px;
  margin: 0 auto;
}
#terminal button, #terminal input {
  font-family: "Nunito Sans", sans-serif;
}
#terminal #terminal-top-button {
  margin-bottom: 10px;
  text-align: right;
}
#terminal #terminal-top-button .button.intro {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  padding: 7px 20px;
  background-color: rgba(64, 64, 64, 0.35);
  display: inline-block;
  border-radius: 15px;
  text-decoration: none;
  transition-duration: 250ms;
}
#terminal #terminal-top-button .button.intro:hover {
  background-color: rgba(64, 64, 64, 0.65);
}
#terminal #terminal-intro {
  flex-grow: 1;
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -20px;
}
#terminal #terminal-intro button#next-button {
  color: #1274c3;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #1274c3;
  line-height: 20px;
  padding: 0 25px;
  position: absolute;
  right: 35px;
  bottom: 15px;
  z-index: 1;
}
#terminal #terminal-intro #intro-carousel .intro-slide {
  display: flex;
  flex-direction: column;
  height: calc(var(--vhs, 1vh) * 100 - 58px);
}
#terminal #terminal-intro #intro-carousel .intro-slide .intro-slide-image {
  flex-grow: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
#terminal #terminal-intro #intro-carousel .intro-slide .intro-slide-image:after {
  content: "";
  display: block;
  height: 102px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background: url(/assets/terminal/intro-image-mask-61e5c5dd3741ba444fd9ca7682284e1613022a62f79b8830453a5e3c059b60b0.svg) center bottom;
  background-size: 1100px;
  background-repeat: no-repeat;
}
#terminal #terminal-intro #intro-carousel .intro-slide .intro-slide-text {
  padding: 40px 35px 80px;
  height: calc(5em + 120px);
  font-size: 22px;
  line-height: 1.25em;
}
#terminal #terminal-intro #intro-carousel .owl-dots {
  position: absolute;
  left: 35px;
  bottom: 30px;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}
#terminal #terminal-intro #intro-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(64, 64, 64, 0.35);
  border-radius: 5px;
  transition-duration: 250ms;
}
#terminal #terminal-intro #intro-carousel .owl-dots .owl-dot.active {
  width: 40px;
}
@media only screen and (max-width: 374px) {
  #terminal #terminal-intro button#next-button {
    right: 25px;
    bottom: 5px;
  }
  #terminal #terminal-intro #intro-carousel .intro-slide .intro-slide-text {
    padding: 30px 25px 70px;
    font-size: 18px;
  }
  #terminal #terminal-intro #intro-carousel .owl-dots {
    left: 25px;
    bottom: 20px;
  }
}
#terminal #terminal-footer {
  text-align: center;
  position: relative;
  margin: 10px -20px 0 -20px;
  overflow: hidden;
  padding-bottom: 5px;
  z-index: 99;
}
#terminal #terminal-footer:before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  width: 1100px;
  height: 200px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 100%;
  z-index: -1;
}
#terminal #terminal-footer.color:before {
  background-image: -webkit-linear-gradient(bottom left, #50b830, #26b69a);
  background-image: -o-linear-gradient(bottom left, #50b830, #26b69a);
  background-image: linear-gradient(to top right, #50b830, #26b69a);
  background-size: 100vw 25px;
  background-position: top center;
  background-repeat: no-repeat;
}
#terminal #terminal-footer img.logo-img {
  height: 40px;
  width: auto;
}
#terminal #terminal-faq {
  margin-top: 40px;
  text-align: center;
}
#terminal #terminal-faq p {
  margin-top: 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 16px;
}
#terminal #terminal-faq a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#terminal #terminal-faq a span {
  text-decoration: underline;
}
#terminal #terminal-faq a svg {
  height: 9px;
  width: auto;
  margin-left: 2px;
}
@media only screen and (max-width: 374px) {
  #terminal #terminal-faq {
    margin-top: 20px;
  }
}
#terminal .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  padding: 10px;
}
#terminal #terminal-needy {
  display: flex;
}
#terminal #terminal-needy .photo {
  margin-right: 10px;
}
#terminal #terminal-needy .photo img {
  object-fit: cover;
  height: 70px;
  width: 70px;
  border-radius: 8px;
  display: block;
}
#terminal #terminal-needy .description {
  position: relative;
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#terminal #terminal-needy h1.name {
  font-size: 18px;
  font-weight: 800;
  word-wrap: break-word;
}
#terminal #terminal-needy h2.goal {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#terminal #terminal-needy .progressbar {
  margin-top: 5px;
}
#terminal #terminal-needy .progressbar .sp-progressbar {
  height: 30px;
  border: 1px solid #4aa040;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}
#terminal #terminal-needy .progressbar .sp-progressbar .bar {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  background: linear-gradient(270deg, #bff827 0%, #86d400 100%);
}
#terminal #terminal-needy .progressbar .sp-progressbar .text {
  text-transform: center;
  font-size: 18px;
  font-weight: 800;
  color: #50b830;
  position: relative;
  margin-top: 2px;
}
#terminal #terminal-needy .progressbar .sp-progressbar .text small {
  font-size: 13px;
  font-weight: 400;
}
#terminal #terminal-history {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px;
}
#terminal #terminal-history h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
#terminal #terminal-history h2 + p {
  font-size: 12px;
  line-height: 30px;
  font-weight: 700;
}
#terminal #terminal-history .payment-status-row {
  margin-top: 5px;
  font-size: 12px;
  line-height: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  padding: 4px 10px 4px 4px;
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  color: #404040;
}
#terminal #terminal-history .payment-status-row .date {
  width: 70px;
}
#terminal #terminal-history .payment-status-row .amount {
  flex-grow: 1;
  margin: 0 10px;
  text-align: right;
}
#terminal #terminal-history .payment-status-row .status {
  font-size: 10px;
  text-align: left;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#terminal #terminal-history .payment-status-row .status .status-icon {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
#terminal #terminal-history .payment-status-row .status.accepted {
  color: #50b830;
  font-weight: 600;
}
#terminal #terminal-history .payment-status-row .status.accepted .status-icon {
  border: 1px solid #50b830;
}
#terminal #terminal-history .payment-status-row .status.accepted .status-icon svg {
  color: #50b830;
  height: 8px;
}
#terminal #terminal-history .payment-status-row .status.rejected {
  color: #cd141a;
}
#terminal #terminal-history .payment-status-row .status.rejected .status-icon {
  border: 1px solid #cd141a;
}
#terminal #terminal-history .payment-status-row .status.rejected .status-icon svg {
  color: #cd141a;
  width: auto;
  height: 8px;
}
#terminal #terminal-history .payment-status-row .status.waiting {
  color: #404040;
}
#terminal #terminal-history .payment-status-row .status.waiting .status-icon {
  background-color: #e5e5e5;
}
#terminal #terminal-history .payment-status-row .status.waiting svg {
  height: 12px;
  width: auto;
  animation: loader-rotation 1s linear infinite;
  opacity: 0.35;
}
#terminal #terminal-history .payment-status-row .show-button {
  font-size: 10px;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 10px;
  color: #1274c3;
  border-radius: 10px;
  border: 1px solid #1274c3;
  padding: 3px 4px 3px 6px;
  text-decoration: none;
  margin-right: -6px;
}
#terminal #terminal-history .payment-status-row .show-button svg {
  width: 10px;
  height: 10px;
  color: #1274c3;
  margin-left: 3px;
}
@media only screen and (max-width: 374px) {
  #terminal #terminal-history .payment-status-row {
    font-size: 10px;
  }
  #terminal #terminal-history .payment-status-row .date {
    width: 60px;
  }
  #terminal #terminal-history .payment-status-row .amount {
    margin: 0 5px;
  }
  #terminal #terminal-history .payment-status-row .show-button {
    margin-left: 5px;
    font-size: 0;
    padding: 3px;
    width: 20px;
    justify-content: center;
  }
  #terminal #terminal-history .payment-status-row .show-button svg {
    margin-left: 0;
  }
}
#terminal #show-code-button,
#terminal #show-history-button {
  color: #1274c3;
  text-decoration: none;
  font-weight: 600;
  background: none;
  margin-top: 10px;
  font-size: 14px;
}
#terminal #show-code-button svg,
#terminal #show-history-button svg {
  height: 9px;
  width: auto;
  margin-left: 2px;
}
#terminal .terminal-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
#terminal .terminal-login h1 {
  font-weight: 400;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 10px;
}
#terminal .terminal-login h1 big {
  font-size: 28px;
  font-weight: 700;
  display: block;
}
@media only screen and (max-width: 374px) {
  #terminal .terminal-login h1 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }
  #terminal .terminal-login h1 big {
    font-size: 24px;
  }
}
#terminal .terminal-login h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}
#terminal #terminal-form {
  padding: 15px;
  position: relative;
  margin-top: 10px;
}
#terminal #terminal-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#terminal #terminal-form #blik-code-mockup {
  position: absolute;
  z-index: 0;
  top: 17px;
  display: grid;
  grid-template-columns: 100fr 100fr 120fr 120fr 100fr 100fr;
  grid-column-gap: 8px;
}
#terminal #terminal-form #blik-code-mockup.focused input {
  box-shadow: 0 0 0 2px #50b830;
  border-color: #50b830;
}
#terminal #terminal-form #blik-code-mockup input {
  height: 55px;
  border: 1px solid #bbb;
  border-radius: 10px;
  width: 100%;
  padding: 8px 0;
  transition-duration: 250ms;
  font-size: 36px;
  line-height: 40px;
  color: #404040;
  text-align: center;
}
#terminal #terminal-form #blik-code-mockup input:nth-child(3) {
  width: 83%;
}
#terminal #terminal-form #blik-code-mockup input:nth-child(4) {
  width: 83%;
  margin-left: auto;
}
@media only screen and (max-width: 349px) {
  #terminal #terminal-form #blik-code-mockup {
    grid-column-gap: 6px;
  }
  #terminal #terminal-form #blik-code-mockup input {
    height: 40px;
    font-size: 26px;
  }
}
#terminal #terminal-form .button button {
  height: 50px;
  border-radius: 25px;
  color: #fff;
  background-color: #cd141a;
  text-align: left;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
#terminal #terminal-form .button button img {
  height: 26px;
  width: auto;
  margin-left: 10px;
}
@media only screen and (max-width: 374px) {
  #terminal #terminal-form .button button {
    font-size: 15px;
  }
  #terminal #terminal-form .button button img {
    height: 22px;
  }
}
#terminal #terminal-form .button button:disabled,
#terminal #terminal-form .button button[disabled] {
  opacity: 60%;
}
#terminal #terminal-form .button + p {
  margin-top: 15px;
}
#terminal #terminal-form .error {
  color: #cd141a;
  font-size: 12px;
  margin-top: 5px;
}
#terminal #terminal-form .wrapper {
  margin-bottom: 10px;
  width: 100%;
  position: relative;
}
#terminal #terminal-form .wrapper.terminal_amount .label {
  display: none;
}
#terminal #terminal-form .wrapper.terminal_amount input {
  padding-right: 50px;
}
#terminal #terminal-form .wrapper.terminal_amount:after {
  content: "zł";
  font-size: 16px;
  background-color: #e5e5e5;
  text-align: center;
  display: block;
  position: absolute;
  right: 1px;
  height: 20px;
  top: 1px;
  width: 39px;
  line-height: 20px;
  padding: 9px 0;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
}
#terminal #terminal-form .wrapper.terminal_phone input {
  padding-left: 50px;
}
#terminal #terminal-form .wrapper.terminal_phone:after {
  content: "+48";
  font-size: 16px;
  background-color: #e5e5e5;
  text-align: center;
  display: block;
  position: absolute;
  left: 1px;
  height: 20px;
  top: 18px;
  width: 39px;
  line-height: 20px;
  padding: 9px 0;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}
#terminal #terminal-form .wrapper.terminal_blik_code {
  z-index: 1;
  position: relative;
}
#terminal #terminal-form .wrapper.terminal_blik_code input::placeholder {
  opacity: 0;
}
#terminal #terminal-form .wrapper.terminal_blik_code .input input {
  height: 55px;
  font-size: 36px;
  text-align: center;
  opacity: 0;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 349px) {
  #terminal #terminal-form .wrapper.terminal_blik_code .input input {
    height: 40px;
    font-size: 26px;
  }
}
#terminal #terminal-form .wrapper.terminal_email {
  display: none;
}
#terminal #terminal-form .wrapper.terminal_email .label {
  display: none;
}
#terminal #terminal-form .wrapper.terminal_email_agree .input {
  display: flex;
  align-items: center;
}
#terminal #terminal-form .wrapper.terminal_email_agree .label {
  padding-left: 10px;
  margin-bottom: 0;
}
#terminal #terminal-form .label {
  font-size: 12px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}
#terminal #terminal-form .label label {
  flex-grow: 1;
}
#terminal #terminal-form input {
  height: 40px;
  border: 1px solid #bbb;
  background: #fff;
  border-radius: 10px;
  width: 100%;
  padding: 8px 15px;
  transition-duration: 250ms;
  outline: none;
  font-size: 16px;
  line-height: 20px;
  color: #404040;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
#terminal #terminal-form input[type=checkbox] {
  height: 24px;
  width: 24px;
  padding: 0;
  display: block;
  border-radius: 5px;
  flex-shrink: 0;
}
#terminal #terminal-form input[type=checkbox]:focus {
  box-shadow: none;
  border-color: #bbb;
}
#terminal #terminal-form input[type=checkbox] + .label label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(/assets/terminal/checkbox-tick-f93cc0e0b413bc9a116443f14dea0e1968dfb53986992a9442ab4950bd1461f4.svg) center center no-repeat;
  background-size: 16px;
  opacity: 0;
  transition-duration: 350ms;
}
#terminal #terminal-form input[type=checkbox]:checked {
  border-color: #50b830;
}
#terminal #terminal-form input[type=checkbox]:checked + .label label:before {
  opacity: 1;
}
#terminal #terminal-form input::placeholder {
  color: #aaa;
}
#terminal #terminal-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #50b830;
  border-color: #50b830;
}
#terminal #share-code-button-wrapper {
  text-align: center;
  margin-top: auto;
}
#terminal #share-code-button-wrapper h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 5px;
}
#terminal #share-code-button-wrapper button#share-code-button {
  color: #1274c3;
  font-size: 15px;
  font-weight: 700;
  height: 50px;
  border-radius: 25px;
  background-color: #fff;
  border: 2px solid #1274c3;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  line-height: 20px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
#terminal #share-code-button-wrapper button#share-code-button svg {
  margin-left: 10px;
  height: 16px;
  width: 16px;
}
@media only screen and (max-width: 349px) {
  #terminal #share-code-button-wrapper button#share-code-button {
    padding: 0 15px;
  }
}
#terminal .modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  display: none;
}
#terminal .modal-wrapper .overlay {
  background-color: rgba(0, 0, 0, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  transition-duration: 650ms;
}
#terminal .modal-wrapper .modal {
  z-index: 101;
  position: relative;
  color: #fff;
  text-align: center;
  min-height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
#terminal .modal-wrapper .modal h1 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0;
  line-height: normal;
}
#terminal .modal-wrapper .modal h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: normal;
}
#terminal .modal-wrapper .back {
  background-color: transparent;
  border: none;
  color: #1274c3;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  border-radius: 25px;
  line-height: 20px;
  padding: 0 25px;
  align-self: center;
}
#terminal .modal-wrapper .back.button {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
#terminal #status-modal-wrapper .modal {
  transition-duration: 450ms;
  transform: translateY(-80px);
  opacity: 0;
}
#terminal #status-modal-wrapper h1 {
  margin-top: 60px;
}
#terminal #status-modal-wrapper .overlay-status-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition-duration: 250ms;
  opacity: 1;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#terminal #status-modal-wrapper .overlay-status-container.hide {
  opacity: 0;
}
#terminal #status-modal-wrapper .back {
  transition-duration: 450ms;
  transform: translateY(160px);
}
#terminal #status-modal-wrapper .overlay-status-container.waiting .overlay-status-icon {
  background-color: #e5e5e5;
}
#terminal #status-modal-wrapper .overlay-status-container.waiting .overlay-status-icon img {
  width: 70px;
  height: 70px;
  animation: loader-rotation 1s linear infinite;
  opacity: 0.35;
}
#terminal #status-modal-wrapper .overlay-status-container.waiting .overlay-status {
  color: #e5e5e5;
}
#terminal #status-modal-wrapper .overlay-status-container.accepted .overlay-status-icon {
  background-color: #50b830;
  position: relative;
}
#terminal #status-modal-wrapper .overlay-status-container.accepted .overlay-status-icon img {
  width: 55px;
  height: 55px;
}
#terminal #status-modal-wrapper .overlay-status-container.accepted .overlay-status {
  color: #50b830;
}
#terminal #status-modal-wrapper .overlay-status-container.accepted .animation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  z-index: -1;
  transform: translate(-50%, -50%);
}
#terminal #status-modal-wrapper .overlay-status-container.accepted .animation img {
  position: absolute;
  height: 70px;
  width: auto;
  display: block;
  transition: 1.5s ease-out;
  opacity: 1;
  transform: scale(1) translate(0, 0) rotate(0deg);
}
#terminal #status-modal-wrapper .overlay-status-container.rejected .overlay-status-icon {
  background-color: #cd141a;
}
#terminal #status-modal-wrapper .overlay-status-container.rejected .overlay-status-icon img {
  width: 55px;
  height: 55px;
}
#terminal #status-modal-wrapper .overlay-status-container.rejected .overlay-status {
  color: #cd141a;
}
#terminal #status-modal-wrapper .overlay-status-wrapper {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#terminal #status-modal-wrapper .overlay-status-wrapper .overlay-status-icon {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#terminal #status-modal-wrapper .overlay-status-wrapper .overlay-status {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}
#terminal #status-modal-wrapper .overlay-status-wrapper h2 {
  margin-bottom: 5px;
}
#terminal #status-modal-wrapper.visible .overlay {
  transition-duration: 250ms;
  opacity: 1;
}
#terminal #status-modal-wrapper.visible .modal {
  transform: translateY(0);
  opacity: 1;
}
#terminal #status-modal-wrapper.visible .back {
  transform: translateY(0);
}
#terminal #qrcode-modal-wrapper #show-code-info {
  z-index: 101;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform-style: preserve-3d;
  perspective: 200px;
  transition-duration: 450ms;
  opacity: 0;
}
#terminal #qrcode-modal-wrapper #show-code-info h4 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  line-height: normal;
}
#terminal #qrcode-modal-wrapper #show-code-info .scan-me-icon {
  animation: phone-animation 3s ease infinite;
  transform-origin: bottom center;
}
#terminal #qrcode-modal-wrapper img.scan-me-icon {
  width: 44px;
  height: auto;
}
#terminal #qrcode-modal-wrapper .qrcode-modal {
  background: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  max-width: 330px;
  width: calc(100% - 20px);
  z-index: 101;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  transition-duration: 450ms;
  transform: rotate(180deg) translateY(120%);
}
#terminal #qrcode-modal-wrapper .qrcode-modal .close {
  position: absolute;
  top: -50px;
  left: -11px;
  width: 50px;
  height: 50px;
  background: url(/assets/terminal/close-white-6709ed6e0394d94c9252f4b2733bc58372daef60281c6b978570242b4c137d0b.svg) center center no-repeat;
  background-size: 24px;
}
#terminal #qrcode-modal-wrapper .qrcode-modal .qrcode-info-wrapper {
  width: 250px;
  border-radius: 10px;
  animation: background-gradient-animation 12s ease infinite;
  background-image: -webkit-linear-gradient(bottom left, #50b830, #26b69a);
  background-image: -o-linear-gradient(bottom left, #50b830, #26b69a);
  background-image: linear-gradient(to top right, #50b830, #26b69a);
  background-size: 200% 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#terminal #qrcode-modal-wrapper .qrcode-modal .qrcode-info-wrapper img.code {
  width: 210px;
  height: auto;
  border-radius: 10px;
}
#terminal #qrcode-modal-wrapper .qrcode-modal .qrcode-info-wrapper h3 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  margin-top: 2px;
}
#terminal #qrcode-modal-wrapper.visible .overlay {
  transition-duration: 250ms;
  opacity: 1;
}
#terminal #qrcode-modal-wrapper.visible .qrcode-modal {
  transform: rotate(180deg) translateY(0);
}
#terminal #qrcode-modal-wrapper.visible #show-code-info {
  transition-delay: 500ms;
  opacity: 1;
}

@keyframes background-gradient-animation {
  0%, 100% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
}
@keyframes phone-animation {
  0%, 100% {
    transform: rotateX();
  }
  50% {
    transform: rotateX(45deg);
  }
}
@keyframes loader-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
