@import url("https://fonts.googleapis.com/css2?family=Aileron&family=Allura&display=swap");
#customDemoPopup {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: 0.25s ease;
  display: flex;
}
.customDemoPopupContent {
  background-color: #fff;
  margin: auto;
  padding: 1em;
  border: 1px solid #888;
  border-radius: 25px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  row-gap: 1em;
  scale: 0.5;
  transition: 0.25s ease;
}
.customDemoPopupContent div:nth-child(3) {
  display: flex;
  position: relative;
}
#closePopupButton {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
}
#closePopupButton svg {
  width: 1.5em;
  height: 1.5em;
  pointer-events: none;
}
.show {
  display: flex !important;
  align-items: center !important;
}
@media (orientation: portrait) {
  .customDemoPopupContent {
    width: 90vw;
  }
}
@media (orientation: landscape) {
  .customDemoPopupContent {
    width: 40vw;
  }
}
#popupOpenButton {
  margin: 20px 0;
}
#customDemoTitle {
  font-size: 1em;
  font-weight: 700;
  margin: 0;
}
.customDemoBtnContainer {
  display: inline-flex;
  gap: 0.5em;
  position: absolute !important;
  left: 0.5em;
  bottom: 0.5em;
}
.underlineBtnForCustom {
  text-align: center;
  padding: 0.5em 1em;
  background: #ab9d93;
  color: #fff;
  border: none;
  border-radius: 1em;
  font-weight: 600;
  cursor: pointer;
}
.customDemoBtn {
  padding: 0.5em 1em;
  background-color: #ab9d93;
  color: #fff;
  border: none;
  border-radius: 1em;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
  flex-grow: 1;
  transition: 0.25s ease;
}
.customDemoBtnClick {
  box-shadow: inset rgba(0, 0, 0, 0.05) 0px 0px 0.5em 0px,
    inset rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background-color: #fff !important;
  color: var(--global-palette6) !important;
}
#customDemoInput {
  width: 100%;
  height: fit-content;
  padding: 5px 20px;
  box-sizing: border-box;
  border: 2.5px solid #e8e9eb;
  border-radius: 25px;
  background-color: #fff;
  resize: none;
  overflow: hidden;
  font-size: 16px;
  text-align: center;
}
.customDemoPopupContent #customDemoOutputContainer {
  background-color: #e8e9eb;
  border-radius: 25px;
  margin: 0;
  height: 3em;
  align-items: center;
  justify-content: center;
  display: none;
}
.font1 {
  font-family: aileron;
  font-size: 21px;
}
.font2 {
  font-family: allura;
  font-size: 28px;
}
.outsetBoxShadow {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0.5em 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
