:root {
  --main-background-color: #08374f;
  --main-color: #fff;
  --header-color: var(--main-color);
  --link-color: var(--main-color);
  --link-hover-color: #ccc;
  --form-panel-background-color: var(--main-background-color);
  --text-input-background-color: var(--main-color);
  --text-input-color: #454545;
  --submit-button-color: var(--main-color);
  --submit-button-background-color: #f15d25;
  --submit-button-hover-background-color: #ef835a;
  --icon-mark-color: var(--submit-button-background-color);
  --icon-text-color: var(--main-color);
  --form-panel-max-width: 1140px;
  --container-content-max-width: var(--form-panel-max-width);
  --container-content-max-height: 800px;
  --warning-color: yellow;
}
@media screen and (max-width: 767px) {
  :root {
    --form-panel-max-width: 100%;
    --container-content-max-height: auto;
  }
}


body, html {
  margin: 0;
}

body {
  font-family: 'Arial';
  color: var(--main-color);
  background-color: var(--main-background-color);
}

a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: underline;
  color: var(--link-color);
  outline: 0;
}

a:hover {
  color: var(--link-hover-color);
}

.content-container {
  /* max-width: var(--container-content-max-width); */
  margin: 0 auto;
  transform-origin: center top;
}
.for-mobile .content-container {
  width: 100%;
}

.form-panel {
  background-color: var(--form-panel-background-color);
  padding: 30px 15px 15px 15px;
  /* width: var(--form-panel-max-width); */
  height: var(--container-content-max-height);
}
@media screen and (max-width: 767px) {
  .form-panel {
    width: calc(100% - 6px);
    padding-bottom: 0;
    margin-top: 3px;
    margin-bottom: 3px;
    padding-top: 20px;
  }
}

.form-panel .form-panel-content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form-panel .form-panel-content {
    max-width: 95%;

  }
}

.form-panel .header {
  font-size: 53px;
  color: var(--header-color);
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .form-panel .header {
    font-size: 28px;
    margin-top: 12px;
  }
}

.form-panel .instructions {
  color: var(--main-color);
  font-size: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-panel .instructions {
    width: 85%;
    line-height: 1.3;
    margin-top: 12px;
    font-size: 16px;
  }
}

.form-panel .icons {
  margin-top: 30px;
  width: 750px;
}
@media screen and (max-width: 767px) {
  .form-panel .icons {
    margin-top: 20px;
    width: auto;
  }
}

.form-panel .icons .icon-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .form-panel .icons .icon-container {
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }
}

.form-panel .icon-mark {
  width: 90px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .form-panel .icon-mark {
    width: 40px;
    margin-right: 10px;
  }
}

.form-panel .icon-mark .cls-1 {
  fill: var(--icon-mark-color);
}

.form-panel .icon-text {
  color: var(--icon-text-color);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .form-panel .icon-text {
    font-size: 12px;
    margin-top: 0;
  }
}

.the-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  width: 370px;
}
@media screen and (max-width: 767px) {
  .the-form {
    width: 100%;
    margin-top: 16px;
  }
}
.the-form .mobile-input-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .the-form .mobile-input-container {
    margin-top: 0;
  }
}

.the-form .mobile-input-container .phone_number {
  width: 100%;
  height: 52px;
  padding: 0 12px 0 70px;
  border: none;
  background-color: var(--text-input-background-color);
  border-radius: 10px;
  color: var(--text-input-color);
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .the-form .mobile-input-container .phone_number {
    height: 50px;
  }
  .the-form .mobile-input-container .phone_number::-webkit-input-placeholder,
  .the-form .mobile-input-container .phone_number::-moz-placeholder,
  .the-form .mobile-input-container .phone_number:-ms-input-placeholder,
  .the-form .mobile-input-container .phone_number:-moz-placeholder {
    font-size: 20px;
  }
  .the-form .mobile-input-container .phone_number::placeholder {
    font-size: 20px;
  }

}

.the-form .mobile-input-container .phone_flag {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 42px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .the-form .mobile-input-container .phone_flag {
    top: 14px;
  }
}

.the-form .consent-text {
  color: var(--main-color);
  font-size: 9px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .the-form .consent-text {
    margin-top: 12px;
    width: 85%;
  }
}

.the-form .submit-button-container {
  margin-top: 10px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .the-form .submit-button-container {
    margin-top: 12px;
  }
}

.the-form .submit-button-phone {
  width: 100%;
  height: 52px;
  color: var(--submit-button-color);
  background-color: var(--submit-button-background-color);
  border: none;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 400;
  transition: background-color .25s ease-in-out;
  -moz-transition: background-color .25s ease-in-out;
  -webkit-transition: background-color .25s ease-in-out;
}
@media screen and (max-width: 767px) {
  .the-form .submit-button-phone {
    height: 50px;
    font-size: 19px;
  }
}

.the-form .submit-button-phone:hover {
  cursor: pointer;
  background-color: var(--submit-button-hover-background-color);
  transition: background-color .25s ease-in-out;
  -moz-transition: background-color .25s ease-in-out;
  -webkit-transition: background-color .25s ease-in-out;
}

.the-form .submit-button-phone .doClaim-label {
  text-transform: uppercase;
}

.the-form .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-provider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .value-provider-container {
    margin-top: 10px;
    align-items: center;
  }
}


.value-provider-container .attr-text {
  font-family: 'Open Sans', sans-serif;
  color: var(--main-color);
  font-size: 17px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .value-provider-container .attr-text {
    font-size: 12px;
    padding-right: 10px;
  }
}

.value-provider-container .value-provider {
  display: flex;
  align-items: flex-start;
}
.value-provider-container .value-provider .attr-logo {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .value-provider-container .value-provider .attr-logo {
    width: 133px;
  }
}
.value-provider-container .value-provider.value-provider-kbb .attr-logo,
.value-provider-container .value-provider.value-provider-accu-trade .attr-logo {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .value-provider-container .value-provider.value-provider-kbb .attr-logo,
  .value-provider-container .value-provider.value-provider-accu-trade .attr-logo {
    width: 133px;
  }
}

.success-message {
  font-size: 50px;
}

.powered-by-text {
  margin-top: 30px;
  font-size: 17px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .powered-by-text {
    margin-top: 15px;
    font-size: 16px;
  }
}

.powered-by-text sup {
  font-size: 50%;
  top: -.75em;
}

.errors,
.afterwards,
.step-2,
.step-3,
.step-4 {
  display: none;
}

.errors {
  color: var(--warning-color);
  text-align: center;
}

.mobile.is-invalid~.invalid-feedback, 
.mobile.is-invalid~.invalid-tooltip, 
.was-validated .mobile:invalid~.invalid-feedback, 
.was-validated .mobile:invalid~.invalid-tooltip {
  display: block;
}