/*
 * Mixin printing a linear-gradient
 * as well as a plain color fallback
 * and the `-webkit-` prefixed declaration
 * @access public
 * @param {Keyword | Angle} $direction - Linear gradient direction
 * @param {Arglist} $color-stops - List of color-stops composing the gradient
 *
 * @see https://www.sitepoint.com/building-linear-gradient-mixin-sass/
 */
body, h1, h2, h3, h4, h5, h6, p, li, a {
  font-family: "Poppins", sans-serif;
}

header {
  background: -moz-linear-gradient(left, #392eff 0%, #392eff 0%, #4119c5 100%, #2989d8 100%);
  background: -webkit-linear-gradient(left, #392eff 0%, #392eff 0%, #4119c5 100%, #2989d8 100%);
  background: linear-gradient(to right, #392eff 0%, #392eff 0%, #4119c5 100%, #2989d8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#392eff", endColorstr="#2989d8",GradientType=1 );
  text-align: center;
  padding: 20px 0;
}

.topgrid {
  background: #6a7697;
  background: #bfbda6;
  /* Old browsers */
  background: -moz-linear-gradient(top, #6a7697 0%, #bfbda6 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #6a7697 0%, #bfbda6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #6a7697 0%, #bfbda6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6a7697", endColorstr="#bfbda6",GradientType=0 );
  /* IE6-9 */
  padding: 40px 0 20px;
}

.carbottom {
  width: 100%;
  height: auto;
  position: relative;
}

.toptext h2 {
  text-align: center;
  color: #fff;
  font-size: 3em;
}
.toptext h3 {
  text-align: center;
  color: #fff;
  font-size: 6em;
  font-weight: 600;
  line-height: 1em;
}
.toptext h3 small {
  display: block;
  color: #fff;
  font-size: 0.5em;
  line-height: 1em;
}

.p1form {
  padding-top: 30px;
}
.p1form select {
  background: transparent;
  border: solid 1px #fff;
  border-radius: 5px;
  color: #fff;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 42px;
  height: 42px !important;
  position: relative;
  z-index: 1;
  margin: 0;
  cursor: pointer;
  padding: 0 0.5rem 0 0.75rem;
}
.p1form select option {
  color: #333;
}
.p1form input {
  background: transparent;
  border: solid 1px #fff;
  border-radius: 5px;
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.5em;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.p1form input :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
  opacity: 1;
}
.p1form input ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
  opacity: 1;
}
.p1form input:focus {
  background: transparent !important;
  border: solid 1px #fff !important;
}
.p1form input.submitbutton {
  text-transform: uppercase;
  padding: 20px 150px;
  border-radius: 100px;
  background: #06de6c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  margin-top: 40px;
  transition: all 0.25s ease-in-out;
}
.p1form input.submitbutton:hover {
  opacity: 0.8;
}
.p1form input.submitbutton:focus {
  background: #06de6c !important;
  border: none !important;
}
.p1form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.p1form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.p1form :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.p1form :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.p1form input::placeholder, .p1form textarea::placeholder {
  color: #fff;
  opacity: 1;
}

.select-hold {
  position: relative;
}
.select-hold svg {
  position: absolute;
  right: 15px;
  top: 25%;
  color: #fff;
}

.selectqual svg {
  position: absolute;
  right: 0.75rem;
  top: 56%;
  color: #fff;
}

.sqtitle {
  color: #313d64;
  padding-left: 20px;
}

.error {
  text-align: center;
  margin-top: 10px;
  color: #ff0000;
}

.error2, .error3 {
  text-align: center;
  margin-top: 10px;
  color: #ff0000;
  margin-bottom: 20px;
}

.bluebox {
  background: #392eff;
  background: -moz-linear-gradient(left, #392eff 0%, #392eff 0%, #4119c5 100%, #2989d8 100%);
  background: -webkit-linear-gradient(left, #392eff 0%, #392eff 0%, #4119c5 100%, #2989d8 100%);
  background: linear-gradient(to right, #392eff 0%, #392eff 0%, #4119c5 100%, #2989d8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#392eff", endColorstr="#2989d8",GradientType=1 );
  padding: 50px 0;
}
.bluebox ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: inline-block;
  text-align: left;
}
.bluebox ul li {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 70px;
  position: relative;
  z-index: 1;
}
.bluebox ul li .number {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #06de6c;
  text-align: center;
  line-height: 80px;
  color: #392eff;
  font-weight: 600;
  font-size: 40px;
  margin-right: 10px;
}
.bluebox ul:before {
  content: "";
  position: absolute;
  left: 33px;
  top: 10px;
  height: 90%;
  width: 15px;
  background: #06de6c;
}

.footer {
  background: #2d2d2f;
  text-align: center;
  padding: 0 0 20px;
}
.footer .bottom-links {
  color: #828282;
  font-size: 12px;
}
.footer .bottom-links a {
  color: #828282;
  display: inline-block;
  padding: 0 5px;
}
.footer .bottom-links a:hover {
  text-decoration: underline;
}

.footerimg {
  width: 250px;
  height: auto;
}

.darkbar {
  text-align: center;
  background: #151516;
  padding: 20px 0;
  color: #828282;
  font-size: 12px;
}

.bbb {
  width: 50px;
}

/*
page 2
*/
.p2title {
  border-left: solid 7px #06de6c;
  font-weight: 300;
  font-size: 20px;
  padding: 0 27px 0 20px;
  margin: 40px 7px;
  color: #777;
}

.p2form select {
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
}
.p2form input {
  border-radius: 5px !important;
}
.p2form input.greenbutton {
  text-transform: uppercase;
  padding: 20px 80px;
  border-radius: 100px !important;
  background: #06de6c;
  border: solid 1px #777;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.p2form input.greenbutton:hover {
  opacity: 0.8;
}
.p2form input.greenbutton:focus {
  background: #06de6c !important;
  border: none !important;
}

.whitebox {
  padding: 0 0 20px;
}

.greybox {
  background: #f5f5f5;
  padding: 40px 0;
  position: relative;
}
.greybox:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -40px;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 30px solid #fff;
}

.p2form label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 20px;
  color: #777;
  font-weight: 600;
  line-height: 1.5em;
}
.p2form label .city {
  font-weight: 400;
}

/* Hide the browser's default checkbox */
.p2form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  padding-left: 50px;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -13px;
  height: 26px;
  width: 26px;
  background-color: #eee;
  border-radius: 50px;
  cursor: pointer;
  border: solid 2px #bbb;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
input:checked ~ .checkmark:after {
  display: block;
}

input:checked ~ .checkmark {
  border: solid 2px #06de6c;
}

/* Style the checkmark/indicator */
.checkmark:after {
  left: 5px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #06de6c;
  border-radius: 50px;
}

.dealertop {
  text-align: center;
  color: #777 !important;
  padding: 30px 0;
}
.dealertop svg {
  color: #06de6c;
  font-size: 40px;
  margin-bottom: 5px;
}
.dealertop h2 {
  font-weight: 600;
  font-size: 24px;
}
.dealertop h2 small {
  color: #777 !important;
  display: block;
  font-weight: 300;
  font-size: 0.8em;
  line-height: 2em;
}

.noDealers p, .noDealers li {
  color: #777;
}

/*
Page 3
*/
h3.p3title {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #777;
  margin: 10px auto 0 auto;
  max-width: 90%;
}

.p3big {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #777;
  margin: 30px auto 0px;
  max-width: 90%;
}

.icon svg {
  color: #06de6c;
  font-size: 30px;
}

.vtitle {
  color: #777;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
}

.carpicker {
  cursor: pointer;
  color: #777;
  position: relative;
  font-weight: 600;
}
.carpicker .checkmark {
  position: relative;
  display: inline-block;
  top: 8px;
  margin-top: 0;
  left: -8px;
}
.carpicker img {
  height: 300px;
  width: auto;
  margin-top: -20px;
}

.p3form {
  padding-top: 30px;
}
.p3form select {
  background: transparent;
  border: solid 1px #777;
  border-radius: 5px;
  color: #777;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 1.5em;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 0;
  cursor: pointer;
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
}
.p3form select option {
  color: #333;
}
.p3form input {
  background: transparent;
  border: solid 1px #777;
  border-radius: 5px;
  color: #777;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 1.5em;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.p3form input:focus {
  background: transparent !important;
  border: solid 1px #fff !important;
}
.p3form input.greenbutton {
  text-transform: uppercase;
  padding: 20px 80px;
  border-radius: 100px !important;
  background: #06de6c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.p3form input.greenbutton:hover {
  opacity: 0.8;
}
.p3form input.greenbutton:focus {
  background: #06de6c !important;
  border: none !important;
}
.p3form .select-hold {
  position: relative;
  margin-bottom: 30px;
}
.p3form .select-hold svg {
  position: absolute;
  right: 0.75rem;
  top: 35%;
  color: #777;
}

.nothanks {
  color: #06de6c;
  font-size: 12px;
  margin-top: 40px;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}
.nothanks:hover {
  color: #06de6c;
  opacity: 0.8;
}

/*
Page 4
*/
.p3whitebox {
  padding-bottom: 15px;
}

.check {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: solid 2px;
  border-radius: 80px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.checkhold {
  text-align: center;
  color: #06de6c;
  font-size: 33px;
}
.checkhold h2 {
  color: #777;
  font-weight: 600;
  font-size: 24px;
}
.checkhold p {
  color: #777;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 300;
  padding-bottom: 30px;
}

.formtitle {
  color: #777;
  font-weight: 600;
  font-size: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
}

input[type=Radio] {
  visibility: hidden;
}

input[type=checkbox] {
  visibility: hidden;
}

.shiftleft {
  position: absolute;
  left: 999px;
  visibility: hidden;
}

.p4form, .p5form {
  color: #777;
}
.p4form select, .p5form select {
  background: transparent;
  border: solid 1px #777;
  border-radius: 5px;
  color: #777;
  text-transform: capitalize;
  line-height: 1.5em;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 0;
  cursor: pointer;
  height: 42px;
  padding: 0.5rem 0.5rem 0.5rem 0.75rem !important;
}
.p4form select option, .p5form select option {
  color: #333;
}
.p4form input, .p5form input {
  background: transparent;
  border: solid 1px #777;
  border-radius: 5px;
  color: #777;
  text-transform: capitalize;
  line-height: 1.5em;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.p4form input:focus, .p5form input:focus {
  background: transparent !important;
  border: solid 1px #06de6c !important;
}
.p4form input.greenbutton, .p5form input.greenbutton {
  text-transform: uppercase;
  padding: 20px 80px;
  border-radius: 100px !important;
  background: #06de6c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.p4form input.greenbutton:hover, .p5form input.greenbutton:hover {
  opacity: 0.8;
}
.p4form input.greenbutton:focus, .p5form input.greenbutton:focus {
  background: #06de6c !important;
  border: none !important;
}
.p4form input[type=radio], .p5form input[type=radio] {
  border: none !important;
}
.p4form input[type=checkbox], .p5form input[type=checkbox] {
  border: none !important;
}
.p4form .select-hold, .p5form .select-hold {
  position: relative;
  margin-bottom: 1rem;
}
.p4form .select-hold svg, .p5form .select-hold svg {
  position: absolute;
  right: 0.75rem;
  top: 35%;
  color: #777;
}
.p4form .dob, .p5form .dob {
  display: inline-block;
  padding-left: 20px;
}
.p4form label, .p5form label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 20px;
  color: #777;
}

.spacer {
  height: 12px;
}

.yesnolabel {
  padding-left: 40px !important;
}

.dobDay {
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
}

#dobYear {
  border-radius: 0 5px 5px 0;
}

#dobMonth {
  border-radius: 5px 0 0 5px;
}

.dib {
  display: inline-block;
}

/*
Page 5
*/
.p5form select {
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
}

.p5title {
  color: #777;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: solid 7px #06de6c;
  font-size: 16px;
  text-align: left;
}

.buttonspacer {
  margin-bottom: 70px;
}

.buttontop {
  margin-top: 40px;
}

.carinfo, .miles, .price {
  font-weight: 600;
  padding: 0 0 7px 0;
  margin: 0;
}

.dollar {
  color: #06de6c;
  font-size: 1.5em;
  position: relative;
  top: 2px;
  padding-right: 12px;
}

.miles svg {
  color: #06de6c;
  font-size: 1.5em;
  padding-right: 4px;
  padding-top: 4px;
  margin-left: -5px;
  margin-right: 5px;
}

.carcell {
  border-bottom: solid 1px #777;
  padding: 15px 0;
}

.cell0, .cell1 {
  border-top: solid 1px #777;
}

option {
  margin: 0;
  padding: 0;
}

/*
Page 6
*/
.p6whitebox {
  padding-bottom: 30px;
}

.finalstep h2 {
  color: #777;
  font-weight: 600;
  font-size: 24px !important;
  padding-top: 20px;
}

.p6top {
  color: #777;
  font-weight: 600;
  font-size: 24px;
  padding-top: 20px;
}

.greenbutton6 {
  display: inline-block;
  text-transform: uppercase;
  padding: 20px 60px;
  border-radius: 100px !important;
  background: #06de6c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.greenbutton6:hover {
  opacity: 0.8;
  color: #fff;
}
.greenbutton6:focus {
  background: #06de6c !important;
  border: none !important;
}

.legal {
  padding-top: 30px;
  display: inline-block;
  color: #777;
  text-align: center;
}
.legal p {
  max-width: 90%;
  margin: 0 auto;
}

select, input[type=text] {
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
}

/*
responsive
*/
@media print, screen and (max-width: 64em) {
  select, input[type=text] {
    font-size: 16px !important;
  }

  .select-hold svg {
    top: 23%;
  }

  .p1form {
    padding-top: 0;
  }
  .p1form select {
    margin-bottom: 20px;
  }
  .p1form input.submitbutton {
    padding: 20px 80px;
    margin-top: 0;
  }
}
@media print, screen and (max-width: 40em) {
  .buttonspacer {
    margin-bottom: 30px;
  }

  .topgrid {
    padding: 20px 0;
  }

  .p5title {
    font-size: 16px;
  }

  .p4form input.greenbutton {
    padding: 20px 50px;
  }

  .p5form input.greenbutton {
    padding: 20px 50px;
    margin-top: 0;
  }

  header {
    padding: 10px;
  }
  header h1 {
    padding: 0;
    margin: 0;
  }
  header h1 img {
    height: 50px;
    width: auto;
  }

  .dealertop h2 small {
    line-height: 1.5em;
  }

  .carbothold {
    background: url(/new/common/images/ncd-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-top: 25%;
    padding-bottom: 20px;
  }
  .carbothold img {
    display: none;
  }

  .selectqual svg {
    position: absolute;
    right: 0.75rem;
    top: 45%;
    color: #fff;
  }

  .toptext {
    padding-top: 0;
    padding-bottom: 15px;
  }
  .toptext h2 {
    font-size: 1.3em;
    padding-left: 9%;
    padding-right: 9%;
  }
  .toptext h3 {
    font-size: 2.5em;
    padding-left: 9%;
    padding-right: 9%;
  }

  .bluebox {
    background: #392eff;
    padding: 30px 0;
  }
  .bluebox ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: inline-block;
    text-align: left;
  }
  .bluebox ul li {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 50px;
    position: relative;
    z-index: 1;
  }
  .bluebox ul li .number {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: #06de6c;
    text-align: center;
    line-height: 50px;
    color: #392eff;
    font-weight: 600;
    font-size: 20px;
    margin-right: 5px;
  }
  .bluebox ul:before {
    content: "";
    position: absolute;
    left: 18px;
    top: 10px;
    height: 80%;
    width: 15px;
    background: #06de6c;
  }

  /*page 2*/
  .greybox {
    background: #fff;
    padding: 0 0 40px;
  }
  .greybox:before {
    display: none;
  }

  .dealertop {
    padding: 0 0 30px;
  }

  /*page 2*/
  .cell1 {
    border-top: 0;
  }

  .p2title {
    font-size: 16px;
  }

  /*page 4*/
  .p4form .formtitle {
    font-size: 16px;
  }
  .p4form .formtitle:before {
    content: "";
    top: 0;
    left: 50%;
    width: 30%;
    height: 7px;
    background: #06de6c;
    margin-left: -15%;
    position: absolute;
  }

  /*page 6*/
  .checkhold h2 {
    font-size: 16px;
  }

  .p6whitebox {
    padding-bottom: 0;
  }

  .p6top {
    position: relative;
    margin-top: 10px;
    line-height: 1.5em;
    font-size: 18px;
    padding-top: 20px;
  }
  .p6top:before {
    content: "";
    top: 0;
    left: 50%;
    width: 30%;
    height: 7px;
    background: #06de6c;
    margin-left: -15%;
    position: absolute;
  }
}
@media print, screen and (max-width: 400px) {
  .bluebox ul li {
    font-size: 12px;
    line-height: 30px;
  }

  .bluebox ul li .number {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background: #06de6c;
    text-align: center;
    line-height: 30px;
    color: #392eff;
    font-weight: 600;
    font-size: 18px;
    margin-right: 5px;
  }

  .bluebox ul:before {
    content: "";
    position: absolute;
    left: 11px;
    top: 5%;
    height: 80%;
    width: 8px;
    background: #06de6c;
  }

  .carpicker img {
    height: 185px;
    width: auto;
    margin-top: -20px;
  }
}
/*
loader
*/
.spin {
  text-align: center;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
  0% {
    stroke: #392eff;
  }
  25% {
    stroke: #392eff;
  }
  50% {
    stroke: #06de6c;
  }
  75% {
    stroke: #392eff;
  }
  100% {
    stroke: #06de6c;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
input {
  box-shadow: none !important;
}

.p1form input::-webkit-input-placeholder {
  color: #fff;
}

.p1form input::-moz-placeholder {
  color: #fff;
}

.p1form input:-moz-placeholder {
  color: #fff;
}

.p1form input::-ms-input-placeholder {
  color: #fff;
}

.p2form input {
  color: #777;
}
.p2form input[type=submit] {
  color: #fff;
}

.p2form input::-webkit-input-placeholder {
  color: #777;
  opacity: 1;
}

.p2form input::-moz-placeholder {
  color: #777;
  opacity: 1;
}

.p2form input:-moz-placeholder {
  color: #777;
  opacity: 1;
}

.p2form input::-ms-input-placeholder {
  color: #777;
  opacity: 1;
}

.p4form input {
  color: #777;
}
.p4form input[type=submit] {
  color: #fff;
}

.p4form input::-webkit-input-placeholder {
  color: #777;
  opacity: 1;
}

.p4form input::-moz-placeholder {
  color: #777;
  opacity: 1;
}

.p4form input:-moz-placeholder {
  color: #777;
  opacity: 1;
}

.p4form input::-ms-input-placeholder {
  color: #777;
  opacity: 1;
}

.leadid_tcpa_disclosure {
  cursor: default !important;
}

[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #06de6c !important;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

input[type=text] {
  height: 42px !important;
}
input[type=number] {
  height: 42px !important;
}
input select {
  height: 42px !important;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
  padding: 0 0.5rem 0 0.75rem;
}

/* Webkit browsers like Safari and Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.p2form label.consentbox {
  margin-bottom: 5px;
}

.consentwords {
  color: #777;
}

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