@charset "UTF-8";
::selection {
  background: #F7CC3E;
  color: #fff;
}

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

* ::-webkit-input-placeholder {
  color: #AFAFAF !important;
  font-weight: normal !important;
  font-size: 13px !important;
}

* ::-moz-placeholder {
  color: #AFAFAF !important;
  font-weight: normal !important;
  font-size: 13px !important;
}

* {
  -moz-placeholder-color: #AFAFAF !important;
  -moz-placeholder-font-weight: normal !important;
  -moz-placeholder-font-size: 13px !important;
}

* {
  -ms-input-placeholder-color: #AFAFAF !important;
  -ms-input-placeholder-font-weight: normal !important;
  -ms-input-placeholder-font-size: 13px !important;
}

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

*:focus, *:after, *:before, 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;
  box-shadow: none !important;
}

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: #F7CC3E;
  margin-bottom: 10px;
}

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

@media (max-width: 575.98px) {
  .switch {
    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: #ffffff;
}

@media (max-width: 575.98px) {
  .switch .switch__wrap .switch__label {
    font-size: 12px;
    line-height: 14px;
  }
}

.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: #F7CC3E;
}

.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+xmlcharset=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;
}

.form-control {
  padding: 0 15px;
  height: 32px;
  border: 0;
  box-shadow: inset 1px 0 0 #dddddd, inset 0 1px 0 #dddddd, inset 0 -1px 0 #dddddd, inset -1px 0 0 #dddddd !important;
  border-radius: 2px;
}

.form-control:focus {
  box-shadow: inset 1px 0 0 #F7CC3E, inset 0 1px 0 #F7CC3E, inset 0 -1px 0 #F7CC3E, inset -1px 0 0 #F7CC3E !important;
}

.form-control.novalid {
  box-shadow: inset 1px 0 0 #EB5757, inset 0 1px 0 #EB5757, inset 0 -1px 0 #EB5757, inset -1px 0 0 #EB5757 !important;
}

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

html, body {
  background: #f6f6f6;
  color: #333333;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
}

.container {
  max-width: 1440px;
}

.btn-primary {
  background: #F7CC3E;
  font-weight: 800;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  border-radius: 10px;
  border: none;
  padding: 20px 35px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 4px 10px rgba(247, 204, 62, 0.08);
}

.btn-primary:hover {
  background: #f8da73;
  color: #333333;
}

.btn-primary:active, .btn-primary:focus {
  background: #eeb90a !important;
  color: #333333 !important;
}

.scrolltop {
  display: none;
  transition: box-shadow 0.1s linear;
  position: relative;
  width: 60px;
  height: 60px;
  background: rgba(229, 84, 11, 0.8);
  position: fixed;
  bottom: 77px;
  right: 40px;
  border-radius: 50px;
  box-shadow: 0 0 0 10px rgba(229, 84, 11, 0.4);
  cursor: pointer;
}

.scrolltop:after {
  content: url("../img/arr-top.png");
  position: absolute;
  top: 15px;
  left: 18px;
}

.scrolltop:hover {
  background: #e5540b;
  box-shadow: 0 0 0 15px rgba(229, 84, 11, 0.6);
}

.bg-blue {
  background: #5678BF;
}

.bg-orange {
  background: #E5540B;
}

.bg-turquoise {
  background: #85C6CC;
}

.first {
  padding: 80px 0 50px 0;
  background: url("/upload/landings/moto/main/img/first/bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 575.98px) {
  .first {
    padding: 60px 0 30px 0;
    background: url("/upload/landings/moto/main/img/first/bg-m.png");
    background-size: cover;
  }
}

.first h1 {
  font-weight: 800;
  font-size: 53px;
  line-height: 63px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-bottom: 8px;
}
@media (max-width: 1280px) {
  .first h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 58px;

  }
}
@media (max-width: 575.98px) {
  .first h1 {
    font-size: 20px;
    line-height: 27px;
    padding-bottom: 5px;
  }
}

.first h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-bottom: 45px;
}
@media (max-width: 1280px) {
  .first h4 {
    padding-bottom: 20px;
    font-size: 17px;
    line-height: 17px;
  }
}
@media (max-width: 575.98px) {
  .first h4 {
    padding-bottom: 0px;
    font-size: 11px;
    line-height: 17px;
  }
}
.first .offer {
  display: none;
}
@media (max-width: 767.98px) {
  .first .offer {
    display: inline-block;
    padding-bottom: 40px;
  }
}
.first .offer p {
  padding: 10px 20px;
  font-style: italic;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  background: linear-gradient(114.89deg, #E56322 18.14%, #E4351D 80.09%);
  box-shadow: 0.333333px 0.333333px 5px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
}
@media (max-width: 575.98px) {
  .first .offer {
    padding-bottom: 15px;

  }
  .first .offer p {
    padding: 7px 15px;
    font-size: 10px;
    line-height: 10px;
  }
}
.first p {
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
  padding-bottom: 16px;
}

@media (max-width: 575.98px) {
  .first p {
    max-width: 230px;
    font-size: 11px;
    line-height: 19px;
    padding-bottom: 20px;
  }
}

.first .form-control {
  width: 100%;
  padding: 28px 20px;
  border-radius: 10px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15)
}

.first .btn-primary {
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15)
}

@media (max-width: 575.98px) {
  .first .btn-primary {
    width: 100%;
    font-size: 11px;
  }
}

.advantages {
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
}

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

.advantages .items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 575.98px) {
  .advantages .items {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.advantages .items .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 240px;
  position: relative;
}

@media (max-width: 575.98px) {
  .advantages .items .item {
    padding-bottom: 20px;
    justify-content: flex-start;
  }
}

.advantages .items .item--img {
  width: 50px;
  min-width: 50px;
}

@media (max-width: 575.98px) {
  .advantages .items .item--img {
    width: 55px;
    min-width: 55px;
  }
}

.advantages .items .item--img img {
  max-width: 100%;
  margin-right: 15px;
}

.advantages .items .item::after {
  top: -5px;
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(158, 188, 173, 0.5);
  right: -30px;
}

@media (max-width: 575.98px) {
  .advantages .items .item::after {
    content: none;
  }
}

.advantages .items .item:last-child::after {
  content: none;
}

.advantages .items .item--text {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.035em;
  color: #333333;
}

.moto360 {
  padding: 50px 0;
}

@media (max-width: 992px) {
  .moto360 {
    padding: 50px 0px 0px 0px;
  }
}

.moto360 .spritespin {
  cursor: e-resize;
  width: 100%;
  max-width: 1170px;
}

.moto360 .direction {
  padding-top: 20px;
}

.moto360 .direction img {
  width: 35px;
  height: 25px;
}

@media (max-width: 992px) {
  .moto360 .direction img {
    width: 20px;
    height: 15px;
  }
}

.moto360 .direction span {
  font-weight: normal;
  font-size: 24px;
  text-align: center;
  color: #676767;
  margin: 0 .4em 0 .6em;
}

@media (max-width: 992px) {
  .moto360 .direction span {
    font-size: 14px;
    margin: 0.1rem .4em 0 .6em;
  }
}

.about-collection {
  padding: 100px 0 100px 0;
  position: relative;
}

@media (max-width: 992px) {
  .about-collection {
    padding: 50px 0 20px 0;
  }
}

.about-collection .blue-bg {
  display: block;
  width: 100%;
  height: 14px;
  margin-bottom: 5px;
  background: #5678BF;
}

.about-collection .orange-bg {
  display: block;
  width: 100%;
  height: 14px;
  margin-bottom: 5px;
  background: #E5540B;
}

.about-collection .turquoise-bg {
  display: block;
  width: 100%;
  height: 14px;
  margin-bottom: 5px;
  background: #85C6CC;
}

.about-collection h4 {
  position: absolute;
  display: inline-block;
  padding: 10px 100px;
  margin-top: -64px;
  text-align: center;
  background: #f6f6f6;
  color: #5678BF;
  font-weight: 800;
  font-size: 45px;
  line-height: 45px;
  text-align: center;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.about-collection h6 {
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  padding-bottom: 50px;
}

@media (max-width: 575.98px) {
  .about-collection h6 {
    font-size: 14px;
    line-height: 28px;
    padding-bottom: 25px;
  }
}

@media (max-width: 575.98px) {
  .about-collection h4 {
    margin-top: -46px;
    padding: 10px 20px;
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 575.98px) {
  .about-collection .blue-bg, .about-collection .orange-bg, .about-collection .turquoise-bg {
    height: 10px;
  }
}

.about-collection .subtitle {
  padding: 100px 0 80px;
  margin: auto;
  max-width: 664px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #333333;
}

@media (max-width: 575.98px) {
  .about-collection .subtitle {
    padding: 30px 0;
    font-size: 14px;
    line-height: 20px;
  }
}

.about-collection .items {
  padding-bottom: 80px;
}

@media (max-width: 575.98px) {
  .about-collection .items {
    padding-bottom: 40px;
  }
}

.about-collection .items .item {
  display: flex;
  flex-direction: row;
  padding: 0 25px;
  border-right: 1px solid #9EBCAD;
}

.about-collection .items .item:last-child {
  border-right: none;
}


@media (max-width: 575.98px) {
  .about-collection .items .item {
    display: flex;
    flex-direction: row;
    padding: 10px 0px;
    border-right: 1px solid #9EBCAD;
  }
}
.about-collection .items .item--count {
  text-align: right;
  width: 45px;
  min-width: 45px;
  font-weight: bold;
  font-size: 49px;
  line-height: 49px;
  color: #E5540B;
  padding: 0;
}

.about-collection .items .item--text {
  padding-left: 20px;
  font-size: 13px;
  line-height: 21px;
  color: #303030;
}

.about-collection .about-items .item {
  margin: auto;
  width: 90%;
  max-width: 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 15px;
  color: #ffffff !important;

}

@media (max-width: 575.98px) {
  .about-collection .about-items .item {
    max-width: 290px;
    margin: auto;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
  }
}

.about-collection .about-items .item--title {
  font-weight: 600;
  font-size: 9px;
  line-height: 15px;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .about-collection .about-items .item--title {
    font-size: 8px;
    line-height: 14px;
  }
}

.about-collection .about-items .item--description {
  font-weight: 900;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  position: relative;

}

@media (max-width: 575.98px) {
  .about-collection .about-items .item--description {
    font-size: 12px;
    line-height: 22px;
    width: 110px;
  }
}

.about-collection .about-items .item--description:after {
  top: 7px;
  left: -10px;
  position: absolute;
  content: url("../img/line.png");
}

@media (max-width: 575.98px) {
  .about-collection .about-items .item--description:after {
    top: 10px;
  }
}

.collections {
  padding-top: 20px;
}

.collections--title {
  font-weight: 800;
  font-size: 40px;
  line-height: 49px;
  text-align: center;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #333333;
}

@media (max-width: 575.98px) {
  .collections--title {
    font-size: 20px;
    line-height: 26px;
  }
}

.collections--items {
  padding-top: 55px;
  padding-bottom: 35px;
}

@media (max-width: 575.98px) {
  .collections--items {
    padding-top: 25px;
    padding-bottom: 20px;
  }
}

.smart-subscription {
  background: #5678BF;
  padding: 30px 0;
  border-bottom: 6px solid #F7CC3E;
}

@media (max-width: 575.98px) {
  .smart-subscription {
    padding: 0 0 30px 0;
  }
}

.smart-subscription--title {
  font-weight: 800;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 30px;
}

@media (max-width: 575.98px) {
  .smart-subscription--title {
    font-size: 33px;
    line-height: 45px;
  }
}

.smart-subscription--subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  padding-bottom: 30px;
}

@media (max-width: 575.98px) {
  .smart-subscription--subtitle {
    font-size: 18px;
    line-height: 22px;
  }
}

.smart-subscription--form {
  padding: 30px 0;
}

@media (max-width: 575.98px) {
  .smart-subscription--form {
    padding: 10px 0;
  }
}

.smart-subscription--button {
  padding: 30px 0;
}

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

.footer {
  background: #262626;
  padding: 20px 0;
}

.footer .logo-box {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer .logo-box .logo {
  margin-right: 0;
  padding-bottom: 12px;
}

.footer .logo-box .copy {
  font-size: 11px;
  line-height: 14px;
  color: #9d9d9d;
}

.footer .social-box .socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer .social-box .socials .instagram {
  margin-right: 16px;
}

.footer .social-box .socials .vkontakte {
  margin-left: 16px;
}

.footer .social-box .socials .instagram img, .footer .social-box .socials .vkontakte img {
  opacity: 0.8;
  cursor: pointer;
}

.footer .social-box .socials .instagram img:hover, .footer .social-box .socials .vkontakte img:hover {
  opacity: 1;
}

.footer .phone-box {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer .phone-box .text {
  font-size: 14px;
  line-height: 24px;
  color: #9d9d9d;
}

.footer .phone-box .phone {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #cacaca;
}

@media (max-width: 992px) {
  .footer {
    padding: 25px 0;
  }
}

@media (max-width: 576px) {
  .footer .logo-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .footer .logo-box .logo {
    margin-right: 15px;
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .footer .logo-box .logo {
    margin-right: 40px;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .footer .logo-box .copy {
    font-size: 12px;
    line-height: 18px;
  }
}

@media (min-width: 992px) {
  .footer .logo-box .copy {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 576px) {
  .footer .phone-box {
    text-align: center;
    padding: 30px 0 50px;
  }
}

@media (min-width: 768px) {
  .footer .phone-box .text {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .footer .phone-box .phone {
    font-size: 18px;
  }
}

.collections .slick-pager ul li.active {
  background-color: #5678BF;
}

.collections .slick-pager ul li:not(.active):active,
.collections .slick-pager ul li:not(.active):focus,
.collections .slick-pager ul li:not(.active):hover {
  background-color: inherit;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.collections .slick-pager ul li.disabled {
  visibility: hidden;
}

.collections .slick-pager ul li:not(.active) a {
  color: #333;
}

.collections .slick-pager ul li:not(.active):active a,
.collections .slick-pager ul li:not(.active):focus a,
.collections .slick-pager ul li:not(.active):hover a {
  color: #496FF5;
}

.collections .card-slide {
  font-family: Roboto, sans-serif;
}

.collections .card-slide * {
  outline: none;
}

.collections .card-slide .card-item {
  position: relative;
  height: 100%;
  /** Выравнивание слайдов по высоте (высота родителя устанавливается через js) */
  margin: 0 15px;
  padding: 3rem 1.6rem 1.6rem;
  background-color: #fff;
  font-family: Montserrat, Roboto, Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collections .card-slide .card-item:hover, .collections .card-slide .card-item:active {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translate(0px, -10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collections .badge-status {
  position: absolute;
  top: 1rem;
  left: 1.7rem;
  padding: 0.4em 0.7em;
  border-radius: 0;
  font-weight: 400;
  font-family: Roboto, Arial, sans-serif;
  color: #fff;
}

.collections .badge-status-not-available {
  background: #DBDBDB;
}

.collections .badge-status-pre-order {
  background: #B7B7B7;
}

.collections .badge-status-novelty {
  background: #8BC34A;
}

.collections .card-slide .card-item .img-wrapper {
  height: 254px;
  margin-bottom: 2.3em;
}

.collections .card-slide .card-item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.collections .card-slide .card-item .card-descr .price {
  margin: 0.75em 0 0.4em;
  font-size: 1.5em;
  font-weight: bold;
}

.collections .card-slide .card-item .card-descr .price .currency {
  font-size: 0.9em;
}

.collections .card-slide .card-item .card-descr h3 {
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
}

.collections .card-slide .card-item .card-descr h3 .model-name {
  margin: 0.5em 0 0;
  font-size: 0.9em;
  font-weight: normal;
}

.collections .card-slide .card-item .card-descr .card-description-gift {
  margin: 1em 0 0;
  font-size: 0.85em;
}

.collections .card-slide .slick-list {
  width: 100%;
  padding: 15px 0;
}

.collections .slick-pager {
  margin: 2em 0;
}

.collections .slick-pager li.active, .collections .slick-pager li:active, .collections .slick-pager li:focus, .collections .slick-pager li:hover {
  background-color: #5678BF;
}

.collections .slick-pager li a {
  color: #333333;
}

.slick-pager ul li.disabled a {
  color: #333333;
}

@media (max-width: 1499.98px) {
  .collections .card-slide .card-item .img-wrapper {
    height: 223px;
  }
  .collections .card-slide .card-item .card-descr h3 br {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .collections .slick-pager {
    margin: 1em 0;
  }
}

@media (max-width: 767.98px) {
  .collections .btn-box {
    padding: 25px 0 40px;
  }
}

@media (max-width: 575.98px) {
  .collections .card-slide {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.js-modal-offer {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: #333333;
}

.js-modal-offer .modal-header {
  border-bottom: none;
  position: relative;
}

.js-modal-offer .modal-body {
  padding-bottom: 45px;
}
.js-modal-offer .modal-header .close {
  position: absolute;
  right: -30px;
  top: -12px;
  font-size: 40px;
  font-weight: 100;
  color: #ffffff;
  opacity: 0.8;
}

@media (max-width: 575.98px) {
  .js-modal-offer {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #333333;
  }
  .js-modal-offer .modal-header .close {
    position: absolute;
    right: 8px;
    top: 2px;
    font-size: 40px;
    font-weight: 100;
    color: #000000;
    opacity: 0.8;
  }

}

/**варианты подписки**/

.variables-subs {
  background: url("/upload/landings/moto/main/img/bg-sub-var.png") #5678BF;
  padding: 80px 0 50px 0;
}

.variables-subs .p-4{
  justify-content: center;
  width: 100%;
  max-width: 350px;
  min-height: 400px;
}

.variables-subs .text-center {
  min-height: 93px;
}

@media (max-width: 575.98px) {
  .variables-subs {
    background: #5678BF;
  }
}

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

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

@media (max-width: 575.98px) {
  .variables-subs {
    padding: 50px 0;
  }
}
.variables-subs h1 {
  font-weight: 800;
  font-size: 45px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-bottom: 40px;
}

@media (max-width: 575.98px) {
  .variables-subs h1 {
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-bottom: 0px;
  }
}


.variables-subs .tarifs .tarifs__wrap {
  /*min-height: 520px;*/
  min-height: 632px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

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

.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 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  border: none;
  border-radius: 5px;
  color: #333333;
  background-color: #F7CC3E;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .variables-subs .tarifs__wrap button {
    width: 90%;
    padding: 12px 15px;
    font-weight: 700;
    font-size: 14px;
    background-color: #F7CC3E;
    text-transform: uppercase;
  }
}

.variables-subs .tarifs__wrap button:hover, .variables-subs .tarifs__wrap button:active, .variables-subs .tarifs__wrap button:focus {
  background-color: #fed725;
  color: #000;
}
.variables-subs .tarifs .merchant__name, .variables-subs .tarifs .prince__name, .variables-subs .tarifs .king__name {
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
.variables-subs .tarifs__wrap__description {
  display: inline-block;
  margin: 0 0 20px;
  background: #EFEFEF;
  border-radius: 50px;
  padding: 7px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  width: 100%;
}

.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 {
  background: #85C6CC;
}
.variables-subs .tarifs .prince__name {
  background: #443D97;
}
.variables-subs .tarifs .king__name {
  background: #C32828;
}

.variables-subs .tarifs .merchant__name, .variables-subs .tarifs .prince__name, .variables-subs .tarifs .king__name {
  font-size: 16px;
}

.variables-subs .tarifs .prince__name {
  background: #F7CC3E;
}
.variables-subs .tarifs .king__name {
  background: #E56322;
}
.variables-subs .tarifs__wrap__ul {
  padding: 10px 0 0 0;
}
.variables-subs .tarifs__wrap__ul ul li {
  font-size: 12px;
  font-weight: 400;
  padding: 0px 0px 10px 24px;
  background-position: 0px 2px;
  background: url(../img/ul-small.png) no-repeat left top;
}

.variables-subs .tarifs__wrap__ul ul li.no {
  background: url(../img/ul-small-no.png) no-repeat left top;

}


.variables-subs .tarifs__wrap .price {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 10px;
}
.variables-subs .tarifs__wrap .old-price {
  color: #aeaeae;
  font-size: 14px;
  font-weight: 400;
}

.variables-subs .tarifs__wrap .typesub-info {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-transform: uppercase;
}

.variables-subs .tarifs__wrap .typesub-info .economy {
  padding: 6px 12px;
  border-radius: 20px;
  }
.variables-subs .tarifs__wrap .typesub-info .big {
background-color: #e56322;
}
.variables-subs .tarifs__wrap .typesub-info .medium {
  background-color: #F7CC3E;
  }

  .variables-subs .tarifs__wrap .typesub-info .economy-small {
    font-size: 12px;
    }

.top-band {
  padding-right: 25px;
}
.top-band__wrap {
  margin-top: -80px;
  margin-left: -40px;
  margin-bottom: -40px;
  text-align: center;
  padding: 20px 35px;
  color: #ffffff;
  background: linear-gradient(114.89deg, #E56322 18.14%, #E4351D 80.09%);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 10px 10px;
}
.top-band__wrap--title {
  font-style: italic;
  font-weight: bold;
  font-size: 20px;
  line-height: 21px;
  padding-bottom: 20px;
}
.top-band__wrap--price {
  font-weight: bold;
  font-size: 60px;
  line-height: 21px;
  letter-spacing: -0.025em;
  padding-bottom: 20px;
}
.top-band__wrap--postprice {
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 21px;
}

.subscription-form .modal-content .nf-subscribe .tarifs .tarifs__wrap__description{
  padding: 7px 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  width:100%;
}

.subscription-form .modal-content .nf-subscribe .tarifs .tarifs__wrap .price {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

.subscription-form .modal-content .nf-subscribe .tarifs .tarifs__wrap .typesub-info {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
}
.subscription-form .modal-content .nf-subscribe .tarifs .tarifs__wrap .typesub-info .economy {
  padding: 6px 12px;
  border-radius: 20px;
  }
  .subscription-form .modal-content .nf-subscribe .tarifs .tarifs__wrap .typesub-info .big {
background-color: #e56322;
}
.subscription-form .modal-content .nf-subscribe .tarifs .tarifs__wrap .typesub-info .medium {
  background-color: #F7CC3E;
  }

  .subscription-form .modal-content .nf-subscribe .tarifs .tarifs__wrap .typesub-info .economy .economy-small {
    font-size: 12px;
    }

.subscription-form .modal-content .nf-subscribe .tarifs .tarifs__wrap button{
  font-size: 18px;
  line-height: 24px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscription-form .modal-content .nf-subscribe .tarifs .p-1 {
  max-width: 350px;
}

.tarifs__opacity{
  opacity: 0;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 48px;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  background-color: #65B454;
  color: #ffffff;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color ease 0.15s, background-color ease 0.15s, color ease 0.15s;
}
@media (hover: hover) {
  .btn:hover {
    border-color: #F4F6F9;
    background-color: #40b628;
    color: #ffffff;
  }
}
.btn:active {
  border-color: #fff;
  background-color: #fff;
  color: #ffffff;
}
.btn:disabled, .btn [disabled=disabled] {
  background-color: #C8CADC;
  color: #ffffff;
  border-color: #C8CADC;
  cursor: auto;
}
.btn--size-56 {
  height: 56px;
}
.btn--size-52 {
  height: 52px;
}
.btn--size-48 {
  height: 48px;
}
.btn--size-36 {
  height: 36px;
  padding: 0 16px;
}
.btn--line {
  color: #65B454;
  border: 1px solid #65B454;
  background-color: #ffffff;
}
.btn--line:disabled, .btn--line [disabled=disabled] {
  color: #C8CADC;
  border-color: #C8CADC;
  background-color: #ffffff;
  cursor: auto;
}
.btn--text, .btn--text-green {
  border-color: transparent;
  background-color: transparent;
}
@media (hover: hover) {
  .btn--text:hover, .btn--text-green:hover {
    border-color: transparent;
    background-color: transparent;
    color: #85c477;
  }
}
.btn--text:active, .btn--text-green:active {
  border-color: transparent;
  background-color: transparent;
  color: #509441;
}
.btn--text:disabled, .btn--text [disabled=disabled], .btn--text-green:disabled, .btn--text-green [disabled=disabled] {
  color: #C8CADC;
  border-color: transparent;
  background-color: transparent;
}
.btn--text-green {
  color: #65B454;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn.hidden {
  display: none;
}
.checkbox--width {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.checkbox__input {
  display: none;
}
.checkbox__input.error + .checkbox__label:before {
  border-color: red;
}
.checkbox__input:checked + .checkbox__label:after {
  opacity: 1;
}
.checkbox__input:checked + .checkbox__label:before {
  background-color: #65B454;
  border-color: #65B454;
}
@media (hover: hover) {
  .checkbox__input:checked + .checkbox__label:hover:before {
    background-color: #85c477;
    border-color: #85c477;
  }
}
.checkbox__input:checked + .checkbox__label:active:before {
  background-color: #509441;
  border-color: #509441;
}
.checkbox__label {
  position: relative;
  display: flex;
  cursor: pointer;
}
.checkbox__label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #E5E7F5;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  transition: border-color ease 0.15s, background-color ease 0.15s;
}
.checkbox__label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 7px;
  height: 12px;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity ease 0.15s;
}
@media (hover: hover) {
  .checkbox__label:hover:before {
    border-color: #262633;
  }
}
.checkbox__label--cart-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  border-radius: 10px 5px 5px 5px;
  z-index: 5;
}
.checkbox__label--cart-box:before, .checkbox__label--cart-box:after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.checkbox__label--cart-box:before {
  transform: translate(-50%, -50%);
}
.checkbox__label--cart-box:after {
  transform: translate(-50%, -60%) rotate(45deg);
}
@media (max-width: 768px) {
  .checkbox__label--cart-box {
    position: absolute;
    top: -15px;
    left: -10px;
  }
}
.checkbox__text {
  padding-left: 34px;
  font-size: 14px;
  line-height: 20px;
  color: #262633;
}
.checkbox__text a {
  -webkit-text-decoration-line: underline !important;
  text-decoration-line: underline !important;
  color: #65B454;
}
.checkbox__text--text-bigger {
  font-size: 16px;
  line-height: 24px;
}
.checkbox__text--text-green a {
  color: #65B454;
}
.header-code {
  margin-top: 16px;
}
.header-code__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  margin-bottom: 8px;
}
@media (max-width: 579px) {
  .header-code__wrapper {
    max-width: 355px;
  }
}
.header-code__wrapper.novalid .header-code__input {
  border-color: #BA2130;
}
.header-code__input {
  border: 1px solid #DCDEF2;
  padding: 0 !important;
  width: 51px !important;
  height: 48px;
  text-align: center;
  box-shadow: none !important;
  border-radius: 10px;
}
@media (max-width: 579px) {
  .header-code__input {
    width: 45px !important;
    height: 44px;
  }
}
.header-code__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #8E91AF;
}
.header-code__error {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #BA2130;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type='number'] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.marketplace {
  padding: 20px;
  background-color: #5678BF;
}
.marketplace .marketplace__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.marketplace .marketplace__wrap--text {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

.marketplace .marketplace__wrap--text a {
  text-decoration: underline;
  color: #ffffff;
  font-weight: 600;

}
.marketplace .marketplace__wrap--links {
  display: flex;
  flex-direction: row;
  justify-content: start;
}
.marketplace .marketplace__wrap--links img {
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  width: 44px;
  height: 44px;
}
.marketplace .marketplace__wrap--links .ozon {
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .marketplace .marketplace__wrap {
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
  }
  .marketplace .marketplace__wrap--text {
      font-size: 16px;
      line-height: 24px;
  }
  .marketplace .marketplace__wrap--links {
      padding-top: 20px;
  }
}
.superpack-details{
  margin: 10px 0;
}
.superpack-details .superpack-details__wrap {
  display: flex;
  background-color: white;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  gap: 20px;
  border-radius: 25px;
  padding: 12px;
  margin-left: 4.5rem;
  margin-right: 4.5rem;
  border: solid 6px #5278BC; outline: solid 6px white;
}

.superpack-details .superpack-details__wrap button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  border: none;
  border-radius: 5px;
  background-color: #F7CC3E;
  text-transform: uppercase;
  width: 168px;
}
.superpack-details .superpack-details__wrap button a {
  color: #333333;
}
.superpack-details .superpack-details__wrap button a:hover {
  text-decoration: none;
}
.superpack-details .superpack-details__wrap ul li {
  font-size: 15px;
  font-weight: 400;
  padding: 0px 0px 10px 24px;
  background-position: 0px 2px;
  background: url(../img/ul-small.png) no-repeat left top;
  list-style: none;
}
.superpack-details .superpack-details__item {
display: flex;
flex-direction: column;
font-size: 16px;
align-items: center;
 }
 .superpack-details .superpack-details__item .price {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 10px;
   }
   .superpack-details .superpack-details__item .price span {
    color: #aeaeae;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
     }
.superpack-details .superpack-details__item .superpack {
 background-color:#de0a18;
 font-size: 26px;
 height: 52px;
 align-items: center;
 justify-content: center;
 text-transform: uppercase;
 font-weight: bold;
 color: white;
 border-radius: 32px;
 display: inline-flex;
 padding: 0 40px;
}
.superpack-details .superpack-details__item .typesub-info {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
.superpack-details .superpack-details__item .typesub-info .big {
  background-color: #e56322;
}
.superpack-details .superpack-details__item .typesub-info .economy {
  border-radius: 20px;
  text-align: center;
  padding: 0 6px;
  margin-bottom: 0;
}
.superpack-details .superpack-details__item .typesub-info .economy-small {
 font-size: 9px;
}
.superpack-details .superpack-details__item .price {
margin-bottom: 0;
}
@media (max-width:930px) {
  .superpack-details .superpack-details__wrap {
flex-direction: column;
align-items: center;
  
}
@media (max-width:450px) {
  .superpack-details .superpack-details__wrap {
    margin-left: 0;
    margin-right: 0;
}}
}