.help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: 50%;
}

.es-modal--wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.8);
}
.es-modal--wrapper .description {
  margin: 0;
}
.es-modal--inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  min-height: 40vh;
  max-height: 90vh;
  background: var(--white);
  font-weight: var(--font-weight-regular);
  border-radius: 10px;
  text-align: center;
  padding: 30px 100px;
}
.es-modal--inner.no-background {
  background: none;
}
.es-modal--inner.no-background .es-modal--close {
  background: var(--white);
}
.es-modal--content {
  max-height: 70vh;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.es-modal--title {
  margin-bottom: 20px;
}
.es-modal--body {
  overflow: auto;
}
.es-modal--close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
/*# sourceMappingURL=modal.css.map */