.warranty-promo {
  padding-bottom: 0;
}
.warranty-promo-inner {
  padding: 60px 50px;
  background: #f9f9f9;
}
.warranty-promo__title {
  margin-bottom: 20px;
  font-size: 54px;
  font-weight: bold;
}
.warranty-promo__text {
  margin-bottom: 50px;
  max-width: 714px;
  font-size: 18px;
}
@media (max-width: 999px) {
  .warranty-promo-inner {
    padding: 40px 30px;
  }
  .warranty-promo__title {
    margin-bottom: 15px;
    font-size: 36px;
  }
  .warranty-promo__text {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .warranty-promo-inner {
    padding: 30px 20px;
  }
  .warranty-promo__title {
    margin-bottom: 10px;
    font-size: 28px;
  }
}

.warranty-type {
  overflow: hidden;
}
.warranty-type .accordion + .warranty-type__nav {
  margin-top: 50px;
}
.warranty-type__nav {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.warranty-type__nav-item {
  display: flex;
  gap: 35px;
  flex-direction: column;
  cursor: pointer;
}
.warranty-type__nav-item img {
  margin: 0 auto;
  height: 181px;
}
.warranty-type__nav-item span {
  position: relative;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}
.warranty-type__nav-item span:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background: #5c5c5c;
  transition: background .2s ease-in-out;
}
.warranty-type__nav-item span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin: auto auto auto -10px;
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0;
  border: 10px solid transparent;
  border-top: 10px solid #fe693a;
  transition: opacity .2s ease-in-out;
}
.warranty-type__nav-item:nth-child(1) span:before {
  left: -20vw;
  right: 0;
}
.warranty-type__nav-item:nth-child(2) span:before {
  left: 0;
  right: -20vw;
}
.warranty-type__nav-item.active span:before {
  background: #fe693a;
}
.warranty-type__nav-item.active span:after {
  opacity: 1;
}
.warranty-type__content {
  position: relative;
}
.warranty-type__content-item {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  display: none;
}
.warranty-type__content-item-title {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.warranty-type__content-item.active {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .warranty-type__nav-item img {
    height: 140px;
  }
  .warranty-type__nav-item span {
    height: 60px;
    font-size: 16px;
  }
  .warranty-type__content-item-title {
    font-size: 18px;
  }
}

.warranty-sub-type {
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.warranty-sub-type__nav {
  margin-bottom: 35px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.warranty-sub-type__nav-item {
  width: 100%;
  max-width: 270px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border: 1px solid #fe693a;
  transition: border-color .2s ease-in-out, color .2s ease-in-out;
  cursor: pointer;
}
.warranty-sub-type__nav-item.active {
  color: #ffffff;
  background: #fe693a;
}
.warranty-sub-type__content {
  position: relative;
}
.warranty-sub-type__content-item {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.warranty-sub-type__content-item-text {
  max-width: 450px;
}
.warranty-sub-type__content-item-age {
  display: flex;
  gap: 35px;
  flex-direction: column;
}
.warranty-sub-type__content-item-age-row {
  display: flex;
  gap: 25px;
  align-items: center;
}
.warranty-sub-type__content-item-age-row img {
  width: 60px;
  height: 30px;
}
.warranty-sub-type__content-item-age-row span {
  position: relative;
  padding-right: 30px;
  display: block;
}
.warranty-sub-type__content-item-age-row span:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 11px;
  display: block;
  border: 2px solid #c4c4c4;
  border-left: none;
}
.warranty-sub-type__content-item-age-row i {
  font-size: 28px;
  font-style: normal;
  color: #fe693a;
}
.warranty-sub-type__content-item.active {
  display: grid;
}
@media (max-width: 767px) {
  .warranty-sub-type__content-item {
    grid-template-columns: 1fr;
  }
}

.form-warranty {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
.form-warranty__body {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.form-warranty__footer {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.form-warranty__footer .button {
  width: 100%;
  max-width: initial;
}
.form-warranty__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 767px) {
  .form-warranty__group {
    grid-template-columns: 1fr;
  }
}

.form-cert-number {
  display: flex;
  flex-direction: column;
}
.form-cert-number__label {
  margin-bottom: 10px;
  font-size: 14px;
  color: #808080;
}
.form-cert-number__label i {
  font-style: normal;
  color: #fe693a;
}
.form-cert-number__nums {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}
.form-cert-number__nums span {
  font-size: 22px;
  font-weight: 400;
  color: #333333;
}
.form-cert-number__nums-input {
  display: flex;
  gap: 10px;
}
.form-cert-number__nums-input input {
  padding: 13px 10px;
  width: 40px;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  transition: border-color .2s ease-in-out;
}
.form-cert-number__nums-input input:hover, .form-cert-number__nums-input input:focus {
  border-color: #fe693a;
}
.form-cert-number .button {
  margin-left: auto;
  width: 240px;
}
@media (max-width: 767px) {
  .form-cert-number__nums-input input {
    padding: 14px 16px;
  }
}

.form-warranty-type {
  display: flex;
  gap: 25px;
  flex-direction: column;
}

.form-warranty-type-add {
  font-size: 15px;
  font-weight: 400;
  color: #fe693a;
  transition: color .2s ease-in-out;
  cursor: pointer;
}
.form-warranty-type-add:hover {
  color: rgba(254, 105, 58, 0.85);
}

.gift-promo {
  padding-bottom: 0;
}
.gift-promo-inner {
  position: relative;
  padding: 60px 50px;
  height: 500px;
  background: #f9f9f9 url("/images/gift_bg.jpg") center right/contain no-repeat;
}
.gift-promo-title {
  margin-bottom: 20px;
  font-size: 54px;
  font-weight: bold;
}
@media (max-width: 999px) {
  .gift-promo-inner {
    padding: 40px 30px;
    height: 400px;
  }
  .gift-promo__title {
    margin-bottom: 15px;
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .gift-promo-inner {
    padding: 30px 20px;
    height: initial;
    background: #f9f9f9;
  }
  .gift-promo__title {
    margin-bottom: 10px;
    font-size: 28px;
  }
}

.page-gift .warranty-type__content-item-title {
  font-size: 48px;
}
@media (max-width: 999px) {
  .page-gift .warranty-type__content-item-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .page-gift .warranty-type__content-item-title {
    font-size: 26px;
  }
}

.form-cert-add-balance {
  display: flex;
  flex-direction: column;
}
.form-cert-add-balance .form-warranty__group {
  margin-bottom: 50px;
}
.form-cert-add-balance > .button {
  margin-bottom: 15px;
  width: 100%;
}
.form-cert-add-balance > p {
  margin: 0;
}

/*# sourceMappingURL=warranty.css.map */
