.buyInApp {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  padding: 15px 20px;
  margin: 0 auto 30px;
  background: #FFF2CF;
  border-radius: 8px;
  color: #3E2A03;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.buyInApp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 900px) {
  .buyInApp {
    width: calc(100% - 20px);
    padding: 15px 10px 20px;
  }
}

@media (max-width: 600px) {
  .buyInApp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.buyInApp_in-checkout {
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
}

.buyInApp p {
  margin-bottom: 0;
}

.buyInApp__btn {
  display: block;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  padding: 0.4em 1em 0.7em;
  font-size: 20px;
}

@media (max-width: 600px) {
  .buyInApp__btn {
    width: 100%;
    text-align: center;
  }
}

.buyInApp .p-title {
  position: relative;
  color: #3E2A03;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.buyInApp .p-title .icon {
  position: relative;
  top: 3px;
  margin-right: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 600px) {
  .buyInApp .p-title {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.buyInApp .p-btn {
  margin-left: auto;
  position: relative;
}

.buyInApp .p-btn .icon_google {
  position: relative;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  margin-right: 3px;
}

.buyInApp .p-btn .icon_apple {
  position: relative;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  margin-right: 0px;
}

@media (max-width: 600px) {
  .buyInApp .p-btn {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

.icon {
  display: inline-block;
}

.icon_alert-circle {
  --size: 20px;
  height: var(--size);
  width: var(--size);
  background: url(/assets/images/alert-circle.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.icon_google {
  --size: 27px;
  width: var(--size);
  height: var(--size);
  background: url(/assets/images/google-play.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.icon_apple {
  --size: 26px;
  width: var(--size);
  height: var(--size);
  background: url(/assets/images/apple.png) no-repeat;
  background-size: contain;
  background-position: center;
}
/*# sourceMappingURL=buyInApp.css.map */