::selection {
  background: #8B58C9;
  color: #fff;
}

::-moz-selection {
  background: #8B58C9;
  color: #fff;
}

* ::-webkit-input-placeholder {
  color: #bbbbbb !important;
  font-weight: 300 !important;
  font-size: 14px !important;
}

* ::-moz-placeholder {
  color: #bbbbbb !important;
  font-weight: 300 !important;
  font-size: 14px !important;
}

* {
  -moz-placeholder-color: #bbbbbb !important;
  -moz-placeholder-font-weight: 300 !important;
  -moz-placeholder-font-size: 14px !important;
}

* {
  -ms-input-placeholder-color: #bbbbbb !important;
  -ms-input-placeholder-font-weight: 300 !important;
  -ms-input-placeholder-font-size: 14px !important;
}

@media (max-width: 575.98px) {
  * ::-webkit-input-placeholder {
    line-height: 24px !important;
    font-size: 14px !important;
  }
  * ::-moz-placeholder {
    line-height: 24px !important;
    font-size: 14px !important;
  }
  * {
    -moz-placeholder-line-height: 24px !important;
    -moz-placeholder-font-size: 14px !important;
  }
  * {
    -ms-input-placeholder-line-height: 24px !important;
    -ms-input-placeholder-font-size: 14px !important;
  }
}

input:focus, input:after, input:before, select:focus, select:after, select:before, label:focus, label:after, label:before, button:focus, button:after, button:before, textarea:focus, textarea:after, textarea:before {
  outline: none !important;
}

html, body {
  background: #ffffff;
  color: #333333;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  position: relative;
}

.container {
  max-width: 1440px;
}

a {
  transition: color 0.2s ease;
  text-decoration: none;
}


.sticky {
  position: sticky;
}

.mw-100 {
  max-width: 100%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(80, 130, 230, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(80, 130, 230, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(80, 130, 230, 0);
  }
}

.text-decoration-underline {
  text-decoration: underline;
}

button:disabled, button[disabled] {
  user-select: none;
  pointer-events: none;
  cursor: default;
}

input:read-only {
  user-select: none !important;
  pointer-events: none !important;
  background: #ffffff !important;
  box-shadow: inset 1px 0 0 #dddddd, inset 0 1px 0 #dddddd, inset 0 -1px 0 #dddddd, inset -1px 0 0 #dddddd !important;
}

@media (max-width: 575.98px) {
  input {
    font-size: 16px !important;
  }
}

@media (max-width: 575.98px) {
  select, textarea {
    font-size: 16px !important;
  }
}

.custom-label {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8B58C9;
  margin-bottom: 10px;
}

.switch {
  display: block;
  padding-bottom: 10px;
}

.switch .switch__wrap {
  display: inline-block;
  position: relative;
  margin: 0px;
  font-size: 14px;
  color: #333333;
  line-height: 28px;
}

.switch .switch__wrap .switch__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  opacity: 0;
  z-index: 0;
}

.switch .switch__wrap .switch__label {
  display: inline-block;
  padding: 0 0 0 55px;
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  color: #333333;
}

.switch .switch__wrap .switch__label:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 42px;
  height: 17px;
  background-color: #aaaaaa;
  border-radius: 14px;
  z-index: 1;
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch .switch__wrap .switch__label:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 2px;
  width: 13px;
  height: 13px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: left, background-color;
}

.switch .switch__wrap .switch__input:checked + .switch__label:before {
  background-color: #279fb9;
}

.switch .switch__wrap .switch__input:checked + .switch__label:after {
  left: 27px;
  background-color: #fff;
}

.radio-form .custom-control-label {
  font-style: italic !important;
  font-weight: 300;
  font-size: 13px;
  line-height: 24px;
  color: #333333;
}

.radio-form .custom-control-input ~ .custom-control-label::before {
  background: #FFFFFF;
  border: 1px solid #dddddd;
  position: absolute;
  top: .25rem;
  left: -1.5rem;
  display: block;
  width: 15px;
  height: 15px;
}

.radio-form .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -4 8 8"%3e%3ccircle r="3" fill="%23279FB9"/%3e%3c/svg%3e');
}

.radio-form .custom-control-input:checked ~ .custom-control-label::before {
  color: #ffffff;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}

.checkbox-form .custom-control-label {
  font-weight: normal;
  font-size: 12px;
  line-height: 22px;
  color: #333333;
}

.checkbox-form .custom-control-label::before {
  border: 1px solid #dddddd;
  width: 14px;
  height: 14px;
  border-radius: 0;
}

.checkbox-form .custom-control-label::after {
  position: absolute;
  top: 4px;
  left: -17px;
  display: block;
  width: 14px;
  height: 14px;
  content: '';
  background: no-repeat;
}

.checkbox-form .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 5.13636L4.18182 8.31818L11 1.5" stroke="%23279FB9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
}

.checkbox-form .custom-control-input:checked ~ .custom-control-label::before {
  color: #ffffff;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}


.custom-select {
  padding-left: 15px;
  background: url("/upload/landings/poezda/sources/main/img/custom-select.png") no-repeat right 1rem center #ffffff;
}

.form-group .input-password-type .input-group-text {
  background: #ffffff;
  box-shadow: inset 1px 0 0 transparent, inset 0 1px 0 #dddddd, inset 0 -1px 0 #dddddd, inset -1px 0 0 #dddddd !important;
  transition: box-shadow 0.2s ease;
  border: 0;
  border-radius: 0px 2px 2px 0px;
}

.form-group .input-password-type .input-group-text .edit {
  cursor: pointer;
  width: 14px;
  height: 9px;
  background: url("/upload/landings/poezda/sources/main/img/input/icon-eye-closed.png") no-repeat center center;
}

.form-group .input-password-type .input-group-text .edit.active {
  cursor: pointer;
  width: 14px;
  height: 9px;
  background: url("/upload/landings/poezda/sources/main/img/input/icon-eye-opened.png") no-repeat center center;
}

.form-group .input-password-type .input-group-text.active {
  box-shadow: inset 1px 0 0 transparent, inset 0 1px 0 #8B58C9, inset 0 -1px 0 #8B58C9, inset -1px 0 0 #8B58C9 !important;
  transition: box-shadow 0.2s ease;
}


@media (max-width: 575.98px) {
  .main .main--info {
    margin-top: -30px;
  }
}

@media (max-width: 575.98px) {
  .main .main--info .more {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.advantages {
  padding: 50px 0;
  background: #FFFFFF;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 575.98px) {
  .advantages {
    padding: 20px 0 10px 0;
  }
}

.advantages h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #333333;
  padding: 0;
  margin: 0;
}

@media (max-width: 575.98px) {
  .advantages h2 {
    padding: 20px 0;
  }
}

.advantages .advantages-all, .advantages .advantages-delivery, .advantages .advantages-gaurante {
  position: relative;
  display: block;
}

@media (max-width: 575.98px) {
  .advantages .advantages-all, .advantages .advantages-delivery, .advantages .advantages-gaurante {
    padding: 20px 0;
  }
}

.advantages .advantages-all--title, .advantages .advantages-delivery--title, .advantages .advantages-gaurante--title {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
  position: relative;
  padding-left: 50px;
}
.advantages .advantages-all--title:hover, .advantages .advantages-delivery--title:hover, .advantages .advantages-gaurante--title:hover {
  color: #5082E6;
}

@media (max-width: 575.98px) {
  .advantages .advantages-all--title, .advantages .advantages-delivery--title, .advantages .advantages-gaurante--title {
    padding-left: 50px;
  }
}

.advantages .advantages-all--title::after, .advantages .advantages-delivery--title::after, .advantages .advantages-gaurante--title::after {
  position: absolute;
}

.advantages .advantages-all--title.active, .advantages .advantages-delivery--title.active, .advantages .advantages-gaurante--title.active {
  color: #5082E6;
}

.advantages .advantages-all--description, .advantages .advantages-delivery--description, .advantages .advantages-gaurante--description {
  margin-top: 50px;
  background: #ffffff;
  position: absolute;
  padding: 0px;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.05);
}
.advantages .advantages-all--description p, .advantages .advantages-delivery--description p, .advantages .advantages-gaurante--description p {
  padding: 17px 17px 17px 43px;
}
@media (max-width: 575.98px) {
  .advantages .advantages-all--description, .advantages .advantages-delivery--description, .advantages .advantages-gaurante--description {
    margin-top: 5px;
    position: relative;
    box-shadow: none;
    padding: 0px;
  }
  .advantages .advantages-all--description p, .advantages .advantages-delivery--description p, .advantages .advantages-gaurante--description p {
    padding: 17px 17px 0px 51px;
  }
}

.advantages .advantages-all--description p, .advantages .advantages-delivery--description p, .advantages .advantages-gaurante--description p {
  position: relative;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}

.advantages .advantages-all--description p::before, .advantages .advantages-delivery--description p::before, .advantages .advantages-gaurante--description p::before {
  left: 15px;
  position: absolute;
  content: url("/upload/landings/poezda/sources/main/img/advantages/paragraph.png");
}

@media (max-width: 575.98px) {
  .advantages .advantages-all--description p::before, .advantages .advantages-delivery--description p::before, .advantages .advantages-gaurante--description p::before {
    left: 10px;
    content: none;
  }
}

.advantages .advantages-all--title::after {
  left: 15px;
  top: 0;
  background-image: url("/upload/landings/poezda/sources/main/img/advantages/all.png");
  background-size: 21px 22px;
  display: inline-block;
  width: 21px;
  height: 22px;
  content: "";
}

@media (max-width: 575.98px) {
  .advantages .advantages-all--title::after {
    left: 5px;
    top: 0;
    background-image: url("/upload/landings/poezda/sources/main/img/advantages/all.png");
    background-size: 20px 20px;
    display: inline-block;
    width: 20px;
    height: 20px;
    content: "";
  }
}

.advantages .advantages-delivery--title::after {
  left: -1px;
  top: 0;
  background-image: url("/upload/landings/poezda/sources/main/img/advantages/delivery.png");
  background-size: 37px 23px;
  display: inline-block;
  width: 37px;
  height: 23px;
  content: "";
}

@media (max-width: 575.98px) {
  .advantages .advantages-delivery--title::after {
    left: 0px;
    top: 0;
    background-image: url("/upload/landings/poezda/sources/main/img/advantages/delivery.png");
    background-size: 32px 20px;
    display: inline-block;
    width: 32px;
    height: 20px;
    content: "";
  }
}

.advantages .advantages-gaurante--title::after {
  left: 10px;
  top: -4px;
  background-image: url("/upload/landings/poezda/sources/main/img/advantages/gaurante.png");
  background-size: 25px 29px;
  display: inline-block;
  width: 25px;
  height: 29px;
  content: "";
}

@media (max-width: 575.98px) {
  .advantages .advantages-gaurante--title::after {
    left: 5px;
    top: 0px;
    background-image: url("/upload/landings/poezda/sources/main/img/advantages/gaurante.png");
    background-size: 20px 23px;
    display: inline-block;
    width: 20px;
    height: 23px;
    content: "";
  }
}

.gift {
  padding: 60px 0;
  background: #ffffff;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.gift .title-pc {
  font-weight: 900;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333333;
  padding-bottom: 70px;
}

@media (max-width: 575.98px) {
  .gift .title-pc {
    display: none;
  }
}

.gift .title-mobile {
  display: none;
}

@media (max-width: 575.98px) {
  .gift .title-mobile {
    display: block;
    font-weight: 900;
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 30px;
  }
}

.gift p {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
}

.gift--rules {
  margin-top: 40px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #444444;
  padding-left: 60px;
  position: relative;
}

@media (max-width: 575.98px) {
  .gift--rules {
    padding-left: 45px;
  }
}

.gift--rules::after {
  position: absolute;
  left: 0;
  top: -8px;
  content: url("/upload/landings/poezda/sources/main/img/icon-rules.png");
}

@media (max-width: 575.98px) {
  .gift--rules::after {
    left: 0;
    top: 0px;
    content: url("/upload/landings/poezda/sources/main/img/icon-rules-m.png");
  }
}

.gift--rules p {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #444444;
}

.gift--btns {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
}

@media (max-width: 575.98px) {
  .gift--btns {
    flex-direction: column;
  }
}

.gift--btns .subscribe {
  width: auto;
  display: flex;
  text-align: center;
  margin-right: 15px;
}

@media (max-width: 575.98px) {
  .gift--btns .subscribe {
    margin-right: 0;
    margin-bottom: 25px;
  }
}

.gift--btns .subscribe a {
  padding: 20px 75px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1), 1px 1px 10px rgba(123, 97, 255, 0.3);
  background: linear-gradient(90deg, #7D3AC2 0%, #457CE7 100%);
  white-space: nowrap;
}

.gift--btns .subscribe a:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1), 1px 1px 10px rgba(82, 57, 209, 0.7);
}

.gift--btns .subscribe a:active {
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 575.98px) {
  .gift--btns .subscribe a {
    padding: 20px;
    width: 100%;
  }
}

.gift--btns .more {
  width: auto;
  display: flex;
  text-align: center;
  margin-left: 15px;
}

@media (max-width: 575.98px) {
  .gift--btns .more {
    margin-left: 0;
  }
}

.gift--btns .more a {
  padding: 20px 75px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #30B683;
  background: #ffffff;
  box-shadow: inset 1px 0 0 #30B683, inset 0 1px 0 #30B683, inset 0 -1px 0 #30B683, inset -1px 0 0 #30B683;
  white-space: nowrap;
}

.gift--btns .more a:hover {
  background: #30B683;
  color: #ffffff;
}

.gift--btns .more a:active {
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 575.98px) {
  .gift--btns .more a {
    padding: 20px;
    width: 100%;
  }
}

.gift--img {
  position: relative;
}

@media (max-width: 575.98px) {
  .gift--img {
    margin-bottom: 50px;
  }
}

.gift--img img {
  max-width: 100%;
  z-index: 22;
}

.gift--img .XiaomiRedmi, .gift--img .XiaomiAmazfit, .gift--img .JBLFlip {
  border-radius: 50px;
  position: absolute;
  width: 36px;
  height: 36px;
  background: #5082E6;
  z-index: 33;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  user-select: none;
}

.gift--img .XiaomiRedmi.active, .gift--img .XiaomiAmazfit.active, .gift--img .JBLFlip.active {
  transform: rotate(0deg);
  transition: all 0.2s ease;
  background: #ffffff;
  color: #5082E6;
  animation: none;
}

.gift--img .XiaomiRedmi {
  left: 29%;
  top: 57%;
}

@media (max-width: 575.98px) {
  .gift--img .XiaomiRedmi {
    left: 17%;
    top: 44%;
  }
}

.gift--img .XiaomiAmazfit {
  right: 13%;
  top: 35%;
}

@media (max-width: 575.98px) {
  .gift--img .XiaomiAmazfit {
    right: 16%;
    top: 32%;
  }
}

.gift--img .JBLFlip {
  left: 66%;
  bottom: 14%;
}

@media (max-width: 575.98px) {
  .gift--img .JBLFlip {
    left: 46%;
    bottom: 18%;
  }
}

.gift--img .pulse {
  cursor: pointer;
  box-shadow: 0 0 0 rgba(80, 130, 230, 0.6);
  animation: pulse 2s infinite;
}

.gift--img:hover {
  animation: none;
}

.gift--img .XiaomiRedmiInfo, .gift--img .XiaomiAmazfitInfo, .gift--img .JBLFlipInfo {
  padding: 7px 19px;
  border-radius: 10px;
  position: absolute;
  width: 210px;
  height: 58px;
  background: #ffffff;
  z-index: 34;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

@media (max-width: 575.98px) {
  .gift--img .XiaomiRedmiInfo, .gift--img .XiaomiAmazfitInfo, .gift--img .JBLFlipInfo {
    width: 130px;
    height: 58px;
    padding: 7px 12px;
    font-size: 16px;
    line-height: 22px;
  }
}

.gift--img .XiaomiRedmiInfo {
  left: 16%;
  top: 46%;
}

@media (max-width: 575.98px) {
  .gift--img .XiaomiRedmiInfo {
    left: 1%;
    top: 21%;
  }
}

.gift--img .XiaomiAmazfitInfo {
  right: 1%;
  top: 24%;
}

@media (max-width: 575.98px) {
  .gift--img .XiaomiAmazfitInfo {
    right: 1%;
    top: 9%;
  }
}

.gift--img .JBLFlipInfo {
  left: 53%;
  bottom: 22%;
}

@media (max-width: 575.98px) {
  .gift--img .JBLFlipInfo {
    left: 30%;
    bottom: 33%;
  }
}

.getpdf {
  background: #fff;
  padding: 60px 0;
}

.getpdf .title {
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: .035em;
  text-transform: uppercase;
  color: #333;
  padding-bottom: 5px;
}

@media (max-width: 992px) {
  .getpdf .title {
    text-align: center;
  }
}

.getpdf .subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #333;
  text-align: left;
}

@media (max-width: 992px) {
  .getpdf .subtitle {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .getpdf .subtitle {
    text-align: center;
    padding-bottom: 15px;
  }
}

.getpdf .bnt-subscribe {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  border-radius: 40px;
  background: linear-gradient(180deg, #568CF7 0%, #5082E6 44.27%);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1), 1px 1px 10px rgba(69, 122, 230, 0.3);
  padding: 11px 5px;
  display: inherit;
  width: 100%;
  border: 0;
}

.getpdf .bnt-subscribe:after {
  content: url(/upload/landings/poezda/sources/main/img/logo-download.png);
  margin-top: 10px;
  position: relative;
  top: 3px;
  margin-left: .5em;
}

@media (max-width: 992px) {
  .getpdf .bnt-subscribe {
    margin-top: 0;
  }
}

@media (max-width: 580px) {
  .getpdf .bnt-subscribe {
    margin-top: 20px;
  }
}


.variables-subs .shadow {
  box-shadow: none !important;
}

.variables-subs .description p {
  display: block;
  font-style: italic;
  font-weight: normal;
  font-size: 24px;
  line-height: 34px;
  text-align: center;
  color: #333333;
  margin: auto;
  padding-bottom: 10px;
  padding-top: 30px;
}

@media (max-width: 575.98px) {
  .variables-subs .description p {
    padding-top: 0px;
    font-size: 18px;
    line-height: 26px;
  }
}

.variables-subs .description .info {
  display: block;
  text-align: center;
  font-weight: 300;
  font-size: 12px;
  line-height: 21px;
  color: #FFFFFF;
}

.variables-subs h1 {
  font-weight: 900;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333333;
  padding-bottom: 80px;
}

@media (max-width: 575.98px) {
  .variables-subs h1 {
    font-weight: 900;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #333333;
    padding-bottom: 20px;
  }
}

.variables-subs .tarifs .tarifs__wrap {
  min-height: 520px;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 1366px) {
  .variables-subs .tarifs .tarifs__wrap {
    min-height: 856px;
  }
}

@media (max-width: 1024px) {
  .variables-subs .tarifs .tarifs__wrap {
    min-height: 1024px;
  }
}

@media (max-width: 575.98px) {
  .variables-subs .tarifs .tarifs__wrap {
    margin-bottom: 40px;
    min-height: auto;
  }
}

.variables-subs .tarifs__wrap .price {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  padding-bottom: 30px;
}

.variables-subs .tarifs__wrap .old-price {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding-bottom: 0px;
  text-decoration: line-through;
  color: #AEAEAE;
}

.variables-subs .tarifs__wrap button {
  width: calc(100% - 50px);
  padding: 19px 25px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #7D3AC2 0%, #457CE7 100%);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1), 1px 1px 10px rgba(82, 57, 209, 0.7);
}

.variables-subs .tarifs__wrap button:hover, .variables-subs .tarifs__wrap button:active, .variables-subs .tarifs__wrap button:focus {
  background: linear-gradient(90deg, #7D3AC2 0%, #457CE7 100%);
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .variables-subs .tarifs__wrap button {
    width: calc(100% - 20px);
    padding: 15px 25px;
  }
}

.variables-subs .tarifs .merchant__name, .variables-subs .tarifs .prince__name, .variables-subs .tarifs .king__name {
  padding: 19px;
  font-weight: 900;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.variables-subs .tarifs__wrap__description {
  display: inline-block;
  margin: 30px 0px;
  background: #EFEFEF;
  border-radius: 20px;
  padding: 7px 20px;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #333333;
}

.variables-subs .tarifs__wrap__ul {
  padding: 40px 15px 15px;
}

.variables-subs .tarifs__wrap__ul ul li {
  font-weight: 300;
  padding: 0 0 25px 0;
  font-size: 14px;
  line-height: 18px;
  background-position: 0px 3px;
  padding-left: 27px;
  list-style: none;
  margin: 0;
}

.variables-subs .tarifs__wrap__ul ul li.no {
  list-style: none;
}

.variables-subs .tarifs .merchant__name, .variables-subs .tarifs .prince__name, .variables-subs .tarifs .king__name {
  border-radius: 20px 20px 0 0;
}

.variables-subs .tarifs .merchant__name {
  background: #E5B34B;
}

.variables-subs .tarifs .prince__name {
  background: #8B58C9;
}

.variables-subs .tarifs .king__name {
  background: #30B683;
}

.variables-subs .tarifs__wrap__ul {
  padding: 20px 0 0 0;
}

.variables-subs .tarifs__wrap__ul ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  padding: 0px 0px 10px 40px;
  background-position: 0px 2px;
  background: url(/upload/landings/poezda/sources/main/img/ul-small.png) no-repeat left top;
  margin-bottom: 10px;
}

.variables-subs .tarifs__wrap__ul ul li.no {
  background: url(/upload/landings/poezda/sources/main/img/ul-small-no.png) no-repeat left top;
}

.variables-subs .tarifs__wrap__content {
  padding: 25px 50px;
}

@media (max-width: 575.98px) {
  .variables-subs .tarifs__wrap__content {
    padding: 25px 20px;
  }
}

.variables-subs .tarifs__wrap__description {
  margin-top: 0px !important;
  margin-bottom: 15px !important;
}

.variables-subs .tarifs__wrap .price {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #333333;
  padding: 10px 0 20px;
}

.variables-subs .tarifs__wrap .old-price {
  color: #aeaeae;
  font-size: 14px;
  font-weight: 400;
}

.variables-subs .tarifs__wrap .typesub-info {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #333333;
}


.video .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.video .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 250;
}

.mainfaq {
  padding: 50px 0;
}

.mainfaq h4 {
  font-weight: 900;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333333;
  padding-bottom: 50px;
}

@media (max-width: 575.98px) {
  .mainfaq h4 {
    font-size: 24px;
    line-height: 30px;
  }
}

.release h4 {
  font-weight: 900;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333333;
  padding-bottom: 50px;
}

@media (max-width: 575.98px) {
  .release h4 {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 20px;
  }
}


/*# sourceMappingURL=style.css.map */