/* Global Settins */
* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}

/* Root */
:root {
  /* Font Size */
  font-size: 14px;

  /* Color */
  --dodoo-background-color: #fff;
  --dodoo-red: #ff2d00;
  --dodoo-dark-red: #9f041b;
  --dodoo-blue: #1953ff;
  --dodoo-light-blue: #aaffff;
  --dodoo-dark-green: #00474f;
  --dodoo-navy: #2d3399;
  --dodoo-yellow: #ffff00;
  --dodoo-white: #fff;
  --dodoo-black: #232629;
  --dodoo-light-gray: #eee;
  --dodoo-gray: #d8d8d8;
  --dodoo-dark-gray: #979797;
  --dodoo-font-semibold: 600;
  --dodoo-font-bold: 700;

  /* Dimension */
  --core-nav-x-spacing: 0.5rem;
  --nav-height: 63px;
  --landing-height: 720px;
  --sub-header: 50%;
  --cta-height: 24rem;
  --stats-height: 24rem;
  --duo-page-height: calc(100vh - 4.5rem);
  --duo-page-img-display: none;
  --header-text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);

  /* Grid Template */
  --service-section-grid-template: auto / 1fr;
  --job-section-grid-template-area: "do" "pu" "jf";
  --job-section-grid-template-column: auto / 1fr;
  --store-section-grid-template: auto / 1fr;
  --footer-company-section-grid-template: auto / 1fr;
  --distribution-section-grid-template: auto/1fr;
  --truck-section-grid-template-area: "tn" "td" "tf";
  --stats-section-grid-template: auto/1fr;
  --tracking-section-grid-template: auto/1fr;

  /* Animateion */
  --roller-item-width: 15.75rem;
  --roller-item-height: 7.5rem;
  --roller-speed-per-item: 5s;

  /* Common */
  --wrapper-max-width: 320px;
}

/* Pre-flight */
body {
  margin: 0;
  max-width: 100vw;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-width: 0;
  border-style: solid;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
}

i {
  user-select: none;
}

button:hover {
  cursor: pointer;
}

img {
  pointer-events: none;
}

/* Unique Reusable */

.disappear {
  width: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.hide {
  display: none !important;
  z-index: 0;
}

.selectable {
  user-select: text !important;
}

.center {
  display: grid;
  place-content: center;
  text-align: center;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.fs-1\.5 {
  font-size: 1.5rem;
}

.fs-2 {
  font-size: 2rem;
}

.space-x-0\.5>*+* {
  margin-right: 0;
  margin-left: 0.5rem;
}

.space-x-1>*+* {
  margin-right: 0;
  margin-left: 1rem;
}

.space-x-2>*+* {
  margin-right: 0;
  margin-left: 2rem;
}

.space-x-2\.5>*+* {
  margin-right: 0;
  margin-left: 2.5rem;
}

.space-x-5>*+* {
  margin-right: 0;
  margin-left: 5rem;
}

.space-y-0\.5>*+* {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.space-y-1>*+* {
  margin-bottom: 0;
  margin-top: 1rem;
}

.space-y-1\.5>*+* {
  margin-bottom: 0;
  margin-top: 1.5rem;
}

.space-y-2>*+* {
  margin-bottom: 0;
  margin-top: 2rem;
}

.space-y-2\.5>*+* {
  margin-bottom: 0;
  margin-top: 2.5rem;
}

.p-20 {
  padding: 20px;
}

/* Custom */
.wrapper {
  max-width: var(--wrapper-max-width);
  margin: 0 auto;
}

main>.parent {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main>.parent> :not(:last-child) {
  flex-grow: 1;
}

.nav-drawer-wrapper {
  display: none;
  position: absolute;
  width: 100vw;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.3);
}

.nav-drawer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  width: 300px;
  color: var(--dodoo-white);
  background: var(--dodoo-red);
  box-shadow: var(--box-shadow);
}

.nav-drawer .nav-control {
  padding: 1rem;
}

.nav-drawer .nav-control>div>a {
  padding: 1rem 0;
}

.nav-drawer .nav-control h3 {
  font-weight: var(--dodoo-font-bold);
  font-size: 1.25rem;
}

.nav-drawer .drawer-control {
  justify-self: flex-end;
  background: transparent;
  padding: 1rem 0;
  font-size: 2rem;
}

.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--dodoo-red);
  color: var(--dodoo-white);
  font-weight: var(--dodoo-font-bold);
  padding: 0.75rem 1.25rem;
  z-index: 10;
}

.top-nav * {
  user-select: none;
}

.top-nav>ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  position: relative;
  padding: 0 0.5rem;
  cursor: pointer;
}

.nav-item>a {
  height: 3rem;
}

.nav-item:not(:last-child):hover>a {
  color: var(--dodoo-yellow);
}

.nav-item>a>span {
  display: none;
}

.blue {
  color: blue;
}

.top-nav img {
  user-select: none;
  pointer-events: none;
}

.dropdown:hover>.dropdown-list {
  display: block !important;
}

.dropdown-list {
  display: none;
  position: absolute;
  border-radius: 0.25rem;
  box-shadow: var(--box-shadow);
  background: var(--dodoo-white);
  color: var(--dodoo-dark-green);
  padding: 0.5rem 0;
  right: 0;
  min-width: 280px;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-list li {
  border-bottom: 1px solid var(--dodoo-gray);
  white-space: nowrap;
  font-size: 1rem;
}

.dropdown-list li:first-child {
  border-top: 1px solid var(--dodoo-gray);
}

.dropdown-list a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
}

.dropdown-list li:hover a {
  color: var(--dodoo-white);
  background-color: var(--dodoo-navy);
}

.dropdown-list li a i {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.core-nav {
  display: flex;
  align-items: center;
}

.core-nav>*+* {
  margin-right: 0;
  margin-left: var(--core-nav-x-spacing);
}

.login-button {
  border-radius: 0.25rem;
  background-color: var(--dodoo-light-blue);
  color: var(--dodoo-navy);
  padding: 0.75rem 1.25rem;
  font-weight: var(--dodoo-font-bold);
  display: flex;
  align-items: center;
}

.scroll-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  height: 5rem;
  width: 5rem;
  border-radius: 100%;
  box-shadow: var(--box-shadow);
  background-color: var(--dodoo-navy);
  color: var(--dodoo-white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 200ms;
}

.scroll-to-top i {
  font-size: 2rem;
}

.landing-section,
.courier-section {
  background: linear-gradient(180deg,
      var(--dodoo-red) 0%,
      var(--dodoo-dark-red) 100%);
  background-image: linear-gradient(to bottom,
      var(--dodoo-red),
      var(--dodoo-red),
      var(--dodoo-dark-red));
}

.landing-distribution-section {
  background-image: url(../images/covers/distribution.jpg);
  background-repeat: no-repeat;
  background-position-y: top;
  background-position-x: 75%;
  background-size: cover;
  user-select: none;
}

.landing-big-item-section .landing-header h1 {
  white-space: normal !important;
}

.landing-big-item-section {
  background-image: url(../images/covers/lorry.jpg);
  background-repeat: no-repeat;
  background-position-y: 30%;
  background-position-x: 50%;
  background-size: cover;
  user-select: none;
}

.landing-section * {
  user-select: none;
}

.landing-wrapper {
  display: flex;
  min-height: var(--landing-height);
  margin: 0 auto;
}

.landing-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-x: visible;
  padding: 1.5rem 0 3.5rem;
}

.main-wrapper {
  max-width: 50vw;
}

.main-wrapper .landing-header {
  justify-content: start;
  margin-top: 11vw;
}

.landing-header h1 {
  color: var(--dodoo-white);
  font-family: Montserrat;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 3.5rem;
  text-shadow: var(--header-text-shadow);
}

.sub-header {
  width: 80%;
}

.w-auto {
  width: auto;
}

.w-1\/2 {
  width: 50%;
}

.w-3\/4 {
  width: 75%;
}

.w-full {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.h-align-center {
  display: flex;
  align-items: center;
}

.landing-header p {
  color: var(--dodoo-white);
  font-family: Montserrat;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2.25rem;
  text-shadow: var(--header-text-shadow);
}

.landing-image {
  display: none;
  flex-shrink: 0;
  align-self: flex-end;
  width: 40%;
}

.landing-image img {
  /* width: 100%; */
  margin-left: auto;
  max-height: calc(var(--landing-height) - var(--nav-height));
}

.service-section,
.job-section,
.distribution-section {
  padding: 96px 0;
}

.service-section * {
  user-select: none;
}

.service-section h2,
.job-section h2,
.distribution-section h2 {
  color: var(--dodoo-black);
  font-family: Montserrat;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 2rem;
  text-align: center;
}

.service-wrapper {
  margin-top: 108px;
  display: grid;
  grid: var(--service-section-grid-template);
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  border-radius: 0.25rem;
  border: 1px solid var(--dodoo-gray);
}

.service-card p {
  font-size: 16px;
}

.service-card:hover {
  cursor: pointer;
  box-shadow: var(--box-shadow);
}

.service-card h3,
.job-card h3,
.distribution-card h3 {
  margin: 1.75rem 0;
  color: var(--dodoo-red);
  font-size: 24px;
  font-weight: 700;
}

.service-card {
  padding: 2rem;
}

.service-logo {
  margin: 0 auto;
  height: 9rem;
  width: 9rem;
  border-radius: 9999px;
}

.cta-section {
  height: var(--cta-height);
  padding: 5.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-image: url("../images/covers/divider.jpg");
  background-repeat: no-repeat;
  background-position-y: 35%;
  background-size: cover;
  user-select: none;
}

.cta-section h2 {
  text-align: center;
  color: var(--dodoo-white);
  font-size: 2rem;
  text-shadow: var(--header-text-shadow);
  font-weight: var(--dodoo-font-bold);
  margin-bottom: 2.5rem;
}

.input-layer {
  position: relative;
}

.input-layer.input-right>input {
  padding-left: 2.5rem !important;
}

.input-layer.input-left>input {
  padding-right: 2.5rem !important;
}

.tracking-input,
.branch-input {
  border: 1px solid var(--dodoo-gray);
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.25rem;
  padding: 0 0.75rem 0 2.5rem;
  width: 100%;
}

.form-error-message {
  max-width: fit-content;
}

.job-form .input-layer>span {
  position: absolute;
  display: flex;
  height: 100%;
  top: 0;
  width: 2rem;
  padding: inherit;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  font-weight: 500;
  color: #979797;
}

.job-form .input-layer.input-right>span {
  left: 0;
  margin-left: 0.5rem;
}

.job-form .input-layer.input-left>span {
  right: 0;
  margin-right: 0.5rem;
}

.input-layer>.tracking-input+span,
.input-layer>.branch-input+span {
  position: absolute;
  display: flex;
  height: 100%;
  top: 0;
  width: 2rem;
  padding: inherit;
  margin-left: 0.5rem;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.cta-button {
  background-color: var(--dodoo-navy);
  color: var(--dodoo-white);
  border-radius: 0.25rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: var(--dodoo-font-bold);
  white-space: nowrap;
  width: min-content;
}

.tracking-button {
  background-color: var(--dodoo-navy);
  color: var(--dodoo-white);
  border-radius: 0.25rem;
  padding: 1.5rem 1.75rem;
  font-size: 1.25rem;
  font-weight: var(--dodoo-font-bold);
  white-space: nowrap;
  width: min-content;
}

.post-job-button {
  background-color: var(--dodoo-navy);
  color: var(--dodoo-white);
  border-radius: 0.25rem;
  padding: 1.25rem;
  font-size: 1.25rem;
  font-weight: var(--dodoo-font-bold);
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  width: min-content;
}

.locate-button {
  background-color: var(--dodoo-navy);
  color: var(--dodoo-white);
  border-radius: 0.25rem;
  padding: 1.25rem;
  font-size: 1.25rem;
  font-weight: var(--dodoo-font-bold);
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  width: min-content;
}

.job-wrapper {
  margin-top: 108px;
  display: grid;
  grid: var(--job-section-grid-template-area);
  grid-template-columns: var(--job-section-grid-template-column);
  ;
  column-gap: 2.5rem;
  row-gap: 3.5rem;
}

.distribution-wrapper {
  margin-top: 108px;
  display: grid;
  grid: var(--distribution-section-grid-template);
  column-gap: 2.5rem;
  row-gap: 3.5rem;
}

.job-card,
.distribution-card {
  text-align: center;
}

.job-card:nth-child(1) {
  grid-area: do;
}

.job-card:nth-child(2) {
  grid-area: pu;
}

.job-card img,
.distribution-card img {
  width: 100%;
}

.job-icon {}

.job-form {
  grid-area: jf;
}

.job-form h4,
.truck-form h4 {
  font-size: 1.25rem;
  font-weight: var(--dodoo-font-bold);
}

.job-form form,
.truck-form form {
  border-bottom: 1px solid var(--dodoo-gray);
  padding: 1rem 0;
}

.job-form form>div,
.truck-form form>div {
  display: flex;
  align-items: center;
}

.job-form label,
.truck-form label {
  flex-shrink: 0;
  text-align: right;
  margin-right: 0.5rem;
  width: 4.5rem;
  font-size: 0.75rem;
  font-weight: var(--dodoo-font-bold);
}

.checkbox-input {
  display: flex;
  justify-content: flex-start;
  width: 100% !important;
  cursor: pointer;
  user-select: none;
  margin: 1rem 0;
}

.checkbox-input span {
  font-weight: var(--dodoo-font-semibold);
  color: #666;
  margin-left: 0.5rem;
}

.job-form input[type="number"],
.truck-form input[type="number"] {
  width: 100%;
  flex-grow: 1;
  border: 1px solid var(--dodoo-gray);
  border-radius: 0.25rem;
  padding: 0 0.5rem;
  height: 2.5rem;

}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.job-form .checkout .sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--dodoo-dark-gray);
  margin-bottom: 0.25rem;
}

.job-form .checkout .total,
.truck-form .checkout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--dodoo-font-bold);
}

.store-section {
  padding: 3rem 0;
  display: grid;
  grid: var(--store-section-grid-template);
  gap: 2rem;
  align-items: center;
}

.store-section img {
  width: 100%;
}

.store-section h3 {
  color: var(--dodoo-red);
  font-size: 2rem;
  font-weight: 700;
}

.store-section p {
  font-size: 1.25rem;
}

.store-detail {
  text-align: center;
}

.stats-section {
  margin-top: 105px;
  position: relative;
  background-color: var(--dodoo-red);
  height: var(--stats-height);
  overflow: visible;
}

.stats-section .wrapper {
  height: 100%;
  width: var(--wrapper-max-width);
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--dodoo-gray);
  background-color: #fff;
  border-radius: 0.25rem;
  box-shadow: var(--box-shadow);
  display: grid;
  grid: var(--stats-section-grid-template);
}

.stats-section h4 {
  color: var(--dodoo-red);
  font-size: 4rem;
  font-weight: var(--dodoo-font-bold);
}

.stats-section p {
  color: var(--dodoo-dark-gray);
  font-size: 1.5rem;
  font-weight: var(--dodoo-font-bold);
}

.tnc-parent {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.tnc-section,
.tracking-section,
.branch-section {
  margin-top: var(--nav-height);
}

.tnc-section {
  padding: 4.5rem 0;
  flex-grow: 1;
}

.tnc-section h1 {
  font-size: 1.25rem;
  font-weight: var(--dodoo-font-bold);
  color: var(--dodoo-red);
}

.tnc-section h4 {
  font-size: 0.75rem;
}

.tnc-container {
  display: flex;
  gap: 25px;
}

.tnc-selection {
  width: 30%;
  flex-basis: 280px;
  flex-shrink: 0;
}

.tnc-selection a {
  padding: 1rem;
  font-size: 17px;
  font-weight: 500;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #aaa;
  border-bottom: none;
  transition: 160ms;
  user-select: none;
}

.tnc-selection ul li:first-of-type a {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.tnc-selection ul li:last-of-type a {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom: 1px solid #aaa;
}

.tnc-selection a:hover {
  text-decoration: none;
  background-color: var(--dodoo-navy);
  border-color: var(--dodoo-navy);
  color: white;
  cursor: pointer;
}

.tnc-selection a.active {
  background-color: var(--dodoo-navy);
  border-color: var(--dodoo-navy);
  color: white;
}

.tnc-content {
  flex-grow: 1;
}

.tnc-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: underline;
  margin-bottom: 1rem;
}

.tnc-content h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.tnc-content p {
  margin-bottom: 1rem;
}

.tnc-content ul {
  list-style: disc;
}

.tnc-content ol {
  list-style: auto;
}

.tnc-content ul,
.tnc-content ol {
  margin: unset;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.tnc-content .tab-pane {
  display: none;
}

.tnc-content .tab-pane.active {
  display: initial;
}

.partner-section {
  text-align: center;
  padding: 6rem 0 2.5rem;
}

.partner-section h3 {
  font-size: 2rem;
  font-weight: var(--dodoo-font-bold);
  color: var(--dodoo-red);
}

.partner-section p {
  font-size: 1.25rem;
}

.roller {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.roller::before,
.roller::after {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  content: "";
  height: var(--roller-item-height);
  position: absolute;
  width: 200px;
  z-index: 2;
}

.roller::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.roller::before {
  left: 0;
  top: 0;
}

.roller-track {
  display: flex;
  width: calc(var(--roller-item-width) * var(--unique-roller-item-count) * 2);
  animation: rolling calc(var(--roller-speed-per-item) * var(--unique-roller-item-count)) linear infinite;
}

.roller-item {
  width: var(--roller-item-width);
  height: var(--roller-item-height);
  flex-shrink: 0;
  margin: 0 auto;
}

.roller-item img {
  height: var(--roller-item-height);
}

.truck-section {
  overflow: auto;
  display: grid;
  grid-template-areas: var(--truck-section-grid-template-area);
}

.truck-nav {
  grid-area: tn;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--dodoo-gray);
  margin-bottom: 2.5rem;
  overflow: auto;
  width: var(--wrapper-max-width);
}

.truck-nav button {
  flex-grow: 1;
  flex-shrink: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
}

.truck-nav button * {
  pointer-events: none;
}

.truck-nav button.active .truck-button-label {
  border-color: var(--dodoo-red);
  color: var(--dodoo-red);
}

.truck-nav button img {
  height: 5rem;
  padding: 0 1rem;
}

.truck-button-label {
  font-weight: var(--dodoo-font-bold);
  color: var(--dodoo-dark-gray);
  padding: 1.25rem 0;
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  border-bottom: 0.25rem solid transparent;
}

.truck-display {
  opacity: 0;
  grid-area: td;
  transition: 0.5s;
}

.truck-display>table {
  transition: unset;
}

.truck-display.show {
  opacity: 1;
  display: initial;
}

.truck-display img {
  width: calc(var(--wrapper-max-width) * 0.8);

  margin: 0 auto;
}

.truck-display table {
  width: 100%;
  margin-top: 2rem;
}

.truck-display table tr,
.truck-display table td {
  vertical-align: baseline;
  width: 50%;
}

.truck-display table th {
  font-weight: var(--dodoo-font-bold);
  text-align: right;
  padding-right: 2.5rem;
}

.truck-form {
  width: var(--wrapper-max-width);
  grid-area: tf;
}

.tracking-section,
.branch-section {
  display: grid;
  grid: var(--tracking-section-grid-template);
  height: var(--duo-page-height);
}

.tracking-section .tracking-img {
  display: var(--duo-page-img-display);
  width: 100%;
  background-image: url(../images/covers/tracking.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  user-select: none;
}

.branch-section .branch-img {
  display: var(--duo-page-img-display);
  width: 100%;
  background-image: url(../images/covers/store-locator.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  user-select: none;
}

.tracking-display,
.branch-display {
  padding: 3rem 4rem;
  overflow-y: auto;
}

.tracking-display h1,
.branch-display h1 {
  font-size: 2rem;
  font-weight: var(--dodoo-font-bold);
}

.tracking-display .tracking-input-container,
.branch-display .branch-input-container {
  padding: 2rem 0;
  position: sticky;
  position: -webkit-sticky;
  top: -3rem;
  z-index: 9;
  margin-bottom: 0.5rem;
  background-color: var(--dodoo-background-color);
}

.tracking-input-container .tracking-input,
.branch-input-container .branch-input {
  width: 100%;
}

.tracking-progress {
  overflow-y: auto;
  user-select: none;
}

.tracking-progress .progress {
  display: grid;
  grid: auto/ auto 1fr 3fr;
  justify-content: flex-start;
}

.tracking-progress p {
  color: var(--dodoo-dark-gray);
}

.progress .dt {
  text-align: right;
  padding-bottom: 1rem;
  min-width: 90px;
}

.progress .cirlce {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  border: 1px solid var(--dodoo-gray);
  margin: 0 auto;
}

.progress.filled .cirlce {
  border: 1px solid var(--dodoo-blue);
  background-color: var(--dodoo-blue);
  position: relative;
}

.progress.filled.latest .cirlce::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background-color: var(--dodoo-blue);
  top: -1px;
  left: -1px;

  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.progress.filled p {
  color: var(--dodoo-blue);
}

.progress .pl {
  position: relative;
}

.progress:not(:last-child) .pl::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 1rem);
  background-color: var(--dodoo-gray);
  top: 0;
  left: 50%;
  transform: translateY(1rem);
}

.progress.filled .pl::before {
  background-color: var(--dodoo-blue);
}

.progress.filled.latest .pl::before {
  background-color: var(--dodoo-gray);
}

.progress .tr {
  text-align: left;
  padding-bottom: 1rem;
}

.branch {
  padding: 1.5rem 0;
  border: 1px solid var(--dodoo-gray);
  border-radius: 0.25rem;
}

.branch>div {
  padding: 0 1.25rem;
  display: flex;
  align-items: flex-start;
}

.branch>div :not(p) {
  flex-grow: 0;
  flex-shrink: 0;
}

.branch>div h3,
.branch>div p {
  flex-grow: 1;
}

.branch h3 {
  font-weight: var(--dodoo-font-bold);
  font-size: 1.25rem;
}

.branch i {
  color: var(--dodoo-navy);
  font-size: 1rem;
}

.branch p~i {
  color: var(--dodoo-dark-gray);
  font-size: 1.5rem;
}

.branch h3+i {
  color: var(--dodoo-blue);
  font-size: 1.5rem;
}

.branch .pointer,
.branch .dd {
  cursor: pointer;
}

.branch .dd * {
  pointer-events: none;
}

.branch.expanded .expandable {
  display: block;
}

.expandable {
  display: none;
  position: relative;
  padding: 1.25rem;
  background-color: var(--dodoo-light-gray);
  border-top: 1px solid var(--dodoo-gray);
  border-bottom: 1px solid var(--dodoo-gray);
}

.expandable::before,
.expandable::after {
  content: "";
  height: 100%;
  width: 1px;
  background: var(--dodoo-light-gray);
  position: absolute;
  top: 0;
}

.expandable::before {
  right: -1px;
}

.expandable::after {
  left: -1px;
}

.expandable li {
  display: flex;
  align-items: flex-start;
}

.expandable li .day {
  min-width: 100px;
}

.expandable li .time {
  margin-left: 1rem;
}

.company-info {
  padding: 3.5rem 2.5rem;
  display: grid;
  grid: var(--footer-company-section-grid-template);
  gap: 2rem;
  background-color: var(--dodoo-light-blue);
  color: var(--dodoo-dark-green);
  user-select: none;
}

.company-info .company-logo {
  text-align: center;
}

.company-info .company-logo img {
  height: 108px;
  margin: 0 auto;
}

.company-info h3 {
  font-size: 1rem;
  font-weight: var(--dodoo-font-bold);
}

.company-info p {
  font-size: 1rem;
}

.company-info .social-container {
  display: flex;
  align-items: center;
}

.company-info .social-icon {
  border-radius: 9999px;
  background-color: var(--dodoo-dark-green);
  color: var(--dodoo-white);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
}

.company-info .contact-container li {
  display: flex;
  align-items: flex-start;
}

.company-info .contact-container li i {
  flex-shrink: 0;
}

.company-info .contact-container li p {
  flex-grow: 1;
  margin-top: 3px;
}

.company-info .footer-nav a:hover {
  color: var(--dodoo-navy);
}

.company-info .social-icon:hover {
  background-color: var(--dodoo-navy);
}

.company-footer {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background-color: var(--dodoo-navy);
  color: var(--dodoo-white);
}

.company-footer a {
  font-weight: var(--dodoo-font-bold);
}

.company-footer #cr {
  text-align: right;
}

.guest-job-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3rem;
}

.nav-item.guest-job:hover .guest-job-dropdown {
  display: block;
}

.guest-job-dropdown {
  display: none;
  position: absolute;
  top: calc(100%);
  right: 0;
  max-height: calc(60vh - 7rem);
  width: 280px;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  box-shadow: var(--box-shadow);
  background: var(--dodoo-white);
  border-radius: 0.25rem;
  transform: translateX(1rem);
  cursor: default;
}

.guest-job-dropdown::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 2px;
  border-end-end-radius: 10px;
  top: -1rem;
  right: 0.5rem;
  transform: translate(-50%, 52%) rotate(45deg);
  background-color: inherit;
}

.guest-job-dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #00474F;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.guest-job-dropdown-draft {
  color: #979797;
  font-weight: normal;
  font-size: 15px;
}

.guest-job-dropdown-content {
  color: #979797;
  font-size: 1rem;
  font-weight: var(--dodoo-font-semibold);
  text-align: center;
  white-space: normal;
}

.guest-job-dropdown-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D3399;
  font-weight: var(--dodoo-font-bold);
  background-color: white;
  border-color: #2D3399;
  border: 2px solid #2D3399;
  border-radius: 4px;
  min-width: 140px;
  height: 40px;
  margin: 1.25rem auto 0;
}

.guest-job-draft-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
  border-bottom: 1px solid #eee;
}

.guest-job-draft-list-item:hover {
  background-color: #E5EBF1;
}

.guest-job-draft-list-item> :nth-child(2) {
  text-align: right;
}

.guest-job-draft-list-item .job-type {
  cursor: pointer;
  color: #2D3399;
  font-weight: bold;
  text-decoration: underline;
  text-align: left;
}

.guest-job-draft-list-item .delete-draft {
  cursor: pointer;
  color: #FF2D00;
  font-size: 15px;
  text-decoration: underline;
}

.modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 20;
}

.modal-wrapper.show {
  display: flex;
}

.modal.sm {
  --modal-max-width: 700px;
}

.modal-wrapper .modal {
  display: flex;
  flex-direction: column;
  background-color: white;
  max-width: var(--modal-max-width, 880px);
  width: 100%;
  margin: 0 auto;
  border-radius: 0.3rem;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  outline: 0;
  padding: 40px 40px 20px 40px;
  gap: 20px;
}

.job-type-select-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.job-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

.job-type-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-type-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.job-type-desc {
  font-size: 13px;
  font-weight: normal;
}

.img-border-wrapper {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: unset;
  cursor: pointer;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.locked {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #00000030;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 50px;
}

.modal-title {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

.modal-desc {
  text-align: center;
}

.modal-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.modal-cta .red {
  --cta-color: red;
}

.modal-cta .blue {
  --cta-color: #2d3399;
}

.modal-cta button {
  outline: none;
  min-width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: bold;
  padding: 0 15px;
  border-radius: 5px;
}

.modal-cta button.solid {
  background-color: var(--cta-color);
  color: white;
  border: 2px solid var(--cta-color);
}

.modal-cta button.outline {
  background-color: transparent;
  color: var(--cta-color);
  border: 2px solid var(--cta-color);
}

.landing-section {
  margin-top: 60px;
  background-image: url('../../assets-4.0/images/covers/landing-ver.jpg');
  background-size: cover;
  background-color: #fa2c00;
  background-position-y: 0px;
  background-repeat: no-repeat;
}

/* Animation */
@keyframes rolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--roller-item-width) * var(--unique-roller-item-count)));
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Control small-screen portrait (mobile portrait) */
@media (orientation: portrait) and (max-width: 639px) {
  :root {
    --landing-height: 100vh;
  }

  .landing-header h1 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .landing-section .landing-wrapper {
    flex-direction: column;
    justify-content: space-between;
    max-width: var(--wrapper-max-width);
  }

  .landing-section .landing-wrapper>*+* {
    margin-left: 0;
  }

  .landing-big-item-section .landing-header {
    text-align: right;
  }

  .landing-section .landing-header {
    padding: 2rem 0 0;
  }

  .landing-section .landing-image {
    display: initial;
    flex-shrink: 0;
    width: auto;
  }

  .landing-section .landing-image img {
    width: 100%;
    max-height: calc(var(--landing-height) - var(--nav-height));
  }

  .tnc-container {
    flex-direction: column;
  }

  .tnc-container .tnc-selection {
    flex-basis: 0;
    width: 100%;
  }
}

/* Control Duo page Height */
@media (min-width: 640px) and (orientation: portrait) {
  :root {
    --duo-page-height: 61.8vh;
  }
}

/* Control Break Points */
@media (min-width: 640px) {
  :root {
    font-size: 14px;
    --wrapper-max-width: 560px;
    --core-nav-x-spacing: 2rem;
    --nav-height: 63px;
    --landing-height: 560px;
    --cta-height: 20rem;
    --stats-height: 13rem;
    --service-section-grid-template: auto/ repeat(2, minmax(0, 1fr));
    --store-section-grid-template: auto/ repeat(2, minmax(0, 1fr));
    --job-section-grid-template-area: "do pu" "jf jf";
    --job-section-grid-template-column: auto/ repeat(2, 1fr);
    --distribution-section-grid-template: auto/repeat(3, minmax(0, 1fr));
    --stats-section-grid-template: auto/repeat(2, minmax(0, 1fr));
    --tracking-section-grid-template: auto/repeat(2, minmax(0, 1fr));
    --footer-company-section-grid-template: auto/ 2fr 3fr 3fr 1fr 1fr;
    --duo-page-img-display: initial;
  }

  /* Landing */
  .landing-section {
    background-image: url('../../assets-4.0/images/covers/landing-hor.jpg');
  }

  .main-wrapper {
    min-height: 57vw;
  }

  .landing-big-item-section>.landing-wrapper {
    flex-direction: row-reverse;
  }

  .landing-big-item-section .landing-header {
    width: 45%;
    text-align: left
  }

  .landing-header {
    width: 55%;
  }

  .landing-header h1 {
    white-space: nowrap;
  }

  .landing-image {
    display: block;
  }

  .landing-big-item-section {
    background-position-x: 0%;
  }

  .landing-distribution-section {
    background-position-y: bottom;
    background-position-x: 30%;
  }

  /* Alignment adjustment from small -> medium screen */
  .store-detail {
    text-align: left;
  }

  .distribution-card {
    text-align: left;
  }

  .locate-button {
    margin-left: initial;
    margin-right: initial;
  }

  .post-job-button {
    margin-right: initial;
  }

  .job-form {
    margin-top: 2rem;
  }

  /* Top Nav */
  .dropdown-list {
    left: unset;
    transform: unset;
    min-width: 300px;
  }

  .nav-item>a i {
    margin-right: 0.5rem;
  }

  .nav-item>a>span {
    display: initial;
  }

  .tnc-container {
    flex-direction: column;
  }

  .tnc-container .tnc-selection {
    flex-basis: 0;
    width: 100%;
  }
}

@media(min-width: 768px) {
  :root {
    --wrapper-max-width: 640px;
    --truck-section-grid-template-area: "tn tn tn" "td td tf";
  }

  .truck-display img {
    width: 300px;
  }

  .truck-form,
  .truck-nav {
    width: initial;
  }

  .tnc-container {
    flex-direction: row;
  }

  .tnc-container .tnc-selection {
    flex-basis: 240px;
    width: unset;
  }
}

@media (min-width: 1024px) {
  :root {
    font-size: 16px;
    --wrapper-max-width: 860px;
    --nav-height: 72px;
    --landing-height: 640px;
    --service-section-grid-template: auto/repeat(3, minmax(0, 1fr));
    --job-section-grid-template-area: "do pu jf";
    --job-section-grid-template-column: auto/ repeat(3, minmax(0, 1fr));

  }

  /* Landing */
  .landing-wrapper>*+* {
    margin-right: 0;
    margin-left: 2.5rem;
  }

  /* Alignment adjustment from small -> medium screen */
  .job-card {
    text-align: left;
  }

  .post-job-button {
    margin-left: initial;
    margin-right: initial;
  }
}

@media (min-width: 1280px) {
  :root {
    --wrapper-max-width: 1024px;
    --landing-height: 720px;
    --cta-height: 28rem;
  }
}

@media (min-width: 1536px) {
  :root {
    --wrapper-max-width: 1280px;
    --landing-height: 800px;
    --cta-height: 32rem;
  }
}