.rwot-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.rwot-modal {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.rwot-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.rwot-modal-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -1px;
  margin: 0;
  padding: 0 0 16px 0;
}

.rwot-modal-actions {
  margin-top: 16px;
}

.btn-track {
  display: inline-block;
  padding: 8px 14px;
  background: #007cba;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.rwot-modal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
}

.rwot-modal-content {
  padding: 16px 0;
  max-height: 460px;
}

.rwot-status-awb {
  padding: 8px 0;
  max-height: 256px;
  overflow-x: auto;
}

.rwot-circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  position: relative;
  flex-shrink: 0;
}

.rwot-circle-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--rwot-main-color, #E91010);
  left: 50%;
  transform: translateX(-50%);
}

.rwot-manifest-wrapper:first-child .rwot-circle-wrapper::before {
  top: 50%;
  bottom: 0;
}

.rwot-manifest-wrapper:last-child .rwot-circle-wrapper::before {
  top: 0;
  bottom: 50%;
}

.rwot-manifest-wrapper:only-child .rwot-circle-wrapper::before {
  display: none;
}

.rwot-circle {
  width: 16px;
  height: 16px;
  border: 1px solid var(--rwot-main-color, #E91010);
  background-color: #ffffff;
  border-radius: 100%;
  flex-shrink: 0;
  z-index: 2;
}

.rwot-manifest-wrapper {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.rwot-manifest-wrapper span:first-child {
  font-size: 14px;
  color: var(--text-disabled, #66696D);
}

.rwot-manifest-wrapper span:last-child {
  font-size: 16px;
  color: var(--text-default, #1F2122);
}

.rwot-information__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rwot-information {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.rwot-text-center {
  text-align: center;
}

.rwot-d-flex {
  display: flex;
}

.rwot-flex-column {
  flex-direction: column;
}

.rwot-justify-content-between {
  justify-content: center;
}

.rwot-manifest__wrapper {
  padding-top: 16px;
}

.rwot-text-center {
  text-align: center;
}

.rwot-manifest-information {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.rwot-modal-footer {
  padding: 12px 12px 0 12px;
  border-top: 1px solid #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rwot-modal-footer .rwot-btn-modal-close {
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--rwot-main-color, #E91010);
  color: var(--rwot-main-color, #E91010);
  background-color: #FFFFFF;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  transform: scale(1);
  transition: all .5s;
}

.rwot-modal-footer .rwot-btn-modal-close:active {
  transform: scale(0.9);
}