@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", serif;
}

body {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  min-width: 360px;
}
img{
  width: 100%;
  height: auto;
}
.main-wrapper-app{
  background-color: #f5f5f5;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 0;
}
.container-app {
  width: 626px;
  background: white;
  margin: auto;
  padding: 24px;
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.thank-you {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.text {
  font-family: "IBM Plex Sans", serif;
  font-size: 16px;
  color: #2E2E2E;
  margin-bottom: 20px;
}
.box-image-app{
  background: #F5F5F5;
  border-radius: 8px;
  overflow: hidden;
}
.box-image-app-header{
  padding: 41px 49px 0;
}
.title-box-image{
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 8px;
}
.description-box-image{
  font-size: 12px;
  color: #2E2E2E;
}
.box-qr-wrapper{
  display: flex;
}
.box-qr-wrapper .main-image{
  width: 50%;
}
.box-qr-wrapper .main-image img{
  height: 100%;
  object-fit: cover;
}
.main-qr-and-button{
  width: 200px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-qr-and-button .qr-box{
  padding: 19px;
  border-radius: 12px;
  background: white;
}
.main-qr-and-button .buttons-group-qr{
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.buttons {
  margin-top: 20px;
}

.download-button {
  padding: 5px;
  width: 95px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 1.2px solid #A6A6A6;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .main-qr-and-button {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper-app{
    display: block;
    background: white;
    padding: 40px 25px;
  }
  .container-app{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
  }
  .box-image-app-header{
    padding: 20px 20px 0;
  }
  .box-qr-wrapper {
    position: relative;
    flex-direction: column;
  }
  .box-qr-wrapper .main-image{
    width: 100%;
    margin-top: 8px;
  }
  .box-qr-wrapper .main-image img{
    position: relative;
  }
  .main-qr-and-button .qr-box{
    display: none;
  }
  .buttons-group-qr{
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 20px;
  }
  .download-button{
    padding: 10px;
    width: 100%;
  }
  .download-button img{
    width: auto;
  }
  @supports (-webkit-touch-callout: none) {
    .app-store {
        display: block;
    }
    .google-play {
        display: none;
    }
  }
  @supports not (-webkit-touch-callout: none) {
    .app-store {
        display: none;
    }
    .google-play {
        display: flex;
    }
  }
}


