.qx-buttons-container-wrapper {
  position: fixed;
  left: 280px;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1365px) {
  .qx-buttons-container-wrapper {
    left: 0;
  }
}

@media (max-width: 768px) {
  .qx-buttons-container-wrapper {
    bottom: 65px;
  }
}

.qx-buttons-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .qx-buttons-container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .qx-buttons-container img {
    width: 100%;
  }
}


.qx-title {
  background-color: #b60081;
  color: #fff;
  text-align: center;
  font-size: 26px;
  padding: 10px;
  margin: 0;
}

.qx-subtitle {
  text-align: center;
  font-weight: 600;
  font-size: 19px;
  margin-top: 5px;
}

.qx-usage-content {
  background-color: #ffebff;
  padding: 40px 60px;
}

.qx-usage__img {
  text-align: center;
  margin-bottom: 10px;
}

.qx-box--white {
  background-color: #fff;
  padding: 30px;
}

.qx-box-flex {
  display: flex;
  flex-wrap: wrap;
}

.qx-box-flex > div {
  flex: 1 1 calc(100% / 2);
  box-sizing: border-box;
  position: relative;
  padding-inline: 40px;
}

.qx-box-flex > div:first-child::after {
  display: block;
  content: '';
  height: 100%;
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.qx-box-flex--dotted > div:first-child::after {
  border-right: 4px dotted #c5b5c5;
}

.qx-box-flex--magenta > div:first-child::after {
  border-right: 2px solid #dba3cb;
}

.qx-app-grid {
  display: grid;
	grid-template-columns: 43% 1fr;
  gap: 13px;
  padding-block: 8px;
}

.qx-app-logo {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}

@media (max-width: 768px) {
  .qx-title {
    font-size: 19px;
  }

  .qx-subtitle {
    margin-block: 0 0.5em;
  }

  .qx-usage-content {
    padding: 23px 10px;
  }

  .qx-usage__img {
    width: calc((307 / 750) * 100vw);
    margin-inline: auto;
  }

  .qx-box--white {
    padding: 0 15px 20px;
  }

  .qx-box-flex {
    flex-direction: column;
  }

  .qx-box-flex > div {
    padding-inline: 0;
    padding-block: 20px;
  }

  .qx-box-flex > div:first-child::after {
    width: 100%;
  }

  .qx-box-flex--dotted > div:first-child::after {
    border-right: 0;
    border-bottom: 4px dotted #c5b5c5;
  }

  .qx-box-flex--magenta > div:first-child::after {
    width: calc(100vw - 85px);
    left: 50%;
    transform: translateX(-50%);
  }

  .qx-box-flex--magenta > div:first-child::after {
    border-right: 0;
    border-bottom: 2px solid #dba3cb;
  }

  .qx-app-grid {
    max-width: 322px;
    margin-inline: auto;
  }
}

@media (max-width: 350px) {
  .qx-title {
    font-size: 16px;
    padding: 10px 5px;
  }

  .qx-subtitle {
    font-size: 17px;
  }

  .qx-text {
    font-size: 12px;
  }
}