/*
 * Confirm popup styles
*/

.wtotem_body .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(94, 105, 119, 0.6);
  display: flex;
  z-index: 99999;
  padding: 0;
}
.wtotem_body .popup-content {
  z-index: 30!important;

  position: relative;
  width: 90%;
  height: 90%;
  margin: auto;
  border: 1px solid rgb(187, 187, 187);
  padding: 5px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgb(255, 255, 255);
  margin-top: 20px;
}
.wtotem_body .confirmation-dialog {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wtotem_body .confirmation-dialog__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #1d293f;
  margin: 0 0 20px;
}
.wtotem_body .confirmation-dialog__text {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 10px;
  max-width: 779px;
  white-space: pre-wrap;
}
.wtotem_body .confirmation-dialog__list{
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 24px;
  max-width: 584px;
  white-space: pre-wrap;
  width: 88%;
  list-style: disc;
}

.wtotem_body .confirmation-dialog__buttons-wrapper {
  display: flex;
}
.wtotem_body .wt-button {
  min-width: 28px;
  height: 36px;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3d50df;
  text-decoration: none;
  border: none;
  margin-bottom: 20px;
}
