/* Common Styles */

hr {
  border-color: #333;
}
.error {
  border-left: 5px solid red;
  padding-left: 5px;
  color: red;
}
.alert {
  border: 2px solid #ff4500;
  border-radius: 5px;
  padding: 0.8rem;
}
.success {
  border-left: 5px solid green;
  padding-left: 5px;
  color: green;
}
.strikethrough {
  text-decoration: line-through;
}
.couponResponse {
  display: block;
  margin: 10px 0;
  padding: 10px;
}
.productDetailsWrapper {
  padding-left: 20px;
  list-style-type: disc;
  margin-left: 15px;
}
.grid-container {
  display: grid;
  margin-bottom: 15px;
}
.name-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.coupon-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 15px;
}
.product-grid-container {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px;
  grid-template-rows: auto;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .product-grid-container {
    grid-template-columns: 50%;
  }
  .customer-summary.product-grid-container {
    grid-template-columns: 1fr 1fr;
  }
}
.product-checkbox,
.radio-button {
  opacity: 0;
  width: 0;
  position: fixed;
}
.product-details-wrapper,
.radio-label,
.suburbs-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #d2d2d7;
  border-radius: 7px;
  cursor: pointer;
  transition: all 200ms ease-in;
}
.product-details-wrapper:hover,
.radio-label:hover,
.suburbs-label:hover {
  border-color: #000;
}
.product-checkbox:checked + .product-details-wrapper,
.radio-button:checked + .radio-label {
  border: 2px solid #0071e3;
}
.product-grid-item {
  align-self: center;
  width: 100%;
}
.product-name,
.product-price {
  padding: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  cursor: pointer;
}
.product-commencement {
  width: 90%;
  background-color: #f3f3f3;
  border-radius: 7px;
  padding: 10px 20px 25px;
}
@media only screen and (min-width: 768px) {
  .product-commencement {
    width: 45%;
  }
}
.grid-item .commencement-date {
  width: 100%;
  padding: 20px;
  margin: 6px 0 4px;
  border: 1px solid #ccc;
  color: #000;
  font-family: roboto, helvetica, sans-serif;
  font-size: 16px;
  line-height: normal;
  box-sizing: border-box;
  border-radius: 7px;
}
.product-name {
  width: 100%;
}
.radio-label {
  padding: 20px;
  justify-content: center;
}
.suburbs-label {
  padding: 10px;
}
.radio-button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  .radio-button-group {
    grid-template-columns: 20% 20%;
  }
}

.the-checkbox {
  position: relative;
  padding-left: 45px;
}
.the-checkbox:before {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.the-checkbox:after {
  width: 20px;
  height: 20px;
  content: "";
  border: 2px solid #d1d7dc;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='1 1 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}
.product-details-wrapper:hover .the-checkbox:after {
  border-color: #000;
}
.visual-checkbox:checked + * .the-checkbox:after,
.visual-checkbox:checked + .the-checkbox:after {
  background-color: #0071e3;
  border-color: #0071e3;
}

.coupon-grid-container {
  display: grid;
  grid-template-columns: auto 10px 110px;
  grid-template-rows: 50px;
  margin-bottom: 15px;
}
.cart-summary-grid {
  display: grid;
  grid-template-columns: auto 100px 170px;
  grid-template-rows: auto auto auto;
}
.grid-2-columns {
  display: grid;
  grid-template-columns: auto auto;
}
.grid-item,
.product-grid-item {
  align-self: center;
}
.grid-item.box-bold input {
  border: 3px solid #bbb;
}
.grid-item input {
  margin: 0;
}
.cart-summary-grid > div {
  align-self: center;
  padding: 10px;
}
.grid-item-2-col {
  grid-column: span 2;
}
.grid-item-3-col {
  grid-column: span 3;
}
.align-right,
.align-right > * {
  text-align: right;
}
.dashed {
  border-style: dashed;
}
ul.slides li.slide {
  list-style: none;
}
@media print {
  body > *,
  body .container {
    max-width: 600px;
    margin: 0 auto;
  }
  .slides {
    padding: 0;
  }
  .no-print {
    display: none;
  }
}
/* Payments related styles */
.PaymentLogoGrid {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  margin: 1rem 0;
  padding: 0;
}
.PaymentLogo {
  margin: 5px;
}
.PaymentLogoGrid > svg:first-child {
  margin-left: 0;
}
.payment-section {
  /*border: 1px solid #e1e1e1;*/
  border-radius: 5px;
  margin: 20px;
}
.the-separator {
  font-style: italic;
  margin: 0 auto;
  color: #888;
  width: 95px;
}
.the-separator:before,
.the-separator:after {
  content: "\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0";
  text-decoration: line-through;
}
.dynamic-payments > .StripeElement {
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-block;
}
button,
input[type="submit"],
.dynamic-payments > .StripeElement {
  width: 100%;
}
@media screen and (min-width: 480px) {
  button,
  input[type="submit"],
  .dynamic-payments > .StripeElement {
    width: 220px;
  }
  .the-separator {
    margin: 20px;
  }
}
/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.75);
}
@-ms-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.uil-ring-css {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  display: block;
}
.uil-ring-css > div {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  top: 0x;
  left: 0x;
  border-radius: 50%;
  margin: 5px;
  border: 5px solid #fff;
  border-color: #fff transparent transparent transparent;
  -ms-animation: uil-ring-anim 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -moz-animation: uil-ring-anim 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-animation: uil-ring-anim 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -o-animation: uil-ring-anim 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: uil-ring-anim 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.uil-ring-css div:nth-child(1) {
  animation-delay: -0.45s;
}
.uil-ring-css div:nth-child(2) {
  animation-delay: -0.3s;
}
.uil-ring-css div:nth-child(3) {
  animation-delay: -0.15s;
}
.vex-unavailable {
  padding: 20px;
  border: 2px solid #db0b0b;
  border-radius: 7px;
}
/* End of Loading */

/* Common Overrides */
/*  applies to all websites */
#s-page-container input[type="text"],
#s-page-container input[type="email"],
#s-page-container input[type="password"],
#s-page-container input[type="number"],
#s-page-container select,
#s-page-container .StripeElement {
  width: 100%;
  padding: 12px;
  margin: 6px 0 4px;
  border: 1px solid #ccc;
  background: #fafafa;
  color: #000;
  font-family: "AcuminProRegular";
  font-size: 16px;
  line-height: normal;
  box-sizing: border-box;
  border-radius: 2px;
}
#s-page-container select {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+)
    no-repeat 99% 50%;
  -webkit-appearance: none;
  background-color: #fafafa;
}
#s-page-container button,
.button,
#s-page-container input[type="submit"] {
  font-family: "AcuminProRegular";
  color: #fff;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 28px;
  margin-top: 20px;
  line-height: 1.8em;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 0;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  background: #a3826c;
  transition: all 0.15s ease 0s;
  width: auto;
  -webkit-appearance: none;
}
#s-page-container input[type="submit"]:hover {
  opacity: 0.8;
}

@font-face {
  font-family: "AcuminProRegular";
  src: url("/includes/css/fonts/AcuminPro-Regular.eot");
  src: url("/includes/css/fonts/AcuminPro-Regular.woff") format("woff");
}
@font-face {
  font-family: "ProximaNovaRegular";
  src: url("/includes/css/fonts/proxima_nova_font-.eot");
  src: url("/includes/css/fonts/proxima_nova_font-.woff") format("woff");
}
@font-face {
  font-family: "PoppinsLight";
  src: url("/includes/css/fonts/poppins-light-.eot");
  src: url("/includes/css/fonts/poppins-light-.woff") format("woff");
}
#s-page-container h1,
#s-page-container h2 {
  font-family: "AcuminProRegular";
  font-size: 45px !important;
}
#s-page-container h2.subheading-landing {
  font-family: "AcuminProRegular";
  font-size: 26px !important;
}
@media screen and (max-width: 480px) {
  #s-page-container h1,
  #s-page-container h2 {
    font-family: "AcuminProRegular";
    font-size: 36px !important;
  }
}
#s-page-container h3 {
  font-family: "AcuminProRegular";
  font-size: 20px !important;
  font-weight: bold !important;
  margin: 2rem 0 10px !important;
}
#s-page-container label,
#s-page-container input[type="submit"] {
  font-family: "ProximaNovaRegular";
}
#s-page-container label {
  font-size: 16px !important;
}
#s-page-container p {
  font-family: "PoppinsLight";
  font-size: 16px;
}
#s-page-container .privacy-disclaimer {
  font-size: 12px !important;
  margin-top: 30px;
}
.s-footer-text p {
  font-size: 12px !important;
  margin-top: 30px;
}
#s-page-container h3.awnFormLabel {
  margin-top: 30px !important;
}
#s-page-container .awnFormLabel {
  margin-top: 20px !important;
}
@media screen and (max-width: 480px) {
  #s-page-container .awnFormLabel {
    margin-top: 10px !important;
  }
}
#s-page-container .bullets li {
  line-height: 1.5rem;
  list-style: none;
  font-family: "PoppinsLight";
  font-size: 14px;
  margin-left: 0;
}
.subheading {
  font-weight: bold;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group>.btn:first-child {
    margin-left: 0;
}
.btn-group-vertical>.btn.active, .btn-group-vertical>.btn:active, .btn-group-vertical>.btn:focus, .btn-group-vertical>.btn:hover, .btn-group>.btn.active, .btn-group>.btn:active, .btn-group>.btn:focus, .btn-group>.btn:hover {
    z-index: 2;
}
.btn-group-vertical>.btn, .btn-group>.btn {
    position: relative;
    float: left;
}
.btn-primary.active, .btn-primary:active, .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #a3826c;
    background-image: none;
    border-color: #725b4b;
}
.btn.active, .btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
  box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
}
.btn-group-lg>.btn, .btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-primary {
  color: #fff;
  background-color: #a3826c;
  border-color: #725b4b;
}
.btn-group, .btn-group-vertical {
  display: flex;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.original-ul-class {
  Margin-top: 20px;
  Margin-bottom: 0;
  Margin-left: 24px;
  padding: 0;
  list-style-type: disc;
}
.was-price {
  font-style: italic;
  color: red;
}
.total-price {
  font-size: 15px !important;
  font-style: italic;
  color: grey;
}
.loader {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: grey darkgrey;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
#new-for-old-vehicle {
  .the-checkbox:after {
    background-color: green;
  }
  .success {
    border-left: none;
  }
}
.logged-in {
  color: green;
}
.required {
  font-size: 13px;
}