:root {
  --toyota-red: #eb0a1e;
  --black-900: #101010;
  --black-800: hwb(0 12% 88%);
  --gray-900: #202020;
  --offwhite: #f4f4f4;
  --light-gray: #dbdbdb;
  --gray: #c0c0c0;
  --gray-800: #727272;

  --ff-bold: ToyotaType-Bold;
  --ff-semiBold: ToyotaType-SemiBold;
  --ff-regular: ToyotaType-Regular;
}

@font-face {
  font-family: Charlotte Southern;
  src: url(../../fonts/Charlotte\ Southern.ttf) format("truetype");
}

* {
  /* outline: 1px solid red; */
}

h1 {
  font-size: 48px;
  line-height: 56px;
}

h2 {
  font-size: 36px;
  line-height: 44px;
}

h3 {
  font-size: 32px;
  line-height: 40px;
}

h4 {
  font-size: 24px;
  line-height: 32px;
}

h5 {
  font-size: 18px;
  line-height: 24px;
}

h6 {
  font-size: 14px;
  line-height: 20px;
}

p {
  font-size: 20px;
  line-height: 28px;
}

a:hover {
  color: white;
  text-decoration: none;
}

/* Utility Classes  */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

/* =============== Main Hero Section ======================== */

.plant-visit-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 16, 0.5);
  top: 0;
}

.plant-visit-main-hero {
  background-image: url(/images/plant-visit/main-hero-image-1920x1080.jpg);
  height: 80dvh;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.plant-visit-main-hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 10;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -20%);
  padding: 10px;
}

.plant-visit-main-hero-content-wrapper h5 {
  color: white;
  margin: 0px 0px 16px;
}

.plant-visit-main-hero-content-wrapper h1 {
  display: flex;
  gap: 16px;
}

.plant-visit-h1 {
  color: white;
  margin-bottom: 8px;
  margin-top: 2px;
  font-family: var(--ff-semiBold);
  text-wrap: nowrap;
}

.plant-visit-fancy-font {
  font-family: "Charlotte Southern", cursive;
  color: var(--toyota-red);
  font-size: 64px;
  margin: 16px 0px 0px 0px;
}

.plant-visit-main-hero-content-button-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.plant-visit-button {
  font-family: var(--ff-semiBold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: white;
  padding: 18px 72px;
  transition: all 0.3s ease-in-out;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  border-radius: 4px;
}

.plant-visit-button-primary {
  background-color: var(--toyota-red);
}

.plant-visit-button-primary:hover {
  background-color: #d30415;
  color: white;
}

.plant-visit-button-secondary {
  border: 1px solid;
  border-color: white;
}

.plant-visit-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.11);
  color: white;
}

.plant-visit-button-secondary-black {
  background-color: var(--black-900);
  color: white;
}

.plant-visit-button-secondary-black:hover {
  background-color: var(--black-800);
  color: white;
}

.plant-visit-button-secondary-black-border {
  border: 1px solid;
  border-color: var(--black-900);
  color: var(--black-900);
}

.plant-visit-button-secondary-black-border:hover {
  background-color: rgba(16, 16, 16, 0.116);
  color: var(--black-900);
}

.plant-visit-subnav {
  display: flex;
  justify-content: center;
  height: 72px;
  background-color: var(--black-900);
  position: sticky;
  top: 60px;
  z-index: 20;
}

.plant-visit-subnav-item {
  font-size: 16px;
  font-family: var(--ff-regular);
  line-height: 24px;
  color: white;
  height: 100%;
  padding: 0px 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.plant-visit-subnav-item:hover {
  color: var(--toyota-red);
}

.item-active {
  font-family: var(--ff-semiBold);
  color: var(--toyota-red);
}

.item-active::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #eb0a1e;
  position: absolute;
  bottom: 0px;
}

.plant-visit-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: relative;
  background-color: transparent;
  width: 100%;
  max-width: 1850px;
  margin: 0 auto;
  padding: 64px;
}

.plant-visit-section-full {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: relative;
  background-color: transparent;
  width: 100%;
  padding: 64px;
}

.plant-visit-main-objective {
  background-image: url(/images/plant-visit/main-objective-image-1920x1080.jpg);
  height: 60vh;
  background-position: center;
  background-size: cover;
}

.plant-visit-overlay-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.8) 43.54%,
      rgba(0, 0, 0, 0) 101.12%);
  top: 0;
  left: 0;
  z-index: 1;
}

.plant-visit-main-objective-content {
  position: absolute;
  z-index: 4;
  max-width: 1600px;
  margin-left: 36px;
}

.plant-visit-main-objective-heading {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}

.plant-visit-main-objective-heading h2 {
  color: white;
  margin: 4px;
  font-family: var(--ff-semiBold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.plant-visit-main-objective-point-daimond {
  width: 48px;
  height: 48px;
  background-image: url(/images/plant-visit/daimond.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.plant-visit-main-objective-content h5 {
  color: var(--light-gray);
  font-size: 20px;
  line-height: 32px;
  width: 71ch;
}

.plant-visit-highlights {
  padding: 96px;
}

.plant-visit-highlight-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plant-visit-highlight-type-1 {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: stretch;
  height: 440px;
}

.plant-visit-highlight-type-2 {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  justify-content: stretch;
  height: 400px;
}

.plant-visit-highlight-image-1 {
  background-image: url(/images/plant-visit/toyota-process.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 50%;
}

.plant-visit-highlight-image-2 {
  background-image: url(/images/plant-visit/craftsmen-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 50%;
}

.plant-visit-highlight-image-3 {
  background-image: url(/images/plant-visit/process-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 50%;
}

.plant-visit-highlight-content {
  /* padding: 0px 4px; */
  width: 50%;
}

.plant-visit-highlight-content p {
  /* width: 25ch; */
}

.plant-visit-highlight-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plant-visit-main-highlight-dash {
  width: 36px;
  height: 36px;
  background-image: url(/images/plant-visit/double-dash.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.plant-visit-highlight-heading h2 {
  color: var(--black-800);
  margin: 4px;
  font-family: var(--ff-semiBold);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plant-visit-cta-section {
  background-color: var(--black-900);
  padding: 64px 96px;
}

.plant-visit-main-highlight-point-daimond {
  width: 48px;
  height: 48px;
  background-image: url(/images/plant-visit/daimond.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.plant-visit-cta-heading {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}

.plant-visit-cta-heading h2 {
  color: white;
  margin: 4px;
  font-family: var(--ff-semiBold);
  text-transform: uppercase;
}

.plant-visit-cta-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.plant-visit-cta-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--gray-900);
}

.plant-visit-cta-join-us-image {
  background-image: url(/images/plant-visit/cta-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.1);
}

.plant-visit-cta-guide-image {
  background-image: url(/images/plant-visit/craftsmen-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.1);
}

.plant-visit-cta-gethere-image {
  background-image: url(/images/plant-visit/process-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.1);
}

.plant-visit-cta-map-image {
  background-image: url(/images/plant-visit/plant-visit-layout-960x620.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.1);
}

.plant-visit-cta-card-link {
  display: flex;
  background-color: black;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
}

.plant-visit-cta-card-link h4 {
  color: var(--offwhite);
  font-family: var(--ff-semiBold);
  transition: all 0.3s ease-in-out;
}

.plant-visit-cta-card-point-image {
  background-color: rgb(43, 43, 43);
  height: 300px;
  transition: all 0.3s ease-in-out;
}

.plant-visit-cta-arrow {
  width: 48px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.plant-visit-cta-card-points {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plant-visit-cta-card-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.plant-visit-cta-card-point p {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  color: var(--offwhite);
  font-family: var(--ff-bold);
  color: var(--offwhite);
}

.plant-visit-cta-card-point p span {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  color: var(--gray);
  font-family: var(--ff-regular);
}

.plant-visit-cta-card-point-dot {
  width: 18px;
  height: 18px;
  background-image: url(/images/plant-visit/point.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.plant-visit-cta-card:hover .plant-visit-cta-card-point-image {
  transform: scale(1.08);
}

.plant-visit-cta-card:hover .plant-visit-cta-card-link h4 {
  color: var(--toyota-red);
}

.plant-visit-cta-card:hover .plant-visit-cta-arrow {
  transform: rotate(0deg);
  filter: invert(75%) sepia(75%) saturate(5991%) hue-rotate(360deg) brightness(92%) contrast(85%);
}

.plant-visit-experience {
  padding: 64px 96px;
}

.plant-visit-experience-heading {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
  text-transform: uppercase;
}

.plant-visit-experience-heading h2 {
  color: var(--black-800);
  margin: 4px;
  font-family: var(--ff-semiBold);
}

.plant-visit-testimonial-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
}

.plant-visit-testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.plant-visit-testimonial-cards {
  border: 1px solid #dbdbdb;
  width: auto;
  height: 320px;
  background: #f4f4f4;
  padding: 14px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plant-visit-testimonial-cards p {
  font-style: italic;
  margin: 0;
}

.plant-visit-testimonial-card-name-tag {
  display: flex;
  gap: 10px;
}

.plant-visit-testimonial-card-name-tag h4 {
  margin: 0px 4px;
  font-family: var(--ff-semiBold);
}

.plant-visit-testimonial-card-name-tag h5 {
  margin: 0px 4px;
  color: var(--gray-800);
}

.plant-visit-testimonial-card-name-profile {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 64px;
  overflow: hidden;
  border: 4px solid var(--gray);
}

.plant-visit-testimonial-card-name-profile img {
  object-fit: cover;
  object-position: center;
  width: 64px;
}

.plant-visit-gallery {
  padding: 64px 96px;
}

.plant-visit-contact {
  background-color: var(--black-900);
  padding: 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 64px;
}

.plant-visit-contact-content {
  /* width: 40%; */
}

.plant-visit-contact-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.plant-visit-contact-card {
  padding: 18px;
  flex: 1;
  /* width: 300px; */
}

.plant-visit-contact-content h2 {
  color: white;
}

.plant-visit-contact-content p {
  color: var(--gray);
  margin: 0;
}

.plant-visit-contact-card {
  background-color: black;
}

.plant-visit-contact-card a {
  color: #c0c0c0;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.plant-visit-contact-card a:hover {
  color: var(--toyota-red);
  text-decoration: underline;
}

.plant-visit-contact-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 24px;
}

.plant-visit-contact-card-title img {
  margin-bottom: 10px;
}

.plant-visit-contact-card-title {
  margin-bottom: 16px;
}

.plant-visit-contact-card-title p {
  color: var(--gray);
  font-size: 18px;
  line-height: 18px;
}

.plant-visit-page-hero {
  background-image: url(/images/plant-visit/main-objective-image-1920x1080.jpg);
  height: 20dvh;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.plant-visit-page-hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 10;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
}

.plant-visit-page-hero-content-wrapper h1 {
  color: white;
  margin-bottom: 8px;
  margin-top: 2px;
  font-family: var(--ff-semiBold);
  text-align: center;
  text-transform: uppercase;
}

.plant-visit-page-hero-content-button-wrapper {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.plant-visit-visiting-group {
  padding: 64px 96px 0px;
}

.plant-visit-section-heading {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.plant-visit-section-heading h2 {
  color: var(--black-800);
  margin: 4px;
  font-family: var(--ff-semiBold);
}

.plant-visit-visiting-group-wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}

.plant-visit-visiting-group-card {
  /* background-color: #ececec; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 20px 0px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  transition: all 0.3s ease-in-out;
}

.plant-visit-visiting-group-card:hover {
  transform: scale(1.01);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.plant-visit-visiting-group-card-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 12px;
  border-bottom: 2px solid red;
  background-color: var(--gray-900);
}

.plant-visit-visiting-group-card-heading h3 {
  margin: 0px 0px;
  font-family: var(--ff-semiBold);
  color: var(--offwhite);
}

.plant-visit-visiting-group-card-education {
  width: 48px;
  height: 48px;
  background-image: url(/images/plant-visit/edu.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.plant-visit-visiting-group-card-corpo {
  width: 48px;
  height: 48px;
  background-image: url(/images/plant-visit/corporate.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.plant-visit-visiting-group-card-gov {
  width: 48px;
  height: 48px;
  background-image: url(/images/plant-visit/gov.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.plant-visit-visiting-group-point {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  /* margin-top: 18px; */
  padding: 8px 24px 20px;
}

.plant-visit-visiting-group-point p {
  margin: 0px;
}

.plant-visit-visiting-group-card-point-dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  background-image: url(/images/plant-visit/point.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 5px;
}

.plant-visit-visiting-group-card-point-dot-green {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  background-image: url(/images/plant-visit/point-green.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 5px;
}

.plant-visit-book-plant {
  padding: 72px 96px;
}

.plant-visit-info-form-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.plant-visit-info-form-wrapper-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.plant-visit-form-box {
  display: flex;
  flex-direction: column;
}

.plant-visit-form-box .input-note {
  padding: 8px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 24px;
  border: 1px solid gray;
  border-radius: 2px;
  border-color: rgb(190, 190, 190);
  background: rgba(255, 149, 122, 0.1);
}

.plant-visit-form-label {
  color: var(--gray-900) !important;
  font-family: var(--ff-regular);
  font-weight: unset !important;
}

.plant-visit-form-label.required {
  font-weight: bold;
  color: #333;
}

/* Add a red asterisk for required fields */
.plant-visit-form-label.required::after {
  content: " *";
  color: red;
  font-weight: normal;
}

.plant-visit-form-control {
  display: block;
  width: 100%;
  height: 56px;
  padding: 16px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: var(--offwhite);
  background-image: none;
  border: 1px solid var(--gray);
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
}

.plant-visit-form-control::placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

select {
  /* Reset Select */
  appearance: none;
  outline: 10px red;
  border: 0;
  box-shadow: none;
  /* Personalize */
  padding: 17px 16px;
  flex: 1;
  font-size: 14px;
  line-height: 1.42857143;
  color: var(--gray);
  background-color: var(--offwhite);
  background-image: none;
  border: 1px solid var(--gray);
  border-radius: 2px;
  cursor: pointer;
}

/* Remove IE arrow */
select::-ms-expand {
  display: none;
}

.plant-visit-form-select {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 56px;
  border-radius: 0.25em;
  /* overflow: hidden; */
  color: #101010;
}

.plant-visit-form-select::after {
  content: "▾";
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 100%;
  padding: 24px 8px;
  line-height: 0px;
  font-size: 48px;
  color: var(--offwhite);
  background-color: var(--toyota-red);
  transition: 0.25s all ease;
  pointer-events: none;
}

.plant-visit-form-select:hover::after {
  color: rgb(231, 231, 231);
}

.plant-visit-form-select select {
  color: #101010;
}

.plant-visit-form-select option {
  color: #101010;
}

#fileInput {
  display: none;
  width: 60%;
}

/* Style the custom file input button */
.plant-visit-file-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 20px;
  font-size: 16px;
  height: 56px;
  width: 250px;
  font-family: var(--ff-regular);
  color: #fff;
  background-color: var(--toyota-red);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.plant-visit-file-button:hover {
  background-color: var(--toyota-red);
}

.plant-visit-file-button:active {
  transform: scale(0.95);
}

.plant-visit-file-button:focus {
  outline: none;
  box-shadow: 0 0 4px rgba(74, 144, 226, 0.8);
}

.plant-visit-form-control-textarea {
  border: 1px solid var(--gray);
  background-color: var(--offwhite);
  border-radius: 2px;
  padding: 12px;
  height: 200px;
}

.plant-visit-form-control-textarea::placeholder {
  text-transform: capitalize;
}

.plant-visit-from-button-wrapper {
  /* width: 400px; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 24px;
}

.plant-visit-clear-fields {
  text-decoration: underline;
  font-family: var(--ff-semiBold);
}

.plant-visit-clear-fields:hover {
  color: var(--toyota-red);
}

.plant-visit-cta-section-2 {
  background-color: transparent;
  padding: 64px 96px;
}

.plant-visit-cta-heading-2 {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}

.plant-visit-cta-heading-2 h2 {
  color: var(--black-900);
  margin: 4px;
  font-family: var(--ff-semiBold);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.04rem;
}

.plant-visit-dosdont-group-wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.plant-visit-do-image {
  width: 36px;
  height: 36px;
  background-image: url(/images/plant-visit/do-green.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.plant-visit-dont-image {
  width: 36px;
  height: 36px;
  background-image: url(/images/plant-visit/dont.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.plant-visit-message-box {
  padding: 64px 96px 0px;
}

.plant-visit-message-wrapper {
  border-radius: 0.5625rem;
  border: 1px solid #bebebe;
  background: rgba(255, 149, 122, 0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plant-visit-visiting-group-point p {
  color: var(--gray-900);
}

.plant-visit-message-wrapper p {
  font-family: var(--ff-semiBold);
  color: var(--gray-900);
  font-size: 18px;
  line-height: 28px;
}

.plant-visit-instruction-card {
  overflow: hidden;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border: 0.5px solid #e2e2e2;

  box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 20px 0px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  transition: all 0.3s ease-in-out;
}

.plant-visit-instruction-card:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  transform: scale(1.01);
}

.plant-visit-instruction-card-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.plant-visit-instruction-card-wrapper-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.plant-visit-instruction-card-image {
  overflow: hidden;
  height: 320px;
  background: white;
  /* transform: scale(1.01); */
}

.plant-visit-instruction-card-image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}

.plant-visit-instructions-points {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background-color: var(--gray-900);
}

.plant-visit-instruction-point-do {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  background-image: url(/images/plant-visit/do.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.plant-visit-instruction-point-dont {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  background-image: url(/images/plant-visit/dont.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 5px;
}

.plant-visit-section-2 {
  background-color: transparent;
  padding: 64px 96px;
}

.plant-visit-section-heading {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}

.plant-visit-section-heading h2 {
  color: var(--black-900);
  margin: 4px;
  font-family: var(--ff-semiBold);
}

.plant-visit-map-wrapper {
  height: 600px;
}

.plant-visit-layout {
  background-image: url(/images/plant-visit/plant-visit-layout-1920x1080.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
  width: 100%;
}

.plant-visit-itineray {
  background-image: url(/images/plant-visit/Map-website.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 16/9;
  width: 100%;
}

.plant-visit-carousel {
  /* width: 100vw; */
  height: 600px;
  position: relative;
}

.plant-visit-carousel>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plant-visit-curousel-button-wrapper-heading {
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 99;
  top: -72px;
  font-family: var(--ff-semiBold);
}

.plant-visit-testimonials-wrapper {
  margin-top: 96px;
  display: grid;
  height: 320px;
  gap: 96px;
  padding: 0 140px;
  grid-template-columns: repeat(2, 1fr);
}

.plant-visit-testimonial-box {
  /* background-color: #ececec; */
  position: relative;
}

.plant-visit-testimonial-slides {
  position: relative;
  height: 100%;
}

.plant-visit-curousel-button-wrapper {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  justify-content: space-between;
  width: 100%;
}

.plant-visit-curousel-button-wrapper-2 {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.plant-visit-testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: white;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: 300ms opacity ease-in-out;
  transition-delay: 300ms;
}

.plant-visit-testimonial-profile-quote {
  height: 140px;
}

.plant-visit-testimonial-slide h5 {
  text-align: center;
  font-style: italic;
  font-size: 18px;
  line-height: 24px;
  color: var(--gray-800);
  /* width: 35ch; */
  padding: 10px;
}

.plant-visit-testimonial-slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.plant-visit-testimonial-profile {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  border: 4px solid var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.plant-visit-curousel-button {
  all: unset;
  width: 48px;
  height: 48px;
  font-size: 24px;
  text-align: center;
  line-height: 0;
  border: 1px solid var(--gray);
  background-color: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.plant-visit-carousel-gallery {
  /* height: 400px; */
  overflow: hidden;
  display: flex;
  /* gap: 10px; */
  transition: all 0.3s ease-in-out;
}

.plant-visit-carousel-gallery-image {
  flex-shrink: 0;
  height: auto;
  aspect-ratio: 7 / 5;
  /* Maintains aspect ratio */
  /* max-width: fit-content;
  width: fit-content; */
  /* overflow: hidden; */
  margin-right: 10px;
}

.plant-visit-carousel-gallery:nth-last-child() {
  margin-right: 0px !important;
}

.plant-visit-carousel-gallery-image img {
  /* height: 100%;
  object-fit: cover;
  object-position: center; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-visit-testimonial-profile-names {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plant-visit-testimonial-profile-names h4 {
  color: var(--black-900);
  font-family: var(--ff-semiBold);
  font-size: 18px;
}

.plant-visit-testimonial-profile-names h4,
h6,
h5 {
  margin: 0 !important;
  padding: 0 !important;
}

.plant-visit-testimonial-profile-names h5 {
  color: var(--black-900);
  font-size: 20px;
  width: 27ch;
}

.plant-visit-testimonial-profile-names h5:nth-child(2) {
  color: var(--black-900);
  font-size: 16px;
  font-weight: 600;
}

.plant-visit-testimonial-profile-names h5 {
  color: var(--black-800) !important;
  font-size: 16px !important;
}

.plant-visit-gallery-filter {
  margin-bottom: 16px;
}

.plant-visit-gallery-filter button {
  all: unset;
  font-family: var(--ff-semiBold);
  color: var(--gray-800);
  font-size: 24px;
  margin-right: 24px;
  text-transform: uppercase;
  cursor: pointer;
}

.plant-visit-gallery-filter button.active {
  color: var(--toyota-red);
  font-weight: bold;
  border-bottom: 2px solid var(--toyota-red);
}

.plant-visit-datepicker-icon {
  background-color: var(--toyota-red);
  padding: 16px;
  border-radius: 0px 4px 4px 0px;
  position: absolute;
  right: 0;
  pointer-events: none;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .plant-visit-subnav {
    top: 100px;
    height: 56px;
  }

  .plant-visit-highlight-type-1 {
    height: 600px;
  }

  .plant-visit-highlight-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .plant-visit-cta-card-link {
    padding: 4px 10px;
  }

  .plant-visit-cta-card-points {
    padding: 12px;
  }

  .plant-visit-cta-card-points {
    padding: 8px;
  }

  .plant-visit-cta-card-point p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    /* color: var(--offwhite); */
  }

  .plant-visit-testimonial-cards p {
    font-size: 18px;
  }

  .plant-visit-testimonial-cards h4 {
    font-size: 20px;
    line-height: 22px;
  }

  .plant-visit-testimonial-cards h5 {
    font-size: 18px;
    line-height: 22px;
  }

  .plant-visit-testimonial-cards {
    padding: 10px;
  }

  .plant-visit-testimonial-card-name-profile img {
    transform: scale(1);
  }

  .plant-visit-contact-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .plant-visit-contact-wrapper {
    gap: 10px;
  }

  .plant-visit-contact-card {
    padding: 14px;
  }

  .plant-visit-visiting-group-card-heading {
    gap: 10px;
  }

  .plant-visit-visiting-group-card-heading h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .plant-visit-instruction-card-image {
    overflow: hidden;
    height: 220px;
  }

  .plant-visit-instruction-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 36px;
  }

  .plant-visit-instruction-card-wrapper-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .plant-visit-instructions-points {
    padding: 14px;
  }

  .plant-visit-instructions-points p {
    line-height: 20px;
  }

  .plant-visit-section {
    background-color: transparent;
    padding: 48px 96px;
  }

  .plant-visit-map-wrapper {
    height: 450px;
  }

  .plant-visit-layout {
    height: 450px;
  }

  .plant-visit-testimonials-wrapper {
    padding: 0 0px;
    gap: 48px;
  }
}

@media only screen and (max-width: 992px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    font-size: 18px;
    line-height: 24px;
  }

  h5 {
    font-size: 14px;
    line-height: 20px;
  }

  h6 {
    font-size: 12px;
    line-height: 18px;
  }

  p {
    font-size: 16px;
    line-height: 24px;
  }

  .plant-visit-subnav-item {
    font-size: 14px;
    line-height: 20px;
    padding: 0px 10px;
  }

  .plant-visit-main-objective {
    height: 60dvh;
  }

  .plant-visit-main-objective-content {
    margin-left: 0px;
  }

  .plant-visit-main-objective-heading {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
  }

  .plant-visit-main-objective-content h5 {
    color: var(--light-gray);
    font-size: 18px;
    line-height: 28px;
    width: 80%;
  }

  .plant-visit-highlights {
    padding: 64px 48px;
  }

  .plant-visit-highlight-type-1 {
    height: 440px;
  }

  .plant-visit-highlight-type-2 {
    height: 440px;
  }

  .plant-visit-cta-section {
    padding: 64px 48px;
  }

  .plant-visit-cta-section-2 {
    padding: 64px 48px;
  }

  .plant-visit-cta-card-point-image {
    height: 200px;
  }

  .plant-visit-cta-card-wrapper {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .plant-visit-cta-card {
    flex-grow: unset;
  }

  .plant-visit-cta-arrow {
    width: 24px;
  }

  .plant-visit-experience {
    padding: 48px 48px;
  }

  .plant-visit-highlight-heading h2 {
    font-size: 28px;
  }

  .plant-visit-testimonial-cards p {
    font-size: 18px;
  }

  .plant-visit-testimonial-cards h4 {
    font-size: 18px;
    line-height: 21px;
  }

  .plant-visit-testimonial-cards h5 {
    font-size: 16px;
    line-height: 18px;
  }

  .plant-visit-testimonial-cards {
    padding: 10px;
  }

  .plant-visit-testimonial-card-name-profile {
    width: 50px;
    height: 50px;
  }

  .plant-visit-testimonial-card-name-profile img {
    transform: scale(0.8);
  }

  .plant-visit-contact {
    padding: 24px 48px;
  }

  .plant-visit-section {
    padding: 24px 48px;
  }

  .plant-visit-contact-content {
    width: 30%;
  }

  .plant-visit-contact-wrapper {
    width: 70%;
  }

  .plant-visit-contact-wrapper {
    justify-content: flex-start;
  }

  .plant-visit-contact-card {
    width: auto;
  }

  .plant-visit-contact-content h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .plant-visit-contact-content p {
    font-size: 16px;
    line-height: 18px;
  }

  .plant-visit-visiting-group {
    padding: 64px 48px;
  }

  .plant-visit-visiting-group-card-heading {
    gap: 10px;
    padding-bottom: 8px;
  }

  .plant-visit-visiting-group-card-heading h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .plant-visit-visiting-group-card-heading p {
    font-size: 14px;
    line-height: 18px;
  }

  .plant-visit-visiting-group-card-education {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .plant-visit-visiting-group-card-point-dot {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
  }

  .plant-visit-visiting-group-card-gov {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .plant-visit-visiting-group-card-corpo {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .plant-visit-book-plant {
    padding: 64px 48px;
  }

  .plant-visit-info-form-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 16px;
  }

  .plant-visit-info-form-wrapper-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 16px;
  }

  .plant-visit-instruction-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 36px;
  }

  .plant-visit-cta-card-point p {
    font-size: 16px;
    line-height: 20px;
  }

  .plant-visit-message-box {
    padding: 64px 48px;
  }

  .plant-visit-section {
    padding: 64px 48px;
  }

  .plant-visit-section-2 {
    padding: 64px 48px;
  }

  .plant-visit-testimonials-wrapper {
    padding: 0 0px;
  }
}

@media only screen and (max-width: 768px) {
  .plant-visit-subnav {
    top: 60px;
  }

  .plant-visit-section {
    padding: 24px 10px 10px;
  }

  .plant-visit-cta-card-wrapper {
    width: 100%;
  }

  .plant-visit-main-hero-content-button-wrapper {
    align-items: unset;
  }

  .plant-visit-button {
    max-width: unset;
  }

  .plant-visit-cta-card-points {
    padding: 14px;
  }

  .plant-visit-cta-card-point-image {
    height: 320px;
  }

  .plant-visit-cta-card {
    width: 100%;
  }

  .plant-visit-cta-card-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 48px;
  }

  .plant-visit-highlights {
    padding: 48px;
  }

  .plant-visit-highlight-image-1 {
    width: 100%;
  }

  .plant-visit-highlight-image-2 {
    width: 100%;
  }

  .plant-visit-highlight-image-3 {
    width: 100%;
  }

  .plant-visit-highlight-type-1 {
    height: 400px;
    flex-direction: column;
  }

  .plant-visit-highlight-type-2 {
    height: 450px;
    flex-direction: column;
  }

  .plant-visit-highlight-content {
    width: 100%;
    padding: 0px;
  }

  .plant-visit-highlight-content p {
    font-size: 14px;
    line-height: 20px;
  }

  .plant-visit-testimonial-heading {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }

  .plant-visit-testimonial-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .plant-visit-experience {
    padding: 48px 36px;
  }

  .plant-visit-gallery {
    padding: 48px 36px;
  }

  .plant-visit-testimonial-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .plant-visit-testimonial-cards p {
    line-height: 24px;
  }

  .plant-visit-testimonial-cards {
    height: 200px;
  }

  .plant-visit-contact-content {
    width: 100%;
  }

  .plant-visit-contact-wrapper {
    width: 100%;
    flex-direction: column;
  }

  .plant-visit-contact-wrapper {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .plant-visit-visiting-group-wrapper {
    gap: 10px;
    gap: 8px;
  }

  .plant-visit-visiting-group-point {
    margin-top: 12px;
  }

  .plant-visit-cta-card-point p {
    font-size: 16px;
    line-height: 20px;
  }

  .plant-visit-map-wrapper {
    height: 320px;
  }

  .plant-visit-layout {
    height: 320px;
  }

  .plant-visit-testimonials-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }

  .plant-visit-testimonials-wrapper {
    height: 800px;
    gap: 72px;
    margin-top: 60px;
  }

  .plant-visit-curousel-button-wrapper-heading {
    top: -48px;
  }
}

@media only screen and (max-width: 576px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 24px;
    line-height: 32px;
  }

  h3 {
    font-size: 20px;
    line-height: 28px;
  }

  h4 {
    font-size: 16px;
    line-height: 20px;
  }

  h5 {
    font-size: 12px;
    line-height: 18px;
  }

  h6 {
    font-size: 11px;
    line-height: 16px;
  }

  p {
    font-size: 14px;
    line-height: 20px;
  }

  .plant-visit-fancy-font {
    font-size: 48px;
    margin: 11px 0px 0px 0px;
  }

  .plant-visit-section {
    padding: 64px 10px 64px;
  }

  .plant-visit-main-hero-content-wrapper {
    width: 100%;
    transform: translate(-50%, -16%);
  }

  .plant-visit-main-hero-content-button-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .plant-visit-main-hero-content-button-wrapper a {}

  .plant-visit-subnav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-right: 24px;
    top: 60px;
  }

  .plant-visit-subnav-item {
    font-size: 14px;
    line-height: 20px;
    padding: 0px 12px;
    text-wrap: nowrap;
  }

  .plant-visit-overlay-2 {
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.8) 43.54%,
        rgba(0, 0, 0, 0.8) 101.12%);
  }

  .plant-visit-main-objective {
    height: 60dvh;
    padding: 10px;
  }

  .plant-visit-main-objective-content {
    margin-left: 0;
    width: auto;
  }

  .plant-visit-main-objective-heading {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }

  .plant-visit-main-objective-content h5 {
    color: var(--light-gray);
    font-size: 16px;
    line-height: 28px;
    width: auto;
  }

  .plant-visit-main-objective-point-daimond {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background-image: url(/images/plant-visit/daimond.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .plant-visit-cta-section {
    padding: 48px 10px;
  }

  .plant-visit-cta-section-2 {
    padding: 48px 10px;
  }

  .plant-visit-cta-card {}

  .plant-visit-main-highlight-point-daimond {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background-image: url(/images/plant-visit/daimond.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .plant-visit-cta-card-link h4 {
    font-size: 18px;
  }

  .plant-visit-highlights {
    padding: 64px 10px;
  }

  .plant-visit-highlight-wrapper {
    gap: 48px;
  }

  .plant-visit-highlight-type-1 {
    height: 600px;
    gap: 4px;
  }

  .plant-visit-highlight-type-2 {
    height: 600px;
    gap: 4px;
  }

  .plant-visit-highlight-heading h2 {
    font-size: 24px;
  }

  .plant-visit-main-highlight-dash {
    width: 28px;
    height: 28px;
  }

  .plant-visit-testimonial-heading-buttons {
    width: 100%;
  }

  .plant-visit-experience {
    padding: 48px 10px;
  }

  .plant-visit-gallery {
    padding: 48px 10px;
  }

  .plant-visit-testimonial-cards {
    height: 280px;
  }

  .plant-visit-contact {
    padding: 24px 10px;
    flex-direction: column;
  }

  .plant-visit-visiting-group {
    padding: 64px 10px;
  }

  .plant-visit-visiting-group-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .plant-visit-book-plant {
    padding: 48px 10px;
  }

  .plant-visit-info-form-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 16px;
  }

  .plant-visit-info-form-wrapper-2 {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    gap: 16px;
  }

  .plant-visit-cta-card-point p {
    font-size: 14px;
    line-height: 20px;
  }

  .plant-visit-message-box {
    padding: 36px 10px 0px;
  }

  .plant-visit-instructions-points {
    padding: 16px 10px;
  }

  .plant-visit-instructions-point p {
    line-height: 20px;
  }

  .plant-visit-instruction-card-image {
    overflow: hidden;
    height: 180px;
  }

  .plant-visit-section-2 {
    padding: 24px 10px;
  }

  .plant-visit-curousel-button {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .plant-visit-curousel-button-wrapper-heading {
    top: -48px;
  }

  .plant-visit-testimonial-slide h5 {
    width: auto;
  }

  .plant-visit-testimonial-profile-names h5 {
    width: 25ch;
  }

  .plant-visit-testimonials-wrapper {
    padding: 0 0px;
    height: 800px;
    gap: 72px;
    margin-top: 60px;
  }

  .plant-visit-testimonial-slide h5 {
    padding: 0px;
    font-size: 18px;
    line-height: 20px;
  }

  .plant-visit-from-button-wrapper {
    gap: 4px;
  }

  .plant-visit-carousel-gallery {
    /* height: 292px; */
  }

  .plant-visit-gallery-filter button {
    font-size: 18px;
    margin: 4px 12px;
  }
}

input[type="date"] {
  cursor: pointer;
}

.tnks-wrapper {
  text-align: center;
  padding: 30px 0;
}

.d-none {
  display: none !important;
}


/*Upload File*/

.demo-droppable.dragover {
  background: #eee;
}

.demo-droppable {
  position: absolute;
  top: 15px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 1rem auto;
  margin-left: 2rem;
  margin-right: 2rem;
  text-align: center;
}

.demo-droppable>p {
  color: #ff5d5a;
  font-size: 18px;
  font-family: "toyota_displaybold";
}

.supported-formats.sprt-format {
  text-align: center;
  margin: 0;
  float: none;
  margin: 1.5rem 0 1.5rem 0;
}

.popup-header {
  padding: 2rem 0px;
  border-bottom: 1px solid #ddd;
}

.popup-title {
  font-size: 18px;
  color: #222;
}

.popup-footer {
  text-align: right;
  border-top: 1px solid #ccc;
  padding: 1.2rem 0;
}

.drag-input-container {
  position: relative;
  height: 50px;
}

.upload-btn,
.cancel-btn {
  display: inline-block;
}

.file-upload-btn {
  width: 100%;
  height: 56px;
}

.upload-file {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width:767px) {
  .demo-droppable input {
    width: 100%;
  }
}

.dlt-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dlt-btn p {
  font-size: 13px !important;
  padding: 5px !important;
  margin: 0 !important;
}