body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

a {
  text-decoration: unset;
}

.text-bold {
  font-weight: 700;
}
.text-regular {
  font-weight: 400;
}
.text-medium {
  font-weight: 500;
}
.text-semibold {
  font-weight: 600;
}
.text-extrabold {
  font-weight: 900;
}
.text-10 {
  font-size: 10px;
  line-height: 15px;
}
.text-12 {
  font-size: 12px;
  line-height: 21px;
}
.text-14 {
  font-size: 14px;
  line-height: 21px;
}
.text-18 {
  font-size: 18px;
}
.text-20 {
  font-size: 20px;
  line-height: 25px;
}
.text-gray-dark {
  color: #A2ACB2;
}
.text-white {
  color: white;
}
.text-black {
  color: #1D1D1B;
}
.text-blue {
  color: #5683F6;
}
.text-center {
  text-align: center;
}
.text-underline {
  text-decoration: underline;
}

.app {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #F4F7F9;
}
.app-header {
  padding-top: 20px;
}
.app-header nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.app-header__language {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.app-header__language-head {
  border: 1px solid #A2ACB2;
  border-radius: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  gap: 10px;
  cursor: pointer;
}
.app-header__language-head.active .arrowdp {
  transform: rotate(180deg);
}
.app-header__language-head p {
  cursor: pointer;
}
.app-header__language-body {
  position: absolute;
  top: calc(100% + 10px);
  box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: right;
  right: 0;
  padding: 0 20px;
  max-height: 0px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  background-color: #F4F7F9;
  border-radius: 20px;
  min-width: 130px;
  box-sizing: border-box;
  opacity: 0;
  z-index: -1;
}
.app-header__language-body.active {
  opacity: 1;
  max-height: 150px;
  z-index: 1;
}
.app-header__language-body a {
  line-height: 2;
  text-decoration: unset;
  transition: 0.3s;
}
.app-header__language-body a:first-child {
  margin-top: 10px;
}
.app-header__language-body a:last-child {
  margin-bottom: 10px;
}
.app-header__language-body a:hover {
  color: #67879a;
}
.app-notfound .app-btn-red {
  margin-bottom: 21px;
}
.app-scan {
  display: flex;
  flex-direction: column;
}
.app-scan > p:first-child {
  margin-top: 30px;
  margin-bottom: 25px;
}
.app-scan .qr {
  border-radius: 20px;
  margin: 0 auto;
}
.qr_place {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
#qr-canvas {
  display: inline-block;
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  left: 0px;
  top: 0px;
}
.app-scan .qr-box {
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 280px;
  height: 280px;
  margin-left: auto;
  box-sizing: border-box;
  margin-right: auto;
  padding: 30px;
}
.app-scan .qr-box img {
  width: 100px;
}
.app-scan .qr-box .text-18 {
  margin-top: 21px;
  margin-bottom: 0;
}
.app-scan .qr-box .text-14 {
  margin-bottom: 0;
  margin-top: 17px;
}
.app-scan .qr-box--green {
  background-color: #175745;
}
.app-scan .qr-box--red {
  background-color: #EF3F36;
}
.app-scan .qr-box--gray {
  background-color: #A2ACB2;
}
.app-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.app-footer a {
  text-decoration: unset;
}
.app-btn-red {
  border: unset;
  outline: unset;
  background-color: #EF3F36;
  transition: 0.2s;
  color: white;
  padding: 11.5px 0;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  width: 280px;
  cursor: pointer;
  margin-bottom: 41px;
}
.app-btn-red:hover {
  background-color: #D42920;
}
.app-btn-green {
  border: unset;
  outline: unset;
  background-color: #8DC63F;
  transition: 0.2s;
  color: white;
  padding: 15px 24px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
  cursor: pointer;
}
.app-btn-green:hover {
  background-color: #77AA31;
}
.app-btn-gray {
  border: unset;
  outline: unset;
  box-sizing: border-box;
  border: 1px solid #A2ACB2;
  background-color: transparent;
  transition: 0.2s;
  color: #A2ACB2;
  padding: 7px 20px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
  cursor: pointer;
}
.app-btn-gray:hover {
  border-color: #67879A;
  color: #67879A;
}
.app-largetext, .app-largetext2 {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
.app-largetext .text-14, .app-largetext2 .text-14 {
  margin-top: 0;
}
.app-largetext-mail p {
  margin-top: 21px;
  margin-bottom: 0;
}
.app-largetext-mail a:nth-child(2) {
  margin-bottom: 24px;
}
.app-largetext:after {
  position: absolute;
  content: "";
  height: 84px;
  width: 100%;
  background: linear-gradient(0deg, #F4F7F9 0%, rgba(162, 172, 178, 0) 100%);
  z-index: 1;
  left: 0;
  bottom: 75px;
}
.app-largetext p, .app-largetext2 p {
  overflow: hidden;
  position: relative;
  max-height: 60px;
}
.app-largetext button {
  z-index: 1;
}
.app-largetext.show:after {
  display: none;
}
.app-largetext.show p {
  max-height: unset;
}
.app-info {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 41px;
  display: grid;
  gap: 13px;
}
.app-info p {
  margin: 0;
}
