body, html {
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  font-family: 'Philosopher', sans-serif;
}

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

.header {
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background: #52204e;
  overflow: hidden;
  position: relative;
  padding: 15px;
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #52204e), color-stop(100%, #13191f));
  background: linear-gradient(135deg, #52204e 0%, #13191f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52204e', endColorstr='#13191f', GradientType=1);
}

.bg-title {
  position: absolute;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  width: 100%;
}

.bg-title img {
  max-width: 100%;
  height: auto;
}

.bg-particles {
  position: absolute;
}

.bg-cow_left {
  position: absolute;
  left: 10%;
  top: 10%;
  -webkit-animation: cowsAnnimate 5s infinite linear;
          animation: cowsAnnimate 5s infinite linear;
}

@media (max-width: 1440px) {
  .bg-cow_left {
    left: 5%;
  }
}

@media (max-width: 410px) {
  .bg-cow_left {
    display: none;
  }
}

.bg-cow_right {
  position: absolute;
  right: 20%;
  top: 30%;
  -webkit-animation: cowsAnnimate 6s infinite ease-in;
          animation: cowsAnnimate 6s infinite ease-in;
}

@media (max-width: 1440px) {
  .bg-cow_right {
    right: 15%;
  }
}

@media (max-width: 410px) {
  .bg-cow_right {
    display: none;
  }
}

.bg-cow_bottom-left {
  position: absolute;
  left: 25%;
  bottom: 15%;
  -webkit-animation: cowsAnnimate 4s infinite ease;
          animation: cowsAnnimate 4s infinite ease;
}

@media (max-width: 1440px) {
  .bg-cow_bottom-left {
    left: 15%;
  }
}

@media (max-width: 768px) {
  .bg-cow_bottom-left {
    display: none;
  }
}

@-webkit-keyframes cowsAnnimate {
  0% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@keyframes cowsAnnimate {
  0% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

.offer {
  text-align: center;
  color: #fff;
  pointer-events: auto !important;
  padding: 15px;
}

@media (max-width: 768px) {
  .offer__inner img {
    max-width: 150px;
  }
}

.offer__title {
  margin: 30px 15px;
  font-size: 3rem;
}

@media (max-width: 580px) {
  .offer__title {
    font-size: 1.6rem;
  }
}

.offer__description {
  font-size: 2rem;
}

.offer__description a {
  color: #fff;
}

@media (max-width: 580px) {
  .offer__description {
    font-size: 1.125rem;
  }
}

.offer__buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.offer__link {
  width: 250px !important;
  margin: 0 10px !important;
  height: 60px;
  border-radius: 30px;
  border: none;
  background: #0e83e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  margin: 0 auto;
  text-decoration: none;
  font-size: 1.2rem !important;
  cursor: pointer;
  z-index: 100;
  font-size: 16px;
  font-family: 'Philosopher', sans-serif;
  outline: none;
}

.offer__link:first-child {
  background: #ff927d;
}

@media (max-width: 580px) {
  .offer__link:first-child {
    margin-bottom: 15px !important;
  }
}

.settings {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 830px) {
  .settings {
    padding: 0 15px;
  }
}

.settings__title {
  text-align: center;
  margin: 60px 0 30px;
  font-size: 2rem;
}

.settings__description {
  text-align: center;
  font-size: 1.5rem !important;
}

.settings p {
  font-size: 1.15rem;
  line-height: 1.5;
}

.settings .params-description li {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 1.15rem;
}

.settings .typical-list li {
  font-size: 1.15rem;
  line-height: 1.5;
}

.settings h3 {
  font-size: 1.5rem;
  text-align: center;
  margin: 30px 15px;
}

.settings pre {
  overflow-x: scroll;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

.settings img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}

.settings .info {
  margin: 30px 0;
  text-align: center;
  border: 1px solid #bbd8ff;
  background: #ecf5ff;
  border-radius: 5px;
  padding: 0 15px;
}

.settings .info a {
  white-space: nowrap;
}

.buy__wrapper {
  width: 100%;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.buy__old-price {
  margin-bottom: 15px;
  color: #c03d3d;
}

.buy__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  border-radius: 30px;
  width: 100%;
  max-width: 290px;
  background: #0e83e2;
  text-decoration: none;
  outline: none;
  font-size: 1.35rem;
  color: #fff;
  border: none;
  cursor: pointer;
  outline: none;
  font-family: 'Philosopher', sans-serif;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.modal_active {
  bottom: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
  background: rgba(0, 0, 0, 0.9);
}

.modal__form {
  width: 290px;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 15px 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  position: relative;
}

.modal__form label {
  margin: 5px 0;
}

.modal__form label:last-child {
  margin: 0 0 10px;
}

.modal__close {
  width: 20px;
  height: 20px;
  padding: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  outline: none;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  font-family: 'Philosopher', sans-serif;
}

.modal__form-icon {
  margin-bottom: 15px;
  margin: 0 auto 15px;
  width: 80px;
}

.modal__button {
  background: #08ce64;
  height: 60px;
  border-radius: 0 0 30px 30px;
  color: #fff;
  border: none;
  margin: 10px -15px 0;
  font: 1.125rem 'Philosopher', sans-serif;
  width: calc(100% + 30px);
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.modal__button:hover {
  -webkit-transition: .3s;
  transition: .3s;
  background: #0e83e2;
}

.modal__form-input {
  border: none;
  font: 1.125rem 'Philosopher', sans-serif;
  padding: 0;
  margin: 30px;
  text-align: center;
  outline: none;
}

.modal__form-price {
  text-align: center;
  margin-top: 30px;
  font-size: 1.225rem;
  color: #07ce64;
}

.sub-page {
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background: #52204e;
  overflow: hidden;
  position: relative;
  padding: 15px;
  background: url("/fake-order-lp/img/bg-subpage.png") center center no-repeat;
}

/* desert scheme ported from vim to google prettify */
pre.prettyprint {
  display: block;
  background-color: #333;
}

pre .nocode {
  background-color: none;
  color: #000;
}

pre .str {
  color: #ffa0a0;
}

/* string  - pink */
pre .kwd {
  color: #f0e68c;
  font-weight: bold;
}

pre .com {
  color: #87ceeb;
}

/* comment - skyblue */
pre .typ {
  color: #98fb98;
}

/* type    - lightgreen */
pre .lit {
  color: #cd5c5c;
}

/* literal - darkred */
pre .pun {
  color: #fff;
}

/* punctuation */
pre .pln {
  color: #fff;
}

/* plaintext */
pre .tag {
  color: #f0e68c;
  font-weight: bold;
}

/* html/xml tag    - lightyellow */
pre .atn {
  color: #bdb76b;
  font-weight: bold;
}

/* attribute name  - khaki */
pre .atv {
  color: #ffa0a0;
}

/* attribute value - pink */
pre .dec {
  color: #98fb98;
}

/* decimal         - lightgreen */
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
  margin-top: 0;
  margin-bottom: 0;
  color: #AEAEAE;
}

/* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 {
  list-style-type: none;
}

/* Alternate shading for lines */
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8,
li.L9 {
  list-style-type: decimal !important;
  background: #333333 !important;
}

@media print {
  pre.prettyprint {
    background-color: none;
  }
  pre .str,
  code .str {
    color: #060;
  }
  pre .kwd,
  code .kwd {
    color: #006;
    font-weight: bold;
  }
  pre .com,
  code .com {
    color: #600;
    font-style: italic;
  }
  pre .typ,
  code .typ {
    color: #404;
    font-weight: bold;
  }
  pre .lit,
  code .lit {
    color: #044;
  }
  pre .pun,
  code .pun {
    color: #440;
  }
  pre .pln,
  code .pln {
    color: #000;
  }
  pre .tag,
  code .tag {
    color: #006;
    font-weight: bold;
  }
  pre .atn,
  code .atn {
    color: #404;
  }
  pre .atv,
  code .atv {
    color: #060;
  }
}
/*# sourceMappingURL=style.css.map */