/* common border radius */
/* disable text selection */
/* common border radius */
/* disable text selection */
.section.section--top {
  text-align: center;
}
.section.section--top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 69rem;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section.section--top .container .left-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 600px) {
  .section.section--top .container .left-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.section.section--top .container .left-col h1 {
  text-align: left;
}
@media screen and (max-width: 600px) {
  .section.section--top .container .left-col h1 {
    text-align: center;
  }
}
.section.section--top .container .right-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17.2rem;
          flex: 0 0 17.2rem;
  width: 17.2rem;
}
@media screen and (max-width: 600px) {
  .section.section--top .container .right-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.section.section--top .container .right-col a {
  display: inline-block;
  width: 17.2rem;
  font-size: 0;
}
.section.section--top .container .right-col a svg {
  color: var(--violet-accent);
  width: 100%;
}

.section.section--order-info {
  padding: 2rem 0;
}
.section.section--order-info .container {
  max-width: 69rem;
}

.payment-info {
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid white;
  background: white;
}
.payment-info.payment-info--success {
  border-color: var(--green-accent);
}
.payment-info.payment-info--success p.title {
  color: var(--green-accent, #55A471);
}
.payment-info.payment-info--failed {
  border-color: var(--red-accent);
}
.payment-info.payment-info--failed p.title {
  color: var(--red-accent, #55A471);
}
.payment-info p.title {
  font-family: var(--albra-grotesk);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}
.payment-info .text p {
  margin: 0;
  color: var(--black, #333);
  font-family: var(--albra-grotesk);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.payment-info .text p a {
  color: var(--black);
}
.payment-info .text p a:hover {
  text-decoration: none;
}

.order-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.order-info .left-col,
.order-info .right-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 600px) {
  .order-info .left-col,
  .order-info .right-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.order-info .left-col p.title,
.order-info .right-col p.title {
  color: var(--black, #333);
  font-family: var(--albra-grotesk);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2; /* 120% */
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 600px) {
  .order-info .left-col p.title,
  .order-info .right-col p.title {
    margin-bottom: 1.5rem;
  }
}
.order-info .right-col {
  text-align: right;
}
@media screen and (max-width: 600px) {
  .order-info .right-col {
    text-align: left;
  }
}

.order-info__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order-info__table-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.order-info__table-col.order-info__table-col--right {
  text-align: right;
}
.order-info__table-col p {
  margin: 0;
  color: var(--black, #333);
  font-family: var(--albra-grotesk);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}