#hs-surveys__survey-container {
  --hs-button-color: #2BC1C1;
  --hs-button-text-color: #1f1f24;
  --hs-title-text-color: #0d4d5c;
  --hs-subtitle-text-color: #1f1f24;
  --hs-color10: #E6E7E9;

  --hs-font: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI emoji;
}
#hs-surveys__survey-container * { box-sizing: border-box; }
body.noscroll {
  overflow: hidden;
  position: fixed;
  right: 0;
  left: 0;
}
#hs-surveys__survey-container * {
  margin: 0;
  padding: 0;
  border: 0;
	font: inherit;
	vertical-align: baseline;
  font-family: var(--hs-font);
  transition: .25s all ease;
  text-decoration: none;
}
#hs-surveys__survey-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  z-index: 99999999999999999999999999;
  overflow: hidden;
  font-family: var(--hs-font);
}
#hs-surveys__survey-container.corner {
  background: transparent;
}
#hs-surveys__survey-container .hs-surveys__survey-card {
  width: 100%;
  max-width: 500px;
  background-color: white;
  max-height: 100vh;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6.25px;
  display: flex;
  flex-direction: column;
}
#hs-surveys__survey-container.corner .hs-surveys__survey-card {
  right: 0;
  bottom: 0;
  margin: 0 12.5px 12.5px 0;
  transform: none;
  left: auto;
  top: auto;
  position: absolute;
}
#hs-surveys__survey-container .hs-surveys__survey-close-button {
  color: rgba(0, 0, 50, 0.5);
  position: absolute;
  right: 5px;
  top: -5px;
  cursor: pointer;
  width: 32px;
  height: 20px;
  font-size: 35px;
  font-weight: 200;
}
#hs-surveys__survey-container .hs-surveys__survey-card #hs-surveys__survey-branding {
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom-left-radius: 6.25px;
  border-bottom-right-radius: 6.25px;
  padding: 12.5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: rgba(0, 0, 50, 0.5);
}
#hs-surveys__survey-container .hs-surveys__survey-card #hs-surveys__survey-branding.hs-surveys__hidden {
  display: none !important;
}
#hs-surveys__survey-container .hs-surveys__survey-card #hs-surveys__survey-branding:hover {
  color: var(--hs-button-color);
}
#hs-surveys__survey-container .hs-surveys__survey-question-container {
  padding: 50px 25px;
  width: 100%;
}
#hs-surveys__survey-container .hs-surveys__survey-question-text {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  display: block;
  color: var(--hs-title-text-color);
  margin-bottom: 12.5px;
}
#hs-surveys__survey-container .hs-surveys__survey-question-subtitle {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  display: block;
  color: var(--hs-subtitle-text-color);
  margin-bottom: 25px;
}
#hs-surveys__survey-container .hs-surveys__survey-question-textbox {
  width: 100%;
  display: block;
  border: 0;
  padding: 12.5px 18.75px;
  background-color: var(--hs-color10);
  border: 1px solid var(--hs-color10);
  border-radius: 6.25px;
  transition: .25s ease border, .25s ease color;
  color: var(--hs-title-text-color);
  outline: none;
  font-family: var(--hs-font);
  resize: none;
  transition: .25s all ease;
}
#hs-surveys__survey-container .hs-surveys__survey-question-textbox:hover {
  border: 1px solid var(--hs-button-color);
  background-color: white;
  color: var(--hs-title-text-color);
}
#hs-surveys__survey-container .hs-surveys__survey-question-choice {
  display: none;
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choice-label,
#hs-surveys__survey-container .hs-surveys__single-select-choice-label {
  display: flex;
  align-items: center;
  color: rgba(0, 0, 20, 0.75);
  padding: 6.25px;
  border-radius: 6.25px;
  cursor: pointer;
  border: 1px rgba(50,60,60,0.1) solid;
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choice-label:hover,
#hs-surveys__survey-container .hs-surveys__single-select-choice-label:hover {
  border-color: rgba(50,60,60,0.2);
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choice-label:hover .hs-surveys__multiple-select-choicemark,
#hs-surveys__survey-container .hs-surveys__single-select-choice-label:hover .hs-surveys__single-select-choicemark {
  background-color: rgba(50,60,60,0.2);
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choice-label.hs-surveys__checked,
#hs-surveys__survey-container .hs-surveys__single-select-choice-label.hs-surveys__checked {
  border-color: var(--hs-button-color);
  color: var(--hs-button-color);
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choice-label:not(:last-of-type),
#hs-surveys__survey-container .hs-surveys__single-select-choice-label:not(:last-of-type) {
  margin-bottom: 12.5px;
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choicemark,
#hs-surveys__survey-container .hs-surveys__single-select-choicemark {
  width: 25px;
  height: 25px;
  border-radius: 3.125px;
  margin-right: 12.5px;
  display: flex;
  cursor: pointer;
  background-color: rgba(50,60,60,0.1);
  position: relative;
  align-items: center;
  justify-content: center;
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choice:checked ~ .hs-surveys__multiple-select-choicemark:after,
#hs-surveys__survey-container .hs-surveys__single-select-choice:checked ~ .hs-surveys__single-select-choicemark:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--hs-button-color);
  border-radius: 2px;
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choicemarklabel ,
#hs-surveys__survey-container .hs-surveys__single-select-choicemarklabel {
  color: #00000085;
  z-index: 10;
}
#hs-surveys__survey-container .hs-surveys__multiple-select-choice-label.hs-surveys__checked .hs-surveys__multiple-select-choicemarklabel,
#hs-surveys__survey-container .hs-surveys__single-select-choice-label.hs-surveys__checked .hs-surveys__single-select-choicemarklabel {
  color: white;
}
#hs-surveys__survey-container .hs-surveys__nps-choice-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 20, 0.75);
  width: 37.5px;
  height: 37.5px;
  border-radius: 25%;
  margin-right: 6.25px;
  cursor: pointer;
  background-color: var(--hs-color10);
  position: relative;
  line-height: 37.5px;
}
#hs-surveys__survey-container .hs-surveys__nps-choice-label:not(:last-of-type) {
  margin-bottom: 12.5px;
}
#hs-surveys__survey-container .hs-surveys__nps-choice-label.hs-surveys__checked {
  background-color: var(--hs-button-color);
  color: white;
}
#hs-surveys__survey-container .hs-surveys__nps-choices {
  display: flex;
  justify-content: center;
}
#hs-surveys__survey-container .hs-surveys__survey-error {
  color: #e96057;
  font-size: 14px;
  margin-top: 6.25px;
}
#hs-surveys__survey-container .hs-surveys__survey-question-next-button {
  background: var(--hs-button-color);
  color: var(--hs-button-text-color);
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  border: 0;
  border-radius: 6.25px;
  text-decoration: none;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 50px auto 0 auto;
  display: block;
  cursor: pointer;
  text-transform: none;
}
