@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Mabry Pro', 'Space Grotesk', -apple-system, 'Helvetica', 'Calibri', 'Arial', sans-serif;
}

/* Import: Syne */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Nunito Sans, 'Helvetica', 'Calibri', 'Arial', sans-serif;
}

a {
  text-decoration: none;
}

body {
  background-color: #fbfcff;
}

header nav {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.policy p {
  margin: 10px 0;
}

.policy h2 {
  margin: 20px 0;
}

.tutorial-page {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 50px 0;
}

.tutorial-page .description {
  margin: 20px 5px;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  background-color: white;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  padding: 25px;
  -webkit-box-shadow: 0px 0px 4px 4px rgba(172, 172, 172, 0.1);
          box-shadow: 0px 0px 4px 4px rgba(172, 172, 172, 0.1);
}

.tutorial-page .description h1 {
  padding: 30px;
  text-align: center;
  font-size: 35px;
}

.tutorial-page .description p {
  font-size: 17px;
  line-height: 30px;
}

.tutorial-page .description a {
  border-bottom: 1px solid black;
  color: black;
}

.tutorial-page .description ol {
  list-style-type: decimal;
}

.tutorial-page .description ol,
.tutorial-page .description ul {
  list-style: inside;
  margin-top: 20px;
}

.tutorial-page .description ol li,
.tutorial-page .description ul li {
  font-size: 17px;
  line-height: 35px;
}

.tutorial-page .description img {
  border-radius: 10px;
  margin: 20px;
}

.main-checkout .title {
  text-align: center;
}

.main-checkout .title h1 {
  font-size: 26px;
  padding-top: 30px;
  color: #253348;
}

@-webkit-keyframes stretch {
  0%,
  100% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    border-radius: 0;
  }
}

@keyframes stretch {
  0%,
  100% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    border-radius: 0;
  }
}

@-webkit-keyframes fadeInOut {
  50% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
}

@keyframes fadeInOut {
  50% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
}

.checkout-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: auto;
  max-width: 900px;
  padding: 30px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.checkout-page .upgrade-acc {
  max-width: 600px;
  width: 100%;
}

.checkout-page .upgrade-acc .flow.visible {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fadeInOut;
          animation-name: fadeInOut;
}

.checkout-page .upgrade-acc .flow {
  background-color: white;
  padding: 30px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 5px 5px rgba(184, 184, 184, 0.1);
          box-shadow: 0px 0px 5px 5px rgba(184, 184, 184, 0.1);
  min-height: 350px;
  margin: 20px 5px;
}

.checkout-page .upgrade-acc .flow p {
  color: #535353;
}

.checkout-page .upgrade-acc .flow h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.checkout-page .upgrade-acc .flow .collect {
  margin: 20px 0;
}

.checkout-page .upgrade-acc .flow svg {
  vertical-align: middle;
  margin-left: 5px;
  pointer-events: none;
}

.checkout-page .upgrade-acc .flow .next-btn {
  text-align: center;
}

.checkout-page .upgrade-acc .flow .next-btn .continue-btn {
  vertical-align: baseline;
  border: none;
  background-color: #9351f7;
  width: 100%;
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
  padding: 10px;
  font-size: 16px;
  max-width: 200px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.checkout-page .upgrade-acc .flow .next-btn .continue-btn:hover {
  -webkit-transition: 1s ease opacity;
  transition: 1s ease opacity;
  opacity: 0.9;
}

.checkout-page .upgrade-acc .flow .next-btn .continue-btn a {
  color: white;
}

.checkout-page .upgrade-acc .flow ul {
  margin-top: 10px;
  margin-bottom: 40px;
  list-style-type: none;
}

.checkout-page .upgrade-acc .flow ul li {
  margin: 5px 0;
  color: #535353;
}

.checkout-page .note {
  color: #535353;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 5px;
}

.checkout-page .note svg {
  width: 55px;
  vertical-align: middle;
}

.checkout-page .note span {
  font-style: normal;
}

.checkout-page label {
  display: block;
  color: #383838;
  font-weight: bold;
  font-size: 16px;
}

.checkout-page input,
.checkout-page select {
  padding: 10px 10px;
  max-width: 600px;
  width: 100%;
  font-size: 18px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  margin-bottom: 15px;
  outline: none;
}

.checkout-page select {
  font-size: 16px;
}

.checkout-page .country-available,
.checkout-page .country-unavailable {
  font-size: 15px;
  color: #13b86d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout-page .country-available svg,
.checkout-page .country-unavailable svg {
  vertical-align: middle;
}

.checkout-page .country-unavailable {
  color: #b81313;
}

.checkout-page .order-payment {
  max-width: 600px;
  width: 100%;
}

.checkout-page .order-payment .order-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #020c41;
  padding: 5px;
  margin-bottom: 40px;
}

.checkout-page .order-payment .order-summary img {
  display: block;
  border-radius: 5px;
}

.checkout-page .order-payment .order-summary .descr {
  margin: 0 10px;
}

.checkout-page .order-payment .order-summary .descr h2 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #253348;
}

.checkout-page .order-payment .order-summary .descr p {
  color: #535353;
}

.checkout-page .order-payment .order-summary .tt-price {
  color: #05b663;
  font-weight: bold;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 17px;
  margin-right: 15px;
  text-align: right;
}

.checkout-page .order-payment .description {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  padding: 10px;
}

.checkout-page .order-payment .description p {
  margin: 10px 0;
  font-size: 15px;
}

.checkout-page .order-payment .description ul {
  list-style: inside;
  list-style-type: none;
}

.checkout-page .order-payment .description ul li {
  font-size: 15px;
  margin: 10px 0;
}

.checkout-page .order-payment .description ul li::before {
  content: '- ';
  font-weight: bold;
}

.checkout-page .order-payment .description a {
  font-style: normal;
  color: black;
  border-bottom: 1px solid black;
}

.checkout-page .order-payment h1 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #253348;
  margin-bottom: 25px;
}

.checkout-page .order-payment .enter {
  margin-bottom: 30px;
}

.checkout-page .description,
.checkout-page .payment {
  border-radius: 5px;
  margin-bottom: 30px;
}

.checkout-page .description h1,
.checkout-page .payment h1 {
  padding-top: 10px;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #253348;
  margin-bottom: 20px;
}

.checkout-page .description .btns .lock-icon svg,
.checkout-page .payment .btns .lock-icon svg {
  font-size: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-30px, -50%);
          transform: translate(-30px, -50%);
}

.checkout-page .description .btns .sep,
.checkout-page .payment .btns .sep {
  text-align: center;
  font-style: italic;
  color: #b1b1b1;
  margin: 5px 0;
  font-weight: 400;
}

.checkout-page .description .btns .checkout-btn,
.checkout-page .payment .btns .checkout-btn {
  border: none;
  background-color: #06d6a0;
  width: 100%;
  margin-bottom: 10px;
  color: white;
  padding: 13px 0;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
  cursor: pointer;
}

.checkout-page .description .btns .checkout-btn:hover,
.checkout-page .payment .btns .checkout-btn:hover {
  -webkit-transition: 1s ease opacity;
  transition: 1s ease opacity;
  opacity: 0.9;
}

.checkout-page .description .btns .checkout-btn a,
.checkout-page .payment .btns .checkout-btn a {
  color: white;
}

.checkout-page .description .btns .checkout-btn.crypto,
.checkout-page .payment .btns .checkout-btn.crypto {
  background-color: #073faf;
}

.checkout-page .description .btns .checkout-btn.paypal,
.checkout-page .payment .btns .checkout-btn.paypal {
  background-color: #ffc439;
}

.checkout-page .description .btns .checkout-btn.paypal img,
.checkout-page .payment .btns .checkout-btn.paypal img {
  height: 24px;
  vertical-align: middle;
}

.demo-page {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
}

.demo-page .details {
  padding: 10px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 20px 0;
}

.demo-page .details h1 {
  margin: 20px 0;
}

.demo-page .details h3 {
  margin: 10px 0;
}

.demo-page .details ol {
  font-size: 17px;
  list-style: inside;
  list-style-type: decimal;
}

.demo-page .details ol li {
  margin: 5px 0;
}

.demo-page .details ol a {
  border-bottom: 1px solid black;
  color: black;
}

.demo-page .details .note {
  font-style: italic;
}

.demo-page .details .acc {
  font-size: 20px;
  border: 2px dashed #c4c4c4;
  padding: 5px;
  margin: 5px;
  display: inline-block;
}

.demo-page .details .acc span {
  font-size: 18px;
}

.demo-page .details img {
  width: 75%;
  margin: 10px;
}

.demo-page .cta {
  padding: 10px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 20px 0;
  text-align: center;
}

.demo-page .cta p {
  margin: 10px 0;
  font-size: 17px;
}

.demo-page .cta .btn-cta {
  border: none;
  width: 100%;
  display: inline-block;
  width: 250px;
  padding: 12px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: white;
  border-radius: 5px;
  background-color: #121216;
  opacity: 0.9;
}

@media (max-width: 560px) {
  .tutorial-page .description {
    padding: 10px;
  }
  .tutorial-page .description h1 {
    font-size: 30px;
    padding: 30px 10px;
  }
  .tutorial-page .description p {
    font-size: 16px;
  }
  .tutorial-page .description ol li {
    font-size: 16px;
  }
  .tutorial-page .description img {
    width: 275px;
    margin: 20px 0;
  }
  .demo-page .details ol {
    font-size: 16px;
  }
  .demo-page .details .acc {
    font-size: 18px;
  }
  .demo-page .details img {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .checkout-page {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0px;
  }
  .checkout-page .order-summary,
  .checkout-page .order-payment {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media (max-width: 500px) {
  .checkout-page .upgrade-acc .flow {
    padding: 15px;
  }
  .checkout-page .order-payment .order-summary img {
    width: 60px;
    height: 60px;
  }
  .checkout-page .order-payment .order-summary .descr h2 {
    font-size: 18px;
  }
  .checkout-page .order-payment .order-summary .tt-price {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .checkout-page .order-payment .order-summary img {
    display: none;
  }
  .checkout-page .order-payment .order-summary .descr h2 {
    font-size: 18px;
  }
  .checkout-page .order-payment .order-summary .tt-price {
    font-size: 16px;
  }
}
/*# sourceMappingURL=checkout.css.map */