@import "bootstrap-grid.css";
@font-face {
  font-family: "GothamPro";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/gothampro-regular.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/gothampro-medium.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/gothampro-bold.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: black;
  font-weight: 900;
  src: url("../fonts/gothampro-black.woff2") format("woff2");
}
@font-face {
  font-family: "FactorIO";
  font-style: regular;
  font-weight: 300;
  src: url("../fonts/factor-io-light.woff2") format("woff2");
}
@font-face {
  font-family: "FactorIO";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/factor-io-regular.woff2") format("woff2");
}
@font-face {
  font-family: "FactorIO";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/factor-io-medium.woff2") format("woff2");
}
@font-face {
  font-family: "FactorIO";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/factor-io-bold.woff2") format("woff2");
}
@font-face {
  font-family: "Martian";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/martian-regural.woff2") format("woff2");
}
@font-face {
  font-family: "Martian";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/martian-medium.woff2") format("woff2");
}
@font-face {
  font-family: "Martian";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/martian-bold.woff2") format("woff2");
}
* {
  box-sizing: border-box;
  transition: 0.3s ease;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background-color: #000;
  color: #fff;
}

input, textarea {
  outline: none;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.2;
  font-family: "FactorIO", sans-serif;
  overflow-x: hidden;
  color: #000;
  background-color: #fff;
  margin: 0;
}
body.load-overflow {
  overflow: hidden;
}

.checkbox-item {
  position: relative;
  padding-left: 25px;
}
.checkbox-item input[type=checkbox], .checkbox-item input[type=radio] {
  display: none;
}
.checkbox-item input[type=checkbox] + label, .checkbox-item input[type=radio] + label {
  cursor: pointer;
}
.checkbox-item input[type=checkbox] + label::after, .checkbox-item input[type=radio] + label::after {
  content: "";
  cursor: pointer;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  background-color: transparent;
  left: 0;
  top: 1px;
  transition: 0.3s ease;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}
.checkbox-item input[type=checkbox] + label::after:hover::before, .checkbox-item input[type=radio] + label::after:hover::before {
  background-color: #fff;
}
.checkbox-item input[type=radio] + label::after {
  border-radius: 50%;
}
.checkbox-item input[type=checkbox]:checked + label::after, .checkbox-item input[type=radio]:checked + label::after {
  width: 15px;
  height: 15px;
}
.checkbox-item input[type=checkbox]:checked + label::before, .checkbox-item input[type=radio]:checked + label::before {
  content: "";
  cursor: pointer;
  display: inline-block;
  width: 8px;
  height: 8px;
  left: 3.5px;
  top: 4.5px;
  transition: 0.3s ease;
  border-radius: 3px;
  z-index: 5;
  transition: 0.3s ease;
}
.checkbox-item label {
  font-weight: 500;
  color: #000;
  font-size: 14px;
}

.prelouder {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.prelouder .louder {
  width: 280px;
  height: 20px;
  background-color: #fff;
  position: relative;
  margin-top: 30px;
  overflow: hidden;
}

.prelouder .louder span {
  text-transform: uppercase;
  color: #f4f4f4;
  line-height: 20px;
  display: block;
  z-index: 2;
  position: relative;
  font-size: 13px;
  font-weight: 800;
}

.prelouder .louder::before {
  content: "";
  width: 180px;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1;
  animation: line-animated-wait-prelouder 2s linear infinite;
}

.loaded .prelouder {
  display: none;
}

@keyframes line-animated-wait-prelouder {
  0% {
    left: -180px;
  }
  100% {
    left: 100%;
  }
}
h1, h2, h3, h4, p, input, button, a, textarea {
  margin: 0;
  padding: 0;
  font-family: "FactorIO", sans-serif;
}

section {
  position: relative;
}

img {
  width: 100%;
  pointer-events: none;
  cursor: default;
}
img::-moz-selection {
  background-color: transparent;
  color: #fff;
}
img::selection {
  background-color: transparent;
  color: #fff;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.all-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.page-wrap {
  position: relative;
  width: 100%;
}
.page-wrap .inner-part {
  min-height: 100vh;
  position: relative;
  max-width: 1232px;
  padding: 27px 16px;
  padding-bottom: 38px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-wrap .logo-part {
  max-width: 116px;
}
.page-wrap .footer {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  font-size: 14.9px;
  font-weight: 300;
}
.page-wrap .footer .language {
  color: #0077FF;
  font-weight: 300;
  line-height: 21px;
}
.page-wrap .footer .copyright {
  font-size: 15px;
  line-height: 21px;
  color: #999999;
  color: #0a2540;
}
.page-wrap .footer .copyright a {
  color: #0077FF;
  text-decoration: none;
}
.page-wrap .main-wrap {
  max-width: 460px;
  width: 100%;
  margin: 46px auto;
}
.page-wrap .-block-part {
  background-color: #fff;
  box-shadow: 0px 0px 2px rgba(0, 8, 50, 0.04), 0px 2px 4px rgba(0, 8, 50, 0.04), 0px 3px 12px 1px rgba(0, 8, 50, 0.08);
  background: rgba(255, 255, 255, 0.002);
  border-radius: 8px;
  position: relative;
  width: 100%;
  padding: 25px;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(10, 37, 64, 0.1);
}
.page-wrap .up-part-pd {
  margin-bottom: 30px;
}
.page-wrap .up-part-pd .company-name {
  color: #0A2540;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  margin-bottom: 15px;
}
.page-wrap .up-part-pd .sum {
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #0A2540;
}
.page-wrap .up-part-pd .sum span {
  line-height: 1;
  display: inline-block;
}
.page-wrap .up-part-pd .timer {
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-size: 14.5px;
  line-height: 1;
  color: rgba(10, 37, 64, 0.7);
}
.page-wrap .up-part-pd .timer .time {
  margin-left: 5px;
}
.page-wrap .up-part-pd .timer p {
  color: #0A2540;
  font-weight: 700;
}
.page-wrap .up-part-pd .timer p span {
  color: rgba(10, 37, 64, 0.7);
}
.page-wrap .policy-privacy {
  text-align: center;
  font-size: 12.8px;
  line-height: 1;
  color: rgba(10, 37, 64, 0.55);
}
.page-wrap .policy-privacy a {
  color: rgba(10, 37, 64, 0.7);
  text-decoration: underline;
}
.page-wrap .about-product {
  display: flex;
  align-items: stretch;
  position: relative;
  font-size: 12.8px;
  line-height: 18px;
  color: rgba(10, 37, 64, 0.7);
  padding: 25px;
}
.page-wrap .about-product .img-block {
  min-width: 100px;
  max-width: 100px;
  background-color: rgb(237, 240, 243);
  border-radius: 4px;
  height: auto;
  margin-right: 15px;
  width: 100%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-wrap .about-product .img-block img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.page-wrap .about-product .description {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.page-wrap .about-product .description .name-product {
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 10px;
  font-size: 14.5px;
}
.page-wrap .-saved-cards {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 20px;
  justify-content: space-between;
  cursor: not-allowed;
  opacity: 0.55;
}
.page-wrap .-saved-cards .right-part {
  max-width: 20px;
}
.page-wrap .-saved-cards .left-part {
  display: flex;
  align-items: flex-start;
}
.page-wrap .-saved-cards .left-part .saved-header {
  font-size: 18px;
  line-height: 24px;
  color: #0A2540;
  margin-bottom: 2px;
  font-weight: 500;
}
.page-wrap .-saved-cards .left-part .signature-saved {
  font-size: 15px;
  line-height: 21px;
  color: rgba(10, 37, 64, 0.7);
}
.page-wrap .-saved-cards .icon-part {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: #4FA4A4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.page-wrap .-saved-cards .icon-part img {
  width: 18px;
  margin-top: 1px;
}
.page-wrap .-card-data .header-for-block {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}
.page-wrap .-card-data .header-for-block img {
  width: 40px;
  margin-right: 12px;
}
.page-wrap .-card-data .btn-pay {
  margin-top: 25px;
}
.page-wrap .-card-data .down-d {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.page-wrap .-card-data .srok {
  max-width: 140px;
}
.page-wrap .-card-data .srok .input-d .wrap-d {
  display: flex;
  align-items: center;
}
.page-wrap .-card-data .srok .input-d .wrap-d span {
  margin: 0 4px;
  font-size: 15px;
  line-height: 21px;
  line-height: 1;
  display: block;
  color: #0A2540;
  opacity: 0.55;
  margin-top: 5px;
}
.page-wrap .-card-data .-ccc {
  max-width: 64px;
}
.page-wrap .need-reciept {
  display: flex;
  align-items: center;
  font-size: 14.6px;
  line-height: 21px;
  color: rgba(10, 37, 64, 0.7);
  margin-top: 10px;
}
.page-wrap .need-reciept svg {
  width: 18px;
  margin-right: 6px;
}

.input-d {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.input-d .signature-d {
  font-size: 15px;
  line-height: 1;
  color: rgba(10, 37, 64, 0.7);
  line-height: 21px;
  margin-bottom: 4px;
}
.input-d input {
  border: 1px solid #D4DBE8;
  width: 100%;
  border-radius: 8px;
  height: 36px;
  padding: 2px 13px;
  color: #0a2540;
  font-size: 15px;
  font-weight: 400;
}
.input-d input:focus {
  border-color: #0070F0;
  outline: 1px solid #0070F0;
}
.input-d input::-moz-placeholder {
  font-size: 12.8px;
}
.input-d input::placeholder {
  font-size: 12.8px;
}

.error-d {
  font-size: 12.8px;
  margin-top: 4px;
  color: #f00000;
}

.btn-pay {
  position: relative;
  width: 100%;
  line-height: 42px;
  border: 0;
  outline: 0;
  background-color: #0070F0;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  margin-top: 27px;
  text-align: center;
}
.btn-pay:hover {
  background-color: rgb(0, 102, 219);
}

.-loading-data-wrap .inner-part {
  justify-content: center;
  align-items: center;
}
.-loading-data-wrap .loading-data {
  font-size: 12.8px;
  color: rgba(10, 37, 64, 0.7);
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-anim {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 4px solid #edf0f3;
  border-right: 5px solid #0070F0;
  border-top: 5px solid #0070F0;
  margin-bottom: 16px;
  animation: loading 2s ease infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.-codedata .inner-part {
  justify-content: center;
  align-items: center;
}
.-codedata .confirm-data {
  max-width: 460px;
  position: relative;
  color: #0A2540;
}
.-codedata .confirm-data .up-part-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.-codedata .confirm-data .up-part-code .logo-c {
  max-width: 116px;
}
.-codedata .confirm-data .up-part-code .methods-c {
  max-width: 94px;
  filter: drop-shadow(0 4px 12px rgba(10, 37, 64, 0.1));
}
.-codedata .confirm-data .header-c {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  margin-top: 36px;
}
.-codedata .confirm-data .sum-c {
  font-size: 32px;
  margin: 15px 0;
  line-height: 1;
}
.-codedata .confirm-data .signature-c {
  margin-top: 15px;
  font-size: 14.5px;
  line-height: 18px;
  color: rgba(10, 37, 64, 0.7);
}
.-codedata .confirm-data .decor-illustration {
  border-radius: 8px;
  background-color: rgb(237, 240, 243);
  background-color: #e4f0ff;
  margin: 20px 0;
  padding: 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.-codedata .confirm-data .decor-illustration .notify-veiw {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.14);
  padding: 16px 32px;
  padding-left: 24px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(10, 37, 64, 0.1);
  min-width: 211px;
}
.-codedata .confirm-data .decor-illustration .notify-veiw .header-nv {
  font-weight: 700;
  font-size: 12.8px;
  color: rgba(10, 37, 64, 0.9);
}
.-codedata .confirm-data .decor-illustration .notify-veiw .down-nv {
  margin-top: 10px;
  font-size: 12.8px;
  color: rgba(10, 37, 64, 0.55);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.-codedata .confirm-data .decor-illustration .notify-veiw .down-nv .line-nv {
  width: 100%;
  background-color: #0070F0;
  background-color: #e4f0ff;
  height: 10px;
  margin-left: 10px;
  border-radius: 4px;
}
.-codedata .confirm-data .decor-illustration .decor-circle {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  background-color: transparent;
  position: absolute;
  top: 20px;
  left: calc(50% - 150px);
  border: 70px solid #0070f0;
  opacity: 1;
}
.-codedata .confirm-data .l-header-c {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}
.-codedata .confirm-data .l-header-c.-with-circle {
  display: flex;
  align-items: center;
}
.-codedata .confirm-data .l-header-c.-with-circle .loading-anim {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-bottom: 0;
  margin-left: 10px;
  animation: loading 4s ease infinite;
  border-right: 4px solid #0070F0;
  border-top: 4px solid #0070F0;
}
.-codedata .confirm-data .input-d {
  margin-top: 20px;
  margin-bottom: 0;
}
.-codedata .confirm-data .security {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.-codedata .confirm-data .security img {
  max-width: 226px;
}

.-success .inner-part .main-wrap {
  height: calc(100vh - 260px);
}
.-success .inner-part .main-wrap .up-part-pd {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.-success .inner-part .main-wrap .up-part-pd .company-name {
  margin-top: 32px;
  font-size: 24px;
  width: 100%;
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 0;
  border-bottom: 1px solid #e9ebee;
}
.-success .inner-part .main-wrap .up-part-pd .code-reciept {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 15px;
  color: #0A2540;
}
.-success .inner-part .main-wrap .up-part-pd .code-reciept .signature-code {
  color: rgba(10, 37, 64, 0.7);
}
.-success .inner-part .main-wrap .up-part-pd .code-reciept svg {
  padding-top: 2px;
  opacity: 0.35;
  margin-left: 8px;
  cursor: pointer;
}
.-success .inner-part .main-wrap .up-part-pd .code-reciept svg:hover {
  opacity: 0.55;
}

.alert-modal {
  height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 37, 64, 0.7);
  padding: 8px;
}
.alert-modal .alert-inner {
  max-width: 560px;
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.28);
  border: 1px solid rgba(10, 37, 64, 0.1);
  position: relative;
}
.alert-modal .alert-inner .up-alert {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.alert-modal .alert-inner .up-alert img {
  width: 40px;
}
.alert-modal .alert-inner .up-alert .header-for-block {
  font-weight: 500;
  font-size: 18px;
  margin-left: 12px;
  color: #0A2540;
  line-height: 1;
}
.alert-modal .alert-inner .alert-msg {
  font-size: 18px;
  line-height: 26px;
  color: #0A2540;
  padding-top: 16px;
  border-top: 1px solid #e9ebee;
}
.alert-modal .close {
  max-width: 12px;
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0.55;
  cursor: pointer;
  z-index: 5;
}
.alert-modal .close:hover {
  opacity: 0.7;
}

.notify-input {
  border-radius: 8px;
  margin-top: 16px;
  padding: 16px;
  background-color: #e4f0ff;
  color: #0A2540;
}
.notify-input .alert-header-admin-messege {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #0A2540;
}
.notify-input .text {
  font-size: 14.5px;
  line-height: 21px;
  color: rgba(10, 37, 64, 0.7);
}

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 991px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 768px) {
  /**/
  .page-wrap .about-product {
    padding: 17px;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 480px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 380px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 320px) {
  /**/
}
/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/
}/*# sourceMappingURL=main.css.map */