.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99999;
} 

.overlay_outer {
  margin: 0 auto;
  width: 450px;
  min-height:200px;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.overlay_inner {
  position: relative;
  padding: 3.5rem 3rem;
  text-align:center;
}

.overlay_inner .overlay_close_icon {
  position: absolute;
  top: 3rem;
  right: 3rem;
}

.overlay_inner h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333333;
}

.overlay_notice {
  font-size: 0.875rem;
  color: #8c8a93;
  margin-top: 1.53rem;
}

.overlay_notice span {
  color:#e26d5a;
  font-weight: bold;
}

/* Table */
.overlay_buyer-table {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-spacing: 0; /* 取消預設2px */
}

.overlay_buyer-table tr td:first-child {
  color: #8c8a93;
} 

.overlay_buyer-table tr td:last-child {
  padding-left: 1.5rem;
}

/* 按鈕 */
.overlay_btn_wrap {
  padding-top: 2.5rem;
}

.overlay_btn {
  width: 11rem;
  height: 3rem;
  border-radius: 10px;
  border: 2px solid;
  font-size: 1rem;
  font-weight: bold;
  background-color: #ffffff;
  cursor: pointer;
  outline: none;
}

.overlay_btn:first-child {
  margin-right: 1.875rem;
}

.blue {
  color:#3066be;
  border-color:#3066be;
}

.red {
  color:#e26d5a;
  border-color:#e26d5a;
}