* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Geist';
  src: url('/assets/fonts/Geist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Geist';
  src: url('/assets/fonts/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

body {
  background: transparent;
  color: var(--text-color);
  overflow-x: hidden;
}

html {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
  background-color: var(--background-color);
}
button {
  appearance: auto;
  font-family: 'Geist', sans-serif;
  font-style: normal;
  font-variant-ligatures: normal;
  font-variant-caps: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-variant-alternates: normal;
  font-variant-position: normal;
  font-variant-emoji: normal;
  font-stretch: normal;
 }
 
 /* If you want it to apply to all form elements */
 input,
 select,
 textarea {
  font-family: 'Geist', sans-serif;
 }
/* Remove spinner arrows in Chrome, Safari, Edge, and Opera */
.menu-item input[type="number"]::-webkit-inner-spin-button,
.menu-item input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove spinner arrows in Firefox */
.menu-item input[type="number"] {
    -moz-appearance: textfield;
}

/* Remove spinner arrows in Internet Explorer 10+ */
.menu-item input[type="number"] {
    -ms-appearance: textfield;
}

/* General appearance property for future-proofing */
.menu-item input[type="number"] {
    appearance: textfield;
}

.side-icon {
  width: 42px;
}

.main-box {
  background-color: var(--secondary-color);
  border-radius: 14px;
  padding: 25px;
}

.icon-grey {
  filter: brightness(0) saturate(100%) invert(48%) sepia(6%) saturate(320%) hue-rotate(182deg) brightness(94%) contrast(86%);
}

.icon-red {
  filter: brightness(0) saturate(100%) invert(45%) sepia(87%) saturate(1480%) hue-rotate(325deg) brightness(100%) contrast(98%);
}

.icon-yellow {
  filter: brightness(0) saturate(100%) invert(78%) sepia(38%) saturate(638%) hue-rotate(338deg) brightness(96%) contrast(93%);
}

.icon-white2 {
  filter: var(--icon-white2);
}

.icon-white {
  filter: brightness(0) invert(1);
}

.icon-black {
  filter: brightness(0);
}

.matches-list {
  font-size: 0.9rem !important;
}

.matches-list p {
  opacity: 0.5;
}

.matches-list span {
  opacity: 0.5;
}

.Layer_1.active {
  fill: var(--accent-color);
}

.mobile-message {
  display: none;
}

.mobile-card {
  width: 310px;
  height: 350px;
  background-color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  gap: 13px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.cookieHeading {
  text-align: center;
  font-size: 1.5em !important;
  font-weight: 800;
  color: black;
}

.cookieDescription {
  text-align: center;
  font-size: 1.0em !important;
  font-weight: 600;
  color: black;
}

.blur_image {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination a {
  margin: 0 5px;
  padding: 8px 16px;
  text-decoration: none;
  background-color: var(--background-color);
  color: var(--white-color);
  border-radius: 5px;
  font-weight: var(--font-weight-bold);
  box-shadow: 0px 0px 3.5px rgba(0, 0, 0, 0.8);
}

.pagination a:hover {
  background-color: var(--accent-color);
  color: black;
}

.pagination a.active {
  background-color: var(--accent-color);
  color: black;
}

.label-left {
  text-align: left;
}

.label-right {
  text-align: right;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unselectable {
  user-select: none;
}

.material-symbols-outlined {
  user-select: none;
}

.switch-inputs {
  margin: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-radius: 14px;
  background-color: var(--background-color);
  box-sizing: border-box;
  padding: 0.2rem;
  width: 365px;
  font-size: 14px;
  margin-top: 25px;
}

.switch-inputs .switch {
  flex: 1 1 auto;
  text-align: center;
}

.switch-inputs .switch input {
  display: none;
}

.switch-inputs .switch .switch-name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: none;
  padding: .9rem 0;
  color: black;
  font-weight: 500;
  transition: all .15s ease-in-out;
  font-size: 0.875rem;
}

.switch-inputs .switch input:checked+.switch-name {
  background-color: var(--accent-color);
  font-weight: var(--font-weight-bold);
}

.switch input[type="radio"]+.switch-name .side-icon-mini {
  filter: grayscale(100%) brightness(0.5);
  transition: filter 0.3s ease;
}

.switch input[type="radio"]:checked+.switch-name .side-icon-mini {
  filter: brightness(0);
  transition: filter 0.3s ease;
}

.switch input[type="radio"]+.switch-name span {
  font-size: 1rem;
  color: var(--details-color);
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.switch input[type="radio"]:checked+.switch-name span {
  font-weight: bold;
  color: #000;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: var(--white2-color);
  color: var(--secondary-color);
  text-align: center;
  border-radius: 8px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  right: -230%;
  opacity: 0;
  transition: opacity 0.3s;
  font-weight: 500;
  font-size: 0.875rem;
}

.tooltiptext::after {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: var(--white-color) transparent transparent transparent;
}

.switch .tooltiptext::after {
  position: absolute;
  top: -25%;
  left: 50%;
  margin-left: -5px;
  border-width: 0px;
  border-style: solid;
  border-color: var(--white-color) transparent transparent transparent;
}

.session-expired-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--red-color);
  /* Customize the color */
  color: var(--white-color);
  /* Text color */
  padding: 1.5rem;
  border-radius: 16px;
  z-index: 1000;
  opacity: 0.8;
  transition: opacity 3s ease;
  /* Transition effect */
}

.wrapper-new,
.wrapper-new * {
  /* Styles applied to the excluded element and its children /
  / These styles will override the styles from the * selector */
  margin: initial;
  padding: initial;
  box-sizing: initial;
}

.card {
  position: relative;
  width: 100%;
  height: 266px;
  background-color: var(--accent2-color);
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card svg {
  width: 48px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f2f2f2;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  border-radius: 14px;
  align-content: center;
  z-index: 7;
}

.card:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
  color: #333;
  font-weight: var(--font-weight-bold);
}

.card:hover svg {
  scale: 0;
}

.card__description {
  margin: 10px 0 0;
  font-size: 0.875rem;
  color: black;
  line-height: 1.4;
  text-align: center;
}

.flip-card {
  background-color: transparent;
  width: 400px;
  height: 267px;
  perspective: 1000px;
  font-family: sans-serif;
}

.title {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

/* FONT PARAMETERS */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--secondary2-color) inset !important;
}

input:-webkit-autofill {
  -webkit-text-fill-color: var(--white-color) !important;
}

/* Style for when the email input is enabled */
.email-enabled {
  background-color: var(--accent2-color) !important;
  /* Or any color fitting your design */
  color: var(--white-color) !important;
}

.email-enabled .inputField,
.email-enabled .inputLabel {
  color: var(--white-color);
  /* Ensures text and input are clearly visible */
}

/* Style for when the email input is disabled */
.email-disabled {
  background-color: var(--details2-color) !important;
  /* Lighter than the enabled state */
  color: #b1b1b1 !important;
}

.email-disabled .inputField,
.email-disabled .inputLabel {
  color: #b1b1b1;
  /* Dimmed text color */
  cursor: not-allowed;
  border-color: #555;
  /* Optional, if you want to change border color */
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 1,
    'wght' 200,
    'GRAD' 0,
    'opsz' 24;
  color: var(--accent-color);
  font-size: 48px;
}

.close-up-btn,
.show-more-btn {
  align-self: center;
  /* Center the button horizontally */
  color: var(--white-color);
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 18px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.close-btn:hover {
  color: var(--red-color);
}

/* LOADING */

dialog {
  min-width: 550px;
  padding: 20px;
  background-color: rgba(37, 37, 48, 0.8);
  /* Use rgba for transparency */
  border: 1px solid #252530;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border: 2px solid black;
}

dialog::backdrop {
  background-color: rgba(37, 37, 48, 0.8);
  /* Adjust the transparency as needed */
  backdrop-filter: blur(10px);
  /* Adjust the blur value as needed */
}

.dialog-button {
  margin-top: 20px;
  cursor: pointer;
  background: var(--accent-color);
  padding: 0.5rem 2.0rem;
  border-radius: 12px;
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  line-height: 150%;

}

.loading-bar {
  position: relative;
  align-self: center;
  top: -40px;
}

.sk-folding-cube {
  margin: 300px auto;
  width: 100px;
  height: 100px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/* checkbox settings 👇 */

.ui-checkbox {
  --primary-color: var(--accent-color);
  --secondary-color: black;
  --primary-hover-color: #4096ff;
  /* checkbox */
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  /* checkmark */
  --checkmark-size: 1.2;
  margin: 5px;
  margin-right: 10px;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.center-btn-mobile {
  flex-direction: row-reverse;
  gap: 71%;
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

/* actions */

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.radio-input {
  margin-top: 1.5rem;
  border-radius: 14px;
  background-color: var(--background-color);
  box-sizing: border-box;
  padding: 0.2rem;
  width: 365px;
}

.radio-input form {
  display: flex;
  justify-content: space-between;
}

.radio-input label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-label {
  color: var(--details-color);
  font-weight: bold;
  cursor: pointer;
}

.radio-input input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-input .checkBox {
  padding: 0;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 0px 2px var(--details-color);
  transition: box-shadow 300ms ease;
  margin-right: 13px;
}

.radio-input .checkBox::before {
  content: '';
  width: 60px;
  height: 60px;
  background-color: var(--details-color);
  position: absolute;
  top: -52px;
  left: -52px;
  transform: rotateZ(45deg);
  z-index: 100;
  transition: 300ms ease;
}

.radio-input input[type="radio"]:checked+.checkBox {
  box-shadow: 0px 0px 0px 2px var(--accent-color);
}

.radio-input input[type="radio"]:checked+.checkBox::before {
  left: -10px;
  top: -10px;
  background-color: var(--accent-color);
}


/* Radio Buttons End */

.matches-container {
  margin-top: 15px;
}

.matches-list li {
  margin-bottom: 0.8rem;
}

.matches-list a {
  color: var(--white-color);
  text-decoration: underline;
}

.matches-list a:hover {
  color: var(--accent-color);
}

.search-button {
  display: flex;
  background: var(--accent-color);
  border-radius: 12px;
  border: none;
  color: var(--white-color);
  font-weight: 550;
  font-size: 1rem;
  align-items: center;
  line-height: 150%;
  cursor: pointer;
  text-align: center;
  color: black;
  margin: 5px;
  border: 3px solid var(--accent-color);
}

.search-button:hover {
  color: black;

}  

.fav-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.fav-container {
  display: block;
  position: relative;
  cursor: pointer;
  user-select: none;
  margin-right: 20px !important;
}

.fav-container svg {
  position: relative;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  transition: all 0.3s;
  fill: #86868c75;
}

.fav-container svg:hover {
  transform: scale(1.1);
}

.fav-container input:checked~svg {
  fill: var(--accent-color);
}

.separator {
  margin: 15px 0px;
  height: 1px;
  background: #2d3138;
}

#inspsep {
  background: var(--accent-color);
}

.container {
  width: 97%;
  max-width: 1440px;
  margin: 0 auto;
}

a {
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  /* color: #1C1E30; */
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 130%;
}

h1 {
  font-size: 4.25rem;
}

h2 {
  font-size: 2.1rem;
  /* margin-top: 1.35rem;
    margin-bottom: 3.85rem; */
}

h3 {
  font-size: 3.125rem;
}

h4 {
  font-size: 1.45rem;
}

h5 {
  font-size: 1.25rem;
}

p {
  line-height: 150%;
}

.text-white {
  color: var(--white-color);
}

.text-black {
  color: #111319;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-table {
  min-height: 64px;
}

.flex-between-center1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-between-start {
  display: flex;
  justify-content: center;
  align-items: start;
}

#tab-reports {
  justify-content: unset;
}



#tab-red-flags {
  justify-content: unset;
}

.flex-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-center-center-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-block;
  background: #2a2e38;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-weight: 600 !important;
  font-size: 1rem !important;
  line-height: 1.188rem;
  text-align: center;
  transition: all 0.25s ease;
  color: var(--white-color);
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.italic {
  font-style: italic;
}

.errors {
  background-color: rgba(209, 58, 58, 0.6);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px 15px;
  margin-bottom: 1.5rem;
  color: var(--white-color);
  font-size: 16px;
}

.blue-link {
  text-decoration-line: none;
  color: var(--accent-color);
}

.blue-link:hover {
  text-decoration-line: underline;
}

.desktop-links {
  display: none;
}

.desktop-links a:first-child {
  margin-right: 15px;
}

.clean-form {
  width: 100%;
  padding: 0;
  margin: 0;
}

.blue-link-filled {
  background-color: var(--accent-color);
  padding: 15px;
  border-radius: 7px;
  text-align: center;
  color: var(--white-color);
  text-decoration: none;
}

.white-link {
  color: var(--white-color);
  text-decoration: none;
}

.blue-link-filled:hover,
.white-link:hover {
  text-decoration: underline;
}

/* For Carrier page */

#gauge-container {
  position: relative;
  width: 300px;
  height: 200px;
  background-color: var(--secondary-color);
  background-image: url('./images/gauge.png');
  background-size: contain;
  background-repeat: no-repeat;
}

#gauge {
  width: 100%;
  height: 100%;
}

#gauge-value-container {
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  width: 65px;
  height: 65px;
  background-color: var(--background-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

#gauge-value {
  font-size: 26px;
  font-weight: bold;
  color: var(--white-color);
}

/* For My Carrier page */

.gauge-container {
  position: relative;
  width: 300px;
  height: 200px;
  background-color: var(--secondary-color);
  background-image: url('./images/gauge.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.gauge {
  width: 100%;
  height: 100%;
}

.gauge-value-container {
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  width: 65px;
  height: 65px;
  background-color: var(--background-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gauge-value {
  font-size: 26px;
  font-weight: bold;
  color: var(--white-color);
}

.authority-time-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.authority-time-entry {
  width: calc(33.33% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.authority-time-entry div:first-child {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-weight: var(--font-weight-bold);
  font-size: 28px;
}

.authority-time-entry div:last-child h2 {
  color: var(--white-color);
}

.tab-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tab-wrapper div {
  width: calc(25% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}

.btn-tab {
  background: var(--background-color);
  border-radius: 11px;
  border: none;
  padding: 0.6rem 2.2rem;
  color: var(--white-color);
  font-weight: 400 !important;
  font-size: 0.95rem;
  line-height: 150%;
  cursor: pointer;
  color: var(--white-color);
  width: 100%;
  box-shadow: var(--box2-shadow);
  padding: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.btn-tab:hover {
  background-color: var(--accent-color);
  color: var(--black-color);
}
.btn-tab:hover .tab-icon {
  filter: brightness(0) !important;
}
.btn-tab.active {
  background: var(--accent-color);
  color: var(--black-color);
  font-weight: var(--font-weight-bold);
}
.btn-tab.active .tab-icon {
  filter: brightness(0) !important;
}

.gauge-stats-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 12px;

}

.stat-entry p {
  margin-left: 8px;
}

@media screen and (max-width: 544px) {
  .gauge-wrapper-fav {
    margin-left: -17px;
  }
}

.gauge-wrapper {
  width: 52%;
}

.stats-container {
  width: 48%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.track-icon {
  transition: filter 0.2s;
  width: 65px !important;
  height: auto;
  min-width: 65px !important;
}

.stat-entry {
  position: relative;
  min-height: 132px;
  width: calc(50% - 12.5px);
  margin: 1px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  background-color: var(--accent2-color);
  border-radius: 14px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.stat-entry-info {
  position: relative;
  z-index: 2;
  text-shadow: var(--text-shadow);
  margin-top: auto;
}

.stat-entry-info h3 {
  font-size: 1.7rem;
  line-height: 1;
  white-space: nowrap;
  transition: font-size 0.3s ease;
  margin-bottom: 0.4rem;
}

.stat-entry-info p {
  margin: 5px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.2;
}

.stat-entry h2 {
  color: var(--white-color);
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.stat-entry p {
  padding: 0;
  margin: 0;
  color: var(--white-color);
  opacity: 0.5;
  font-size: 0.9rem;
}

.stats-container-outer {
  align-items: stretch;
}

.stats-container-outer .map {
  background: var(--background-color);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 20px;
  width: 60%;
}

.main-header .map {
  background: var(--background-color);
  border-radius: 16px;
  padding: 12px 16px;
  width: 60%;
}

.stats-container-outer .map-details {
  background: var(--background-color);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 20px;
  margin-left: 20px;
  width: 40%;
}

.stats-container-outer .map-details .map-details-card {
  background-color: initial;
}

.stat-entry-image {
  position: relative;
  margin-bottom: auto;
}


@media screen and (max-width: 1400px) {
  html {
    font-size: 75%;
  }
  .form-btn button{
    height: calc(71px - 1.1rem)!important;
  }
}

.mobile-view-login {
  flex-direction: row-reverse;
  width:100%
}

@media screen and (max-width: 1400px) {
  .mobile-view-login {
    padding: 2% 5% !important;
    flex-direction: row-reverse;
  }
  .form-left {
    width: 50% !important;
  }
  .form-right {
    padding: 0 3rem 0 3rem !important;
  }
}

@media screen and (max-width: 1200px) {
  .form-right {
    padding: 0 3rem 0 3rem !important;
    width: 40% !important;
  }

  .form-left {
    width: 60% !important;
  }
}

.progress-bar {
  display: flex;
  gap: 15px;
  padding: 3rem 0 3rem 0;
  align-items: center;
}

.progress {
  border-radius: 5px;
  background-color: var(--white-color);
  width: 40px;
  height: 3px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.progress.active {
  border-radius: 0.5px;
  opacity: 1;
  width: 60px;
  height: 5px;
}

.sponge-effect {
  display: inline-block;
  transition: transform 0.1s ease;
}

.sponge-effect:hover {
  transform: scale(0.95);
}


@media screen and (max-width: 900px) {
  .mobile-hide-2 {
    display: none !important;
  }

  .mobile-view-login {
    justify-content: center;
  }

  .sign-form {
    display: flex;
    overflow: visible;
    justify-content: center;
  }

}

@media only screen and (max-width: 768px) {
  .form-left{
      width: 90% !important;
      height: unset;
      padding-top: 0.5rem !important;
      margin-top: 12px;
      margin-bottom: 12px;
      background: rgb(38 38 48 / 70%)!important;
  }
}

/*
@media screen and (min-width: 900px) {
  .desktop-hide-2 {
    display: none !important;
  }
}

@media screen and (min-width: 970px) and (orientation: portrait) {
  .desktop-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .desktop-content {
    display: none !important;
  }

  .reset-content-visible {
    padding: 0px !important;
  }

  .form-left {
    width: 50% !important;
    padding-top: 5.5rem !important;
  }

  .mobile-message {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
    touch-action: manipulation;
  }

  body {
    touch-action: manipulation;
  }

  html {
    zoom: 1 !important;
  }
}

@media screen and (min-width: 1160px) {
  .desktop-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1160px) {
  .mobile-hide {
    display: none !important;
  }

  .results .search-box {
    min-width: unset !important;
    max-width: unset !important;
  }
}

@media screen and (min-width: 970px) and (orientation: portrait) {
  .desktop-hide {
    display: none !important;
  }
}

@media screen and (min-width: 970px) {
  .tab-hide {
    display: none;
  }
}
*/

/* Forms */
.logo {
  display: block;
}

.sign-form {
   display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
}

.sign-form a {
  text-decoration-line: underline;

  /* Blue */

  color: var(--accent-color);
}

.sign-form header {
  padding: 0.8rem 0;
  width: 97%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  margin-bottom: 1rem;
  position: absolute;
  z-index: 2;
}

.form-left {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(38, 38, 48, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22.5px);
  border-radius: 24px;
}

.form-left h2 {
  line-height: 40px;
  text-align: left;

  color: var(--white-color);
}

.form-right {
  padding: 0 6rem 0 6rem;
  display: flex;
  width: 35%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: none;
  position: relative;
  height: auto;
}

form {
  width: 80%;
  margin-top: 1.8rem;
}

.agreement {
  text-align: center;
  padding: 2rem;
  font-size: small;
}

.label-container {
  display: flex;
  align-items: center;
}

.checkBox {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkBox input[type=checkbox] {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.checkBox .transition {
  width: 25px;
  height: 25px;
  border: 3px solid rgba(255, 255, 255, 0);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 0px 2px var(--accent-color);
  transition: 300ms ease;
}

.checkBox .transition::before {
  content: '';
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  position: absolute;
  transform: rotateZ(45deg);
  top: -43px;
  left: -43px;
  transition: 300ms ease;
}

.checkBox input[type=checkbox]:checked+.transition::before {
  left: -8px;
  top: -8px;
}

.checkbox-label {
  margin-left: 10px;
  color: var(--white-color);
}

.password-requirements-message {
  font-size: 0.95rem;
  margin-bottom: 10px;
  margin-left: 20px;
  color: #a5a5a5;
}

.requirement-met {
  color: var(--accent-color);
}

.requirement-unmet {
  color: #a5a5a5;
}

.input-special {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.input-group {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  background: var(--secondary2-color);
  border-radius: 12px;
  padding: 0.8rem !important;
  position: relative;
  margin-bottom: 1.5rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column-reverse;
  border: 1px solid transparent;
}

.input-group input {
  font-weight: 550;
  width: 100%;
  /* padding: 0 .2rem; */
  background: transparent;
  border: none;
  font-size: 1rem;
  line-height: 19px;

  /* White */

  color: var(--text-color);
}

.input-group:hover {
  border: 1px solid var(--accent-color);
}

.input-group input:focus {
  outline: none;
}

.input-group input::placeholder {
  opacity: 0.2;
  color: var(--text-color);
}

.input-group .inputLabel {
  position: unset;
  left: 0rem;
  /* padding: 10px 0; */
  font-size: 1rem;
  color: var(--text-color);
  pointer-events: none;
  transition: 0.5s;
  opacity: 0.5;
  font-size: 0.813rem;
  margin-bottom: 0rem;
}

.input-group:focus-within {
  border: solid 1px var(--accent-color);
}

#phonediv:focus-within {
  border: 3px solid var(--accent-color) !important;
}

#emaildiv:focus-within {
  border: 3px solid var(--accent-color) !important;
}

input:focus::placeholder {
  opacity: 0.2;
}

.input-show {
  width: 30px;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.input-with-content~.input-cancel {
  opacity: 1;
}

.input-with-content~.input-show {
  opacity: 1;
}

.input-terms {
  gap: 0.7rem;
}

.input-terms input[type='checkbox'] {
  -webkit-appearance: none;
  appearance: none;
  background: #12162e;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.input-terms input[type='checkbox']:checked::before {
  content: '\2713';
  width: 20px;
  text-align: center;
  display: block;
  color: var(--white-color);
}

.form-btn {
  border: none;
  width: 100%;
  margin-top: 1.5rem;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-btn button {
  padding: 1.2rem;
  font-weight: var(--font-weight-normal);
  cursor: pointer;
  width: 100%;
  height: 71px;
  background-color: transparent;
  border: none !important;
  color: var(--accent2-color);
  font-size: 1rem;
}

/* Base button styles */
.button-rep {
  justify-content: center;
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0.5em 1.4em 0.5em 1.2em;
  /* Adjusted padding */
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: 12px;
  background: var(--accent-color);
  /* Variable background color */
  font-weight: 550;
  /* Adjusted border */
  white-space: nowrap;
  border: none !important;
}

.form-btn .button-rep:hover {
  transform: translateY(-2px);
  background-color: #ffd666; /* Slightly lighter shade of the accent color */
  box-shadow: 0 4px 12px rgba(245, 195, 68, 0.25);
}

.form-btn .button-rep:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(245, 195, 68, 0.15);
}

.inputLabel {
  display: block;
  width: 90%;
}

.inputField {
  padding-top: 0.4rem;
}

.carriers-reports-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}

#tab-reports h3,
#tab-red-flags h3, 
#tab-equipment h3 {
  font-size: 2rem;
  opacity: 0.5;
}

.carriers-reports-list {
  width: 68%;
  margin-right: 30px;
}

@media screen and (max-width: 772px) {

  .map-container {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  #map-details-div {
    margin-left: 0 !important;
    margin-top: 30px;
    width: 100% !important;
  }

  .stats-container-outer .map-details {
    display: none;
  }
}

.carrier-location-sidebar {
  width: calc(33% - 20px);
  border-radius: 15px;
  border: 5px dashed var(--accent-color);
  padding: 30px;
  margin-top: 30px;
  text-align: center;
}

.carrier-report-sidebar {
  border-radius: 15px;
  border: 5px dashed var(--red-color);
  padding: 30px;
  max-height: 0;
  overflow: hidden;
  margin-top: 0px;
  opacity: 0;
  transform: translateY(-20px);
  transition: visibility 0s linear 0.5s, opacity 0.5s ease, max-height 0.5s ease, transform 0.5s ease;
}

.carrier-report-line2 p {
  word-break: break-all;
  word-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
}

:root {
  --screen-width: 100vw;
  /* This sets a CSS variable for the viewport width */
  --container-width: calc(0.897 * var(--screen-width) - 312.55px);
}

.carrier-report {
  width: var(--container-width);
  max-width: 100%;
  /* Ensure the container does not exceed the screen width */
}

@media screen and (max-width: 880px) {
  .carrier-report-sidebar {
    width: auto;

  }

  .carrier-location-sidebar {
    width: auto !important;
  }

  #carriers-reports-header {
    margin: auto;
    font-size: 2.326rem;
  }
}

.carrier-report-sidebar.active {
  visibility: visible;
  max-height: 100%;
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.1s;
}

.carrier-report-sidebar textarea {
  padding: 10px;
  min-height: 300px;
}

.carrier-report-sidebar select {
  padding: 10px;
}

.drop-zone {
  border: 4px dashed var(--accent-color);
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  color: var(--accent-color);
  font-size: 16px;
  justify-content: center;
}

.drop-zone:hover {
  background-color: var(--background-color);
}

.file-list ul {
  list-style-type: none;
  padding: 0;
}

.file-list li {
  display: flex;
  align-items: center;
  margin: 5px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--white-color);
  transition: background-color 0.2s;
  border-radius: 8px;
}

.file-list li:hover {
  background-color: var(--red-color);
  border-radius: 8px;
}

.street-image {
  border-radius: 20px;
  border: 3px solid var(--secondary-color);
  margin-top: 15px;
  width: 100%;
}

#virtual-adress {
  min-width: auto !important;
  margin-top: 15px;
  width: 90%;
}


.carrier-report {
  min-width: 540px;
  width: 100%;
  border-radius: 20px;
  background-color: var(--secondary2-color);
  padding: 25px;
  margin-top: 20px;
  position: relative;
}

.carrier-report-line1 {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.virtual-check {
  margin-bottom: 0px;
}

.user-img {
  border-radius: 35px;
  width: 70px;
  height: 70px;
  align-self: center;
}

.matches-img {
  width: 45px;
  height: 45px;
}

.options-img {
  width: 30px;
  height: auto;
  position: absolute;
  top: 20px;
  /* Adjust as needed */
  right: 20px;
  /* Adjust as needed */
  cursor: pointer;
}

/* Hide the dropdown menu initially */
.dropdown-menu {
  border-radius: 12px;
  display: none;
  position: absolute;
  right: 30px;
  /* Align to the right of .options-button */
  background-color: #666;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 30px;
}

/* Style for each dropdown item */
.dropdown-menu a {
  border-radius: 12px;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color on hover */
.dropdown-menu a:hover {
  background-color: var(--accent-color);
}

.virtual-text {
  margin-left: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left !important;
}

.report-user-info {
  margin-left: 10px;
  margin-right: 20px;
  white-space: nowrap;
}

.report-type {
  color: white;
  white-space: nowrap;
  background-color: var(--green-color);
  padding: 7px 20px;
  font-size: 0.8rem;
  border-radius: 100px;
  font-weight: 550;
}

.entity-type {
  max-height: 30px;
  white-space: nowrap;
  padding: 10px 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 13px;
  border-radius: 100px;
  display: block;
  background-color: #e1dede;
  color: black;
  font-weight: var(--font-weight-bold); 
  margin-left: 20px;

}

.report-button {
  white-space: nowrap;
  color: white;
  background-color: var(--red-color);
  padding: 7px 20px;
  font-size: 0.8rem;
  border-radius: 100px;
  font-weight: 550;
  border: none;
}


.carReports {
  background-color: var(--red-color);

}

.report-types {
  display: flex;
  /* Enables Flexbox */
  flex-wrap: wrap;
  /* Allows items to wrap onto the next line */
  gap: 10px;
  /* Optional: adds space between items */
  flex-direction: row;
  align-content: flex-start;
}


.carrier-report-sidebar form {
  width: 100%;
}

.carrier-report-sidebar form input,
.carrier-report-sidebar form textarea,
.carrier-report-sidebar form select,
.carrier-report-sidebar form input[type='date'] {
  background-color: var(--accent2-color);
  color: var(--white-color);
  outline: 0;
  border: 0;
  width: 100%;
  font-size: 1.25rem;
  font-family: 'Geist', sans-serif;
}

.carrier-report-sidebar form input[type='date'] {
  color-scheme: dark;
  padding: 10px;
  border-radius: 7px;
}

.carrier-report-sidebar form div {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.carrier-report-sidebar form div label {
  margin-bottom: 10px;
  color: #a5a5a5;
  font-size: 1.5rem;
}

.no-reports {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

#reportDics.active {
  display: flex;
}

.inspections-div {
  width: 100%;
}

.state-name-style {
  margin-top: 2px;
  color: var(--white-color);
  /* Color for the state name */
  font-weight: 500;
  font-size: 1rem;
}

.inspections-title {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.inspection-state {
  display: block;
  padding: 25px;
  margin-bottom: 20px;
  background-color: var(--accent2-color) !important;
}

.active-state {
  display: block;
}

.custom-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--background-color);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: var(--background-color);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

/* Webkit browsers (Chrome, Safari, newer versions of Opera) */
::-webkit-scrollbar {
  width: 6px;
  background-color: var(--background-color);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--background-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #484853#262631;
}

/* For Internet Explorer and Edge */
body {
  -ms-overflow-style: none;
}

/* Custom scrollbar for IE and Edge */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  body {
    scrollbar-base-color: var(--background-color);
    scrollbar-face-color: var(--secondary-color);
    scrollbar-3dlight-color: var(--background-color);
    scrollbar-highlight-color: var(--background-color);
    scrollbar-track-color: var(--background-color);
    scrollbar-arrow-color: var(--secondary-color);
    scrollbar-shadow-color: var(--background-color);
  }
}

::selection {
  background: var(--accent-color);
  color: var(--white-color);
  text-shadow: none;
}


/* Progress bar styles */
.progress-container {
  width: 100%;
  padding: 2rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(38, 38, 48, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22.5px);
  border: solid 3px var(--background-color);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 12.5%;
  position: relative;
  cursor: pointer;
}

.step.active .step-number {
  background: var(--accent-color);
  color: black;
}

.step.completed .step-number {
  background: var(--accent-color);
  color: black;
}

.step-label {
  font-size: 0.8rem;
  color: var(--white-color);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.step.active .step-label {
  opacity: 1;
}

.step:hover .step-label {
  opacity: 1;
}

/* Connecting lines between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: var(--button-color); /* Always use accent color for lines */
  z-index: 0;
}

.step.completed:hover {
  cursor: default;
}

/* Style the active lines */
.step.line-active::before {
  background-color: var(--accent-color);
}

.step.line-after-active::after {
  background-color: var(--accent-color);
}

.step:not(.completed):not(.active) {
  cursor: default;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
  .step-sublabel {
      font-size: 0.6rem;
  }
}

/* Add glowing effect for active step */
.step.active .step-number {
  box-shadow: 0 0 0 4px rgba(245, 195, 68, 0.2);
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0% {
      box-shadow: 0 0 0 0 rgba(245, 195, 68, 0.4);
  }
  70% {
      box-shadow: 0 0 0 10px rgba(245, 195, 68, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(245, 195, 68, 0);
  }
}

/* Enhance the active step appearance */
.step.active {
  position: relative;
  cursor: default;
}

.step.active::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: radial-gradient(circle, rgba(245, 195, 68, 0.15) 0%, rgba(245, 195, 68, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.step.active .step-number {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Step number styling */
.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(50 50 57);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#sendEmailButton:hover {
  opacity: 1 !important;
}

#sendEmailButtonContainer:hover {
  opacity: 1 !important;
}


