

/* Start:/warranty-form/warranty.css?16842486954974*/
.warranty-area {
  margin: 20px auto 40px;
  font-family: Acrom, Arial, sans-serif;
  max-width: 680px;

  box-shadow: 5px 5px 60px rgba(36, 40, 43, 0.1);
  background: #fff;
  border-radius: 8px;
  padding: 25px;
}

@media (min-width: 768px) {
  .warranty-area {
    padding: 40px 30px;
    margin: 40px auto 80px;
  }  
}

.warranty-area * {
  box-sizing: border-box;
}

.warranty-area__header {
  text-align: center;
}

.warranty-area__heading {
  font-family: Acrom, Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .warranty-area__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .warranty-area__heading {
    font-size: 32px;
  }
}

.warranty-area__content {
  line-height: 1.3;
}

.warranty-area__content > *:not(:last-child) {
  margin-bottom: 10px;
}

.warranty-area__content strong {
  font-weight: 500;
}

.warrant-area__form {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .warranty-area__form {
    margin-top: 60px;
  }
}

.warranty__fields {
  margin-bottom: 40px;
}

.warranty__fields > *:not(:last-child) {
  margin-bottom: 25px;
}

.warranty__row {
  display: flex;
  gap: 25px;
  flex-direction: column;
}

@media (min-width: 576px) {
  .warranty__row {
    flex-direction: row;
    gap: 15px;
    align-items: flex-end;
  }
}

.warranty__row .warranty__field {
  flex: 1;
  min-width: 0;
  position: relative;
}

.warranty__row .warranty__field .warranty__error {
  position: absolute;
  left: 0;
  top: 100%;
}

.warranty__field.is-checkbox {
  display: flex;
  align-items: flex-start;
}

.warranty__field.is-checkbox .warranty__caption {
  margin: 0;
}

.warranty__caption {
  margin: 0 0 10px;
  display: inline-block;
  cursor: pointer;
  color: rgba(52, 60, 75, 0.7);
  font-size: 15px;
  font-family: Acrom, Arial, sans-serif;
  font-weight: 500;
  user-select: none;
}

@media (min-width: 768px) {
  .warranty__caption {
    font-size: 16px;
  }
}

.warranty__caption * {
  color: #f00;
}

.warranty__input {
  background: #F3F3F6;
  border-radius: 6px;
  font-size: 15px;
  color: #343C4B;
  transition: all .3s;
  width: 100%;
  outline: none;
  font-weight: 500;
  padding: 15px 20px;
  font-family: Acrom, Arial, sans-serif;
  border: 1px solid transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all .3s;
}

@media (min-width: 768px) {
  .warranty__input {
    font-size: 16px;
  }
}

.warranty__input:hover {
  background-color: #ededef;
}

.warranty__input:focus {
  border-color: #2f69ff;
}

.warranty__checkbox {
  margin: 1px 7px 0 0;
}

.has-error .warranty__input {
  border-color: #f00;
}

.warranty__error {
  display: none;
  font-size: 14px;
  color: #f00;
  margin-top: 5px;
}

.has-error .warranty__error {
  display: block;
}

.warranty__docs .warranty__fields {
  margin-bottom: 25px;
}

.warranty__docs .warranty__fields > *:not(:first-child) {
  margin-top: 25px;
}

.warranty__docs .warranty__fields > *:not(:last-child) {
  margin-bottom: 0;
}

select.warranty__input {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

textarea.warranty__input {
  resize: vertical;
}

.warranty__btn {
  height: 50px;
  line-height: 50px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.warranty__btn[disabled] {
  pointer-events: none;
  cursor: default;
  background: #ccc;
  opacity: .85;
}

.warranty__btn:hover,
.warranty__btn:focus {
  background: #2F82FF;
}

.file-input {
  display: flex;
  transition: all .3s;
  flex-direction: column;
}

.file-input.has-error .file-input__main {
  border-color: #f00;
}

.file-input__input {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-input__input:focus {
  border-color: #2f69ff;
}

.file-input__input:focus + label,
.file-input__input:hover + label {
  text-decoration: none;
}

.file-input__input:focus + label {
  outline: 1px solid #000;
  outline: -webkit-focus-ring-color auto 2px;
}

.file-input__main {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  margin: 0;
  cursor: pointer;
  transition: transform .2s ease-out;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border: solid 1px #f0f0f0;
  border-radius: 6px;
  background: #F3F3F6;
}

.file-input__main:hover {
  background: #ededef;
}

.file-input__main:hover .file-input__caption {
  text-decoration: none;
}

.file-input__name {
  margin: 0 15px 0 0;
  font-weight: 500;
}

.file-input__caption {
  margin-left: auto;
  white-space: nowrap;
  text-decoration: underline;
  color: #2f69ff;
}
/* End */
/* /warranty-form/warranty.css?16842486954974 */
