.ss-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  opacity: 0;
}
.ss-modal.ss-modal-visible {
  opacity: 1;
  pointer-events: auto;
}
.ss-modal-dialog {
  position: relative;
  width: auto;
  pointer-events: none;
  display: flex;
  align-items: center;
  max-width: 800px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.ss-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: inherit;
  pointer-events: auto;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid #c1c1c1;
  border-radius: 0;
  outline: 0;
}
.ss-modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 25px;
  display: flex;
  align-items: flex-start;
}
.ss-modal-close {
  appearance: none;
  border: 1px solid #c1c1c1;
  background: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 25px;
  bottom: calc(100% + 25px);
  border-radius: 25px;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.ss-modal-close::before {
  display: inline-block;
  font-family: "heim-icons";
  font-weight: normal;
  font-variant: normal;
  content: "\e909";
  font-size: 22px;
  line-height: 1;
}
.ss-modal-close:hover {
  border-color: #aaa;
}
.ss-modal-close span {
  display: none;
}
.ss-modal-text {
  margin-right: auto;
}
.ss-modal-title {
  margin-bottom: 25px;
}
.ss-modal-image {
  margin-left: 50px;
}
.ss-modal-message--error {
  color: red;
}
.ss-modal-submit {
  margin-top: 15px;
}
.ss-modal-open {
  overflow: hidden;
}
