﻿#isMultiple {
  display: none;
}

#isTracked {
  display: none;
}

#ToggleOrderUI {
  display: none;
}

/* .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
} */

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: gainsboro;
  top: 0;
  bottom: 0;
  left: 23%;
  margin-left: -3px;
}

.containertimeline {
  padding: 10px 10px;
  position: relative;
  width: 50%;
}

/* The circles on the timeline */

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 25%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid grey;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 0;
  border: medium solid grey;
  border-width: 10px 10px 10px 0;
  border-color: transparent gainsboro transparent transparent;
}

.backIcon:before {
  content: "\f177";
  font-family: FontAwesome;
  font-size: 25px;
  cursor: pointer;
  color: dimgrey;
}

/* new way */
.py-8 {
  padding-bottom: 4.5rem !important;
  padding-top: 4.5rem !important;
}
@media (min-width: 576px) {
  .py-sm-8 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .py-md-8 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }
}
@media (min-width: 992px) {
  .py-lg-8 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }
}
@media (min-width: 1200px) {
  .py-xl-8 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }
}
@media (min-width: 1400px) {
  .py-xxl-8 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }
}
.bsb-timeline-pg {
  --bsb-tl-color: var(--bs-primary-bg-subtle);
  --bsb-tl-circle-color: var(--bs-tertiary-bg);
  --bsb-tl-circle-border-color: var(--bs-primary);
  --bsb-tl-indicator-color: var(--bs-tertiary-bg);
  --bsb-tl-circle-size: 16px;
  --bsb-tl-circle-offset: 8px;
  --bsb-tl-circle-border-size: 2px;
}
.bsb-timeline-pg .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.bsb-timeline-pg .timeline:after {
  background-color: var(--bsb-tl-color);
  bottom: 0;
  content: "";
  left: 0;
  margin-left: -1px;
  position: absolute;
  top: 0;
  width: 2px;
}
@media (min-width: 768px) {
  .bsb-timeline-pg .timeline:after {
    left: 33%;
  }
}
.bsb-timeline-pg .timeline > .timeline-item {
  margin: 0;
  padding: 0;
  position: relative;
}
.bsb-timeline-pg .timeline > .timeline-item:after {
  background: var(--bsb-tl-circle-color);
  border: var(--bsb-tl-circle-border-size) solid
    var(--bsb-tl-circle-border-color);
  border-radius: 50%;
  content: "";
  height: var(--bsb-tl-circle-size);
  left: calc(var(--bsb-tl-circle-offset) * -1);
  position: absolute;
  top: calc(50% - var(--bsb-tl-circle-offset));
  width: var(--bsb-tl-circle-size);
  z-index: 1;
}
.bsb-timeline-pg .timeline > .timeline-item .timeline-body {
  margin: 0;
  padding: 0;
  position: relative;
}
.bsb-timeline-pg .timeline > .timeline-item .timeline-meta {
  padding: 0 0 1rem 2.5rem;
}
.bsb-timeline-pg .timeline > .timeline-item:first-child .timeline-meta {
  padding: 2.5rem 0 1rem 2.5rem;
}
.bsb-timeline-pg .timeline > .timeline-item .timeline-content {
  padding: 0 0 2.5rem 2.5rem;
}
@media (min-width: 768px) {
  .bsb-timeline-pg .timeline > .timeline-item {
    left: 33%;
    width: 67%;
  }
  .bsb-timeline-pg .timeline > .timeline-item .timeline-meta {
    display: flex;
    justify-content: flex-end;
    left: -100%;
    margin: 0;
    padding: 0 2.5rem 0 0;
    position: absolute;
    top: calc(50% - 29px);
    width: 100%;
    z-index: 1;
  }
  .bsb-timeline-pg .timeline > .timeline-item:first-child .timeline-meta {
    padding: 0 2.5rem 0 0;
  }
  .bsb-timeline-pg .timeline > .timeline-item .timeline-content {
    padding: 1.5rem;
  }
  .bsb-timeline-pg .timeline > .timeline-item .timeline-indicator {
    position: relative;
  }
  .bsb-timeline-pg .timeline > .timeline-item .timeline-indicator:after {
    border-width: 1px;
    border: 10px solid var(--bsb-tl-indicator-color);
    border-color: transparent var(--bsb-tl-indicator-color) transparent
      transparent;
    border-left-width: 0;
    content: "";
    left: calc(1.5rem - 10px);
    position: absolute;
    top: calc(50% - var(--bsb-tl-circle-offset));
    z-index: 1;
  }
}
