@charset "UTF-8";
html {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 10px;
  height: 100%;
}
html, body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #454545;
  overflow-x: hidden;
}
body {
  min-height: 100%;
  background-image: url(../themes/cartracker/assets/img/cartracker.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: white;
}
button {
  background-color: #e30613;
  color: white;
  border: 0;
  font-size: 2.2rem;
  padding: 1rem 2rem;
  min-width: 13rem;
  margin-top: 2rem;
  cursor: pointer;
}
button:hover {
  background-color: #e60000;
}
button.disabled {
  background-color: #999;
}
h1, h2, h3, p {
  margin: 0;
  padding: 0 2rem;
}
h1, h2, h3 {
  color: #e30613;
}
h1 {
  font-size: 4rem;
  text-align: center;
  padding: 7rem 3rem;
}
h2 {
  font-size: 2.4rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
}
h3 {
  font-size: 2.6rem;
  padding-bottom: 3rem;
}
p {
  font-size: 1.8rem;
  line-height: 3.5rem;
  margin-bottom: 1rem;
}
a {
  color: #e2001a;
}
ul {
  list-style: none;
}
ul li {
  position: relative;
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: black;
  padding-bottom: 1.5rem;
}
ul li:before {
  position: absolute;
  content: "»";
  left: -1.5rem;
  color: #d80000;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.boxes {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
}
.boxes .box {
  width: 49%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0;
  text-align: center;
  border-radius: 0.5rem;
}
.boxes .box h3, .boxes .box p {
  padding: 0;
  margin: 0 0 1rem;
}
.boxes .box p {
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .boxes {
    flex-direction: column;
  }
  .boxes .box {
    width: 100%;
  }
  .boxes .box:first-child {
    margin-bottom: 2rem;
  }
}
section {
  position: absolute;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 100%;
  transition: all 1s;
}
section.active {
  position: relative;
  opacity: 1;
  left: 0;
}
section.done {
  position: absolute;
  opacity: 0;
  left: -100%;
  transition: all 1s;
}
a {
  font-weight: 600;
  text-decoration: none;
}
form.voucher {
  padding: 0 2rem;
  margin: 2rem 0 1rem;
}
form.voucher h3 {
  padding: 0;
}
.tracker select {
  margin: 0 0 1rem;
}
.tracker .input, .tracker select {
  text-align: center;
}
.tracker .input {
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.7rem;
}
.tracker .input.checkbox {
  max-width: 400px;
  padding-top: 1rem;
  padding-left: 5rem;
  margin: 0 auto 2rem;
}
.tracker .input label {
  line-height: 2rem;
}
select {
  border: 1px solid black;
  padding: 0.5rem 1rem;
  font-size: 2.5rem;
  min-width: 100px;
}
input[type="text"] {
  border: 1px solid #b7b7b7;
  line-height: 5rem;
  height: 5rem;
  padding: 0 2rem;
  font-size: 2rem;
}
input[type=checkbox] {
  position: absolute;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  top: 0.5rem;
  left: 0;
}
input[type=checkbox]:before {
  position: absolute;
  content: " ";
  background-color: white;
  border: 1px solid #333;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  left: 10px;
}
input[type=checkbox]:checked:before {
  content: "X";
  text-align: center;
  line-height: 2.6rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.buttons {
  display: flex;
  padding: 0 2rem 4rem;
  justify-content: space-between;
}
@media (max-width: 600px) {
  html {
    font-size: 1.8vw;
  }
}
header {
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.55);
}
header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
header .content p {
  margin: 0;
  padding-right: 0;
  text-align: right;
}
footer {
  background-color: #4a494a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10rem;
}
footer a {
  color: white;
  font-size: 2.4rem;
  font-weight: normal;
  margin-right: 2rem;
}
.tableWrap {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 6rem 3rem;
}
table {
  font-size: 2.2rem;
  border-collapse: collapse;
  width: 100%;
  min-width: 80rem;
}
table td, table th {
  padding: 1.2rem 2rem;
}
table thead th:nth-of-type(2), table thead th:nth-of-type(3), table tfoot th:nth-of-type(2), table tfoot th:nth-of-type(3) {
  background-color: #4a494a;
  color: white;
  text-transform: uppercase;
  font-weight: normal;
  cursor: pointer;
}
table thead th:nth-of-type(2), table thead th:nth-of-type(3), table tfoot th:nth-of-type(2), table tfoot th:nth-of-type(3) {
  border-top: unset;
  border-bottom: 1px solid white;
}
table tbody tr td {
  background-color: #f1f1f1;
}
table tbody tr td:nth-of-type(2), table tbody tr td:nth-of-type(3) {
  text-align: center;
  background-color: #e3e3e3;
}
table tbody tr:nth-of-type(even) td {
  background-color: #d3d3d4;
}
table tbody tr:nth-of-type(even) td:nth-of-type(2), table tbody tr:nth-of-type(even) td:nth-of-type(3) {
  text-align: center;
  background-color: #c4c4c5;
}
table.standard thead th:nth-of-type(2), table.standard tfoot th:nth-of-type(2) {
  background-color: #e30613;
  border: 1px solid #e30613;
  font-weight: bold;
}
table.standard tbody tr td:nth-of-type(2) {
  background-color: #e4c4c4;
  border-left: 1px solid #e30613;
  border-right: 1px solid #e30613;
}
table.standard tbody tr:nth-of-type(even) td:nth-of-type(2) {
  background-color: #c6a6a6;
}
table.premium thead th:nth-of-type(3), table.premium tfoot th:nth-of-type(3) {
  background-color: #e30613;
  border: 1px solid #e30613;
  font-weight: bold;
}
table.premium tbody tr td:nth-of-type(3) {
  background-color: #e4c4c4;
  border-left: 1px solid #e30613;
  border-right: 1px solid #e30613;
}
table.premium tbody tr:nth-of-type(even) td:nth-of-type(3) {
  background-color: #c6a6a6;
}
.data {
  display: block;
}
.data p {
  text-align: center;
  margin-top: 3rem;
  font-size: 3rem;
}
.data p.small {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.data form {
  padding: 0 2rem 3rem 2rem;
  position: relative;
  max-width: 1000px;
  margin: 5rem auto 0 auto;
}
.data form .input {
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.7rem;
}
.data form .input.checkbox {
  padding-top: 1rem;
  padding-left: 5rem;
}
.data form .input label {
  line-height: 2rem;
}
.data form hr {
  border: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
  margin-bottom: 2rem;
}
.data form select {
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  height: 5rem;
  padding: 0 2rem;
  font-size: 2rem;
  width: 100%;
}
.data form select:invalid {
  color: gray;
}
.data form select option {
  color: black;
}
.data form input {
  width: calc(100% - 4rem);
}
.data form input[type=checkbox] {
  position: absolute;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  top: 0.5rem;
  left: 0;
}
.data form input[type=checkbox]:before {
  position: absolute;
  content: " ";
  background-color: white;
  border: 1px solid #333;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.data form input[type=checkbox]:checked:before {
  content: "X";
  text-align: center;
  line-height: 2.6rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.data form label p {
  font-size: 1.6rem;
}
.data form .notes {
  margin-bottom: 2rem;
}
.data form .notes p {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.9rem;
  padding: 0;
}
.data form .delivery {
  display: none;
}
.data form p[data-validate-for] {
  color: red;
  font-size: 1.5rem;
  line-height: 1.7rem;
  text-align: center;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .data form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .data form .input, .data form .dummy {
    width: 48.5%;
  }
  .data form .span2, .data form .buttons, .data form .notes, .data form hr {
    width: 100%;
  }
}
.success img {
  float: right;
  margin: 0 8rem 0 18rem;
}
@media (max-width: 700px) {
  .success img {
    margin: 0 0 3rem 3rem;
    width: 30%;
  }
}
