.ship-border {
  border: 1px solid;
  border-image-source: linear-gradient(
    133.25deg,
    rgba(252, 248, 230, 0.3) 13.62%,
    rgba(150, 148, 137, 0.2) 74.24%
  );
}
.ship-blur {
  border: 1px solid;

  border-image-source: linear-gradient(
    133.25deg,
    rgba(252, 248, 230, 0.3) 13.62%,
    rgba(150, 148, 137, 0.2) 74.24%
  );
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 0;
  width: 1px;
  background-color: #d4d0c1d4;
  z-index: 0;
}

.timeline-item:not(:last-child)::before {
  bottom: -24px;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-circle {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 24px; /* Rounded slider */
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%; /* Circular handle */
}

input:checked + .slider {
  background-color: #8ff15f;
}

input:focus + .slider {
  box-shadow: 0 0 1px #8ff15f;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}
/* Styles for shipping option labels */
.shipping-option-label {
  transition: border-color 0.2s ease-in-out; /* Smooth transition for border */
  border: 1px solid #d4d0c1d4; /* Default border */
}

.shipping-option-label.selected {
  border-width: 2px;
  border-color: #120e00; /* Dark border for selected option */
}
