/**
 * Dialog
 */
 .dialog {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.dialog .dialog-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.dialog .dialog-content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  width: 50%;
  max-width: 50em;
  max-height: 90%;
  z-index: 1001;
}

.dialog .dialog-header {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialog .dialog-header h5 {
  margin: 0;
}

.dialog .dialog-header i {
  cursor: pointer;
  color: #444;
}

.dialog .dialog-body {
  padding: 20px;
  color: #444;
  overflow-y: auto;
}

.dialog .dialog-body ol {
  padding: 0;
  overflow-y: auto;
}

.dialog .dialog-body ul {
  padding-left: 20px;
  margin-top: -15px;
  margin-bottom: 0;
}

.dialog .dialog-body ul li {
  list-style-type: disc;
}

.dialog .dialog-body ul ul li {
  list-style-type: circle;
}

.dialog .dialog-body li {
  margin-top: 15px;
}

.dialog .dialog-footer {
  display: flex;
  justify-content: center;
  padding: 20px;
  border-top: 1px solid #e5e5e5;
}

.dialog .dialog-footer button {
  color: #fff !important;
  background-color: #13878a !important;
  min-width: 12rem;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 991px) {
  .dialog .dialog-content {
    width: 90%;
  }
}
