html {
  height: 100%; }

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #333333;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  height: 100%; }

#forms-component {
  height: 100%; }

.form-content-component .form-submit-error-component-wrapper {
  margin-bottom: 32px;
  width: 70%; }

.form-content-component .form-titles {
  margin-bottom: 16px;
  margin-top: 16px; }
  .form-content-component .form-titles .form-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 8px; }
    .form-content-component .form-titles .form-title.form-survey-mode {
      line-height: 32px; }
  .form-content-component .form-titles .form-description {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300; }
  .form-content-component .form-titles .form-is-anonymous-indicator {
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    color: #A358DF; }

.form-content-component .icon-dapulse-close {
  color: #C4C4C4;
  font-size: 0.8em;
  cursor: pointer; }
  @media (min-width: 500px) {
    .form-content-component .icon-dapulse-close:hover {
      color: #808080; } }

.scroll-style::-webkit-scrollbar {
  width: 10px;
  height: 15px; }

.scroll-style::-webkit-scrollbar-track {
  border-radius: 10px; }

.scroll-style::-webkit-scrollbar-thumb {
  background-color: #b2b2b2; }

.form-content-component .form-content {
  width: 70%;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 360px) {
    .form-content-component .form-content {
      width: 80%; } }
  .form-content-component .form-content.form-survey-mode {
    overflow: auto;
    width: 100%;
    position: relative; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .form-content-component .form-content.form-survey-mode {
        height: 100%; } }

.form-content-component .form-input-component {
  width: 100%; }

.form-content-component .form-input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  padding: 12px;
  outline: none;
  font-weight: 300;
  border: solid 1px #C4C4C4;
  border-radius: 2px;
  box-sizing: border-box;
  background-color: white; }
  .form-content-component .form-input:focus {
    border-color: #009AFF; }
  .form-content-component .form-input:disabled {
    border: none;
    background-color: #F7F7F7;
    color: #808080;
    font-size: 14px; }

.form-content-component .long-text-form-input {
  height: auto;
  resize: none; }

.form-content-component .date-form-input-component {
  display: -ms-flexbox;
  display: flex; }
  .form-content-component .date-form-input-component .Select-control {
    width: 80px;
    border-radius: 0; }
    @media (max-width: 500px) {
      .form-content-component .date-form-input-component .Select-control {
        width: 70px; } }
  .form-content-component .date-form-input-component .date-form-input-month .Select-control {
    border-radius: 2px 0 0 2px; }
  .form-content-component .date-form-input-component .date-form-input-day.is-disabled .Select-control {
    border-left: solid 1px white;
    border-right: solid 1px white; }
  .form-content-component .date-form-input-component .date-form-input-day .Select-control {
    border-radius: 0; }
  .form-content-component .date-form-input-component .date-form-input-year .Select-control {
    border-radius: 0 2px 2px 0; }

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}
.Select input::-ms-clear {
  display: none !important;
}
.Select input::-ms-reveal {
  display: none !important;
}
.Select,
.Select div,
.Select input,
.Select span {
  box-sizing: border-box;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}
.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}
.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.Select.is-focused > .Select-control {
  background: #fff;
}
.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
  background: #fff;
}
.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}
.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}
.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.Select-control > *:last-child {
  padding-right: 5px;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}
.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}

.form-content-component .form-select-input {
  font-size: 14px;
  font-weight: 300; }
  .form-content-component .form-select-input .is-disabled .Select-control {
    border: none;
    background-color: #F7F7F7; }
    .form-content-component .form-select-input .is-disabled .Select-control .Select-placeholder {
      color: #808080; }
  .form-content-component .form-select-input .is-focused .Select-control {
    box-shadow: none;
    border-color: #009AFF; }
  .form-content-component .form-select-input .Select-menu-outer {
    border: none;
    margin-top: 0;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1); }
  .form-content-component .form-select-input .Select-control {
    cursor: pointer;
    height: 40px;
    border-radius: 2px; }
    .form-content-component .form-select-input .Select-control .Select-placeholder {
      line-height: 38px; }
    .form-content-component .form-select-input .Select-control .Select-value {
      line-height: 38px !important; }
      .form-content-component .form-select-input .Select-control .Select-value .Select-value-label {
        line-height: 38px; }
    .form-content-component .form-select-input .Select-control .Select-input {
      height: 38px; }
      .form-content-component .form-select-input .Select-control .Select-input input {
        padding: 11px 0 12px;
        font-weight: 300; }
    .form-content-component .form-select-input .Select-control .Select-arrow-zone:hover .Select-arrow {
      border-color: #009AFF; }
    .form-content-component .form-select-input .Select-control .Select-arrow-zone .Select-arrow {
      border-width: 1px 1px 0 0;
      width: 9px;
      height: 9px;
      border-color: #333333;
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
      top: -2px; }
  .form-content-component .form-select-input .Select-option {
    min-height: 32px; }
    .form-content-component .form-select-input .Select-option.is-selected {
      background-color: white; }
    .form-content-component .form-select-input .Select-option.is-focused {
      background-color: #009AFF;
      color: white; }

.form-content-component .status-form-input-component {
  width: 100%; }
  @media (min-width: 500px) {
    .form-content-component .status-form-input-component {
      width: 50%;
      margin-right: 50%; } }

.form-content-component .number-form-input::-webkit-inner-spin-button,
.form-content-component .number-form-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.form-content-component .number-form-input {
  -moz-appearance: textfield; }
  @media (min-width: 500px) {
    .form-content-component .number-form-input {
      width: 50%; } }

.form-content-component .boolean-form-input-component {
  height: 22px; }
  .form-content-component .boolean-form-input-component .form-checkbox-component.disabled .form-checkbox-input-placeholder {
    border: none;
    background-color: #F7F7F7;
    cursor: auto; }

.form-checkbox-component label {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 23px; }
  .form-checkbox-component label .form-checkbox-input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
  .form-checkbox-component label .form-checkbox-input-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 1px solid #C4C4C4;
    border-radius: 4px; }
  .form-checkbox-component label:hover .form-checkbox-input-placeholder {
    border-color: #009AFF; }
  .form-checkbox-component label input:checked ~ .form-checkbox-input-placeholder,
  .form-checkbox-component label input:focus ~ .form-checkbox-input-placeholder,
  .form-checkbox-component label input:focus:checked ~ .form-checkbox-input-placeholder {
    background-color: #ffffff;
    border-color: #009AFF; }
  .form-checkbox-component label:hover input:checked ~ .form-checkbox-input-placeholder {
    background-color: rgba(0, 161, 230, 0.16); }
  .form-checkbox-component label .form-checkbox-input-placeholder:after {
    content: "";
    position: absolute;
    display: none; }
  .form-checkbox-component label input:checked ~ .form-checkbox-input-placeholder:after {
    display: block; }
  .form-checkbox-component label input:disabled ~ .form-checkbox-input-placeholder {
    background-color: #F1F1F1;
    border-color: #C4C4C4; }
  .form-checkbox-component label .form-checkbox-input-placeholder:after {
    left: 7px;
    top: 2px;
    width: 5px;
    height: 12px;
    border: solid #009AFF;
    border-width: 0 2px 2px 0;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg); }

.form-content-component .rating-form-input-component {
  height: 24px;
  display: inline-block;
  padding-right: 24px;
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center; }
  .form-content-component .rating-form-input-component .rating-form-icon {
    color: #C4C4C4;
    padding-right: 2px;
    padding-left: 2px;
    vertical-align: middle;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }
    .form-content-component .rating-form-input-component .rating-form-icon:focus {
      outline: none; }
    .form-content-component .rating-form-input-component .rating-form-icon:focus ~ .rating-form-icon {
      opacity: 0.6; }
    .form-content-component .rating-form-input-component .rating-form-icon.enabled {
      cursor: pointer; }
      .form-content-component .rating-form-input-component .rating-form-icon.enabled:hover ~ .enabled {
        opacity: 0.6; }
  .form-content-component .rating-form-input-component .form-rating-close-button {
    display: none;
    position: absolute;
    right: 5px; }
    @media (max-width: 500px) {
      .form-content-component .rating-form-input-component .form-rating-close-button {
        display: -ms-flexbox;
        display: flex; } }
  .form-content-component .rating-form-input-component:hover .form-rating-close-button {
    display: -ms-flexbox;
    display: flex; }

.file-form-input-component {
  font-weight: 300;
  margin-right: 8px;
  display: block;
  -ms-flex-align: center;
      align-items: center;
  max-width: calc(100% - 66px); }
  @media (max-width: 600px) {
    .file-form-input-component {
      max-width: 100%;
      height: 48px; } }
  .file-form-input-component .infinite-bar-loader-container {
    width: 240px; }
  .file-form-input-component .file-form-answers {
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-height: 76px;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 16px; }
    .file-form-input-component .file-form-answers::-webkit-scrollbar {
      width: 0px; }
    .file-form-input-component .file-form-answers::-webkit-scrollbar-thumb {
      background-color: #C4C4C4; }
    .file-form-input-component .file-form-answers:hover::-webkit-scrollbar {
      width: 8px; }
    .file-form-input-component .file-form-answers.disable-scroll {
      overflow: hidden; }

.display-none {
  display: none; }

.file-picker-component {
  color: #009AFF;
  cursor: pointer;
  display: inline-block; }
  .file-picker-component:hover {
    color: #61CAF7; }
  .file-picker-component.disabled {
    cursor: auto;
    color: #808080; }
  .file-picker-component .file-hidden-input {
    display: none; }
  .file-picker-component .icon-dapulse-attachment {
    margin-right: 4px; }

.file-form-input-error-component {
  color: #E44258;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 8px; }
  .file-form-input-error-component .icon-dapulse-error {
    font-size: 1.2em;
    margin-right: 8px; }
  .file-form-input-error-component .retry {
    color: #009AFF;
    margin-left: 4px;
    text-decoration: underline;
    cursor: pointer; }
  .file-form-input-error-component .icon-dapulse-close {
    margin-left: 8px; }

.file-name-with-ellipsis-component {
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%; }
  .file-name-with-ellipsis-component .file-name-without-extension {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0; }
  .file-name-with-ellipsis-component .file-extension {
    -ms-flex-negative: 0;
        flex-shrink: 0; }

.form-content-component .uploaded-file-component {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 100%;
  margin-bottom: 8px; }
  .form-content-component .uploaded-file-component .file-view-list-item-thumbnail-component {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 4px; }
  .form-content-component .uploaded-file-component .file-name-with-ellipsis-component {
    margin-right: 8px; }
  .form-content-component .uploaded-file-component .icon-dapulse-filetype-plain {
    font-size: 36px;
    margin-right: 8px; }

.file-view-list-item-thumbnail-component {
  height: 25px;
  width: 25px;
  margin-right: 8px; }
  .file-view-list-item-thumbnail-component .file-preview {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%; }
    .file-view-list-item-thumbnail-component .file-preview .file-type-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); }
      .file-view-list-item-thumbnail-component .file-preview .file-type-icon.light-theme,
      .light-theme .file-view-list-item-thumbnail-component .file-preview .file-type-icon {
        color: #1C1F3B; }
      .file-view-list-item-thumbnail-component .file-preview .file-type-icon.dark-theme,
      .dark-theme .file-view-list-item-thumbnail-component .file-preview .file-type-icon {
        color: #ffffff; }
      .file-view-list-item-thumbnail-component .file-preview .file-type-icon.dark_overview-theme,
      .dark_overview-theme .file-view-list-item-thumbnail-component .file-preview .file-type-icon {
        color: #ffffff; }
      .file-view-list-item-thumbnail-component .file-preview .file-type-icon.icon-without-background {
        font-size: 20px; }

.country-code-option {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 100%;
  box-sizing: content-box;
  width: 76px; }
  .country-code-option .country-flag-with-fallback {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 24px;
    width: 32px;
    margin-right: 4px;
    box-shadow: 0 0 4px 0 rgba(128, 128, 128, 0.4); }
    .country-code-option .country-flag-with-fallback img {
      max-width: 100%;
      max-height: 100%; }
    .country-code-option .country-flag-with-fallback .country-flag-fallback {
      text-align: center;
      background-size: cover;
      width: 100%;
      height: 100%;
      line-height: 24px; }
  .country-code-option .prefix {
    text-align: right;
    font-size: 12px;
    justify-self: flex-end; }

.countries-dropdown {
  width: 116px; }
  .countries-dropdown .Select-input input {
    max-width: 46px; }
  .countries-dropdown .Select-option {
    box-sizing: content-box; }

.phone-form-input-component {
  width: 100%; }
  .phone-form-input-component .phone-form-input-container {
    display: -ms-flexbox;
    display: flex; }
    .phone-form-input-component .phone-form-input-container .form-input {
      max-width: 160px;
      -ms-flex-negative: 1;
          flex-shrink: 1;
      min-width: 0; }
      .phone-form-input-component .phone-form-input-container .form-input:-ms-input-placeholder {
        color: #A1A1A1; }
      .phone-form-input-component .phone-form-input-container .form-input::placeholder {
        color: #A1A1A1; }
    .phone-form-input-component .phone-form-input-container .countries-dropdown {
      margin-right: 8px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (max-width: 500px) {
        .phone-form-input-component .phone-form-input-container .countries-dropdown {
          margin-right: 4px;
          width: 92px; }
          .phone-form-input-component .phone-form-input-container .countries-dropdown .Select-value .country-code-option .prefix {
            display: none; } }
  .phone-form-input-component.invalid {
    position: relative; }
    .phone-form-input-component.invalid .form-input:not(:focus),
    .phone-form-input-component.invalid .countries-dropdown:not(.is-focused) .Select-control {
      border: 1px solid #F74875; }
    .phone-form-input-component.invalid .invalid-phone-message {
      color: #F74875;
      font-size: 12px;
      margin-top: 2px;
      position: absolute;
      left: 0;
      bottom: -16px; }

.form-content-component .email-form-input {
  width: 100%; }
  .form-content-component .email-form-input :focus {
    outline-color: transparent;
    outline-style: none; }

.form-input-component.invalid {
  position: relative; }
  .form-input-component.invalid .form-input:not(:focus),
  .form-input-component.invalid .countries-dropdown:not(.is-focused) .Select-control {
    border: 1px solid #F74875; }
  .form-input-component.invalid .invalid-email-message {
    color: #F74875;
    font-size: 12px;
    margin-top: 2px;
    position: absolute;
    left: 0;
    bottom: -16px; }

.form-content-component .dropdown-form-input-component {
  cursor: pointer;
  width: 100%; }
  @media (min-width: 500px) {
    .form-content-component .dropdown-form-input-component {
      width: 50%;
      margin-right: 50%; } }
  .form-content-component .dropdown-form-input-component .Select--multi .Select-value {
    margin: 6px;
    line-height: 20px !important;
    border-radius: 16px;
    border: none;
    direction: rtl;
    padding: 1px 4px;
    color: #009AFF; }
  .form-content-component .dropdown-form-input-component .Select--multi .Select-value-icon {
    border: none !important; }

.dropdown-form-input-component .Select-value-label {
  line-height: 20px !important; }

.form-content-component .update-form-input {
  height: auto;
  resize: none; }

.form-content-component .form-question-mandatory {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  width: 100%;
  position: relative;
  height: 0;
  top: 2px; }
  .form-content-component .form-question-mandatory.form-question-mandatory-short {
    width: 50%; }
    @media (max-width: 500px) {
      .form-content-component .form-question-mandatory.form-question-mandatory-short {
        width: 100%; } }
  .form-content-component .form-question-mandatory.form-question-mandatory-date {
    width: 240px; }
    @media (max-width: 500px) {
      .form-content-component .form-question-mandatory.form-question-mandatory-date {
        width: 210px; } }
  .form-content-component .form-question-mandatory.form-question-mandatory-phone {
    width: 284px; }
    @media (max-width: 500px) {
      .form-content-component .form-question-mandatory.form-question-mandatory-phone {
        width: 256px; } }
  .form-content-component .form-question-mandatory.form-question-mandatory-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    height: auto;
    top: 0; }
  .form-content-component .form-question-mandatory .form-question-mandatory-text {
    font-size: 12px;
    color: #C4C4C4;
    font-weight: 300;
    font-style: italic; }
    .form-content-component .form-question-mandatory .form-question-mandatory-text .form-question-mandatory-mark {
      font-weight: 900;
      position: relative;
      top: 2px; }
    .form-content-component .form-question-mandatory .form-question-mandatory-text.form-question-missing-answer {
      color: #E44258; }

.form-content-component .form-question {
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 16px;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text; }
  .form-content-component .form-question:focus {
    outline: none; }
  .form-content-component .form-question.form-survey-mode {
    width: 70%;
    margin-left: auto;
    position: relative;
    margin-right: auto; }
  .form-content-component .form-question .form-question-title {
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 20px; }
  .form-content-component .form-question .form-question-description {
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 20px; }
  .form-content-component .form-question .form-question-answer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center; }

.form-embedded-footer-component {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center; }
  @media (max-width: 500px) {
    .form-embedded-footer-component {
      -ms-flex-direction: column;
          flex-direction: column; }
      .form-embedded-footer-component .form-embedded-footer-content {
        margin-bottom: 16px; } }
  .form-embedded-footer-component .title {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 8px 0; }

.scroll-style::-webkit-scrollbar {
  width: 10px;
  height: 15px; }

.scroll-style::-webkit-scrollbar-track {
  border-radius: 10px; }

.scroll-style::-webkit-scrollbar-thumb {
  background-color: #b2b2b2; }

.form-wrapper-component {
  width: 100%;
  overflow: auto;
  height: 100%;
  background: #575c96; }
  .form-wrapper-component .form-wrapper-empty-header {
    height: 60px; }
    @media (max-width: 500px) {
      .form-wrapper-component .form-wrapper-empty-header {
        height: 24px; } }
  .form-wrapper-component .form-wrapper-header {
    height: 60px; }
  .form-wrapper-component .form-wrapper-header-color {
    height: 250px; }
    .form-wrapper-component .form-wrapper-header-color .form-wrapper-header-content {
      width: 70%;
      max-width: 680px;
      margin: auto;
      height: 60px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center; }
      @media (max-width: 500px) {
        .form-wrapper-component .form-wrapper-header-color .form-wrapper-header-content {
          width: 90%; } }
  .form-wrapper-component.with-footer .form-content-component {
    margin-bottom: 16px; }
  .form-wrapper-component .form-content-component {
    box-shadow: 0px 0 4px 0px rgba(0, 0, 0, 0.1);
    width: 70%;
    max-width: 680px;
    margin: auto;
    background-color: white;
    border-radius: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    padding: 16px 0 40px 0;
    margin-bottom: 32px; }
    @media (max-width: 500px) {
      .form-wrapper-component .form-content-component {
        width: 90%; } }
  .form-wrapper-component .form-footer-wrapper {
    max-width: 680px;
    margin: auto; }
    @media (max-width: 500px) {
      .form-wrapper-component .form-footer-wrapper {
        width: 90%; } }
  .form-wrapper-component.form-survey-mode .form-content-component {
    margin-bottom: 24px;
    max-height: calc(100% - 24px * 2 - 16px);
    position: relative;
    padding: 16px 0 0 0; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .form-wrapper-component.form-survey-mode .form-content-component {
        height: calc(100% - 24px * 2 - 16px); } }
  .form-wrapper-component.form-survey-mode .form-wrapper-empty-header {
    height: 24px; }

.form-content-component .form-submit-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }
  .form-content-component .form-submit-wrapper .form-submit-btn {
    margin-top: 40px;
    background-color: #009AFF;
    color: white;
    cursor: pointer;
    padding: 0 32px;
    height: 40px;
    line-height: 40px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 300; }
    .form-content-component .form-submit-wrapper .form-submit-btn.form-survey-mode {
      margin-top: 0px; }
    .form-content-component .form-submit-wrapper .form-submit-btn:focus, .form-content-component .form-submit-wrapper .form-submit-btn:hover {
      outline: none;
      background-color: #0083d9; }
    .form-content-component .form-submit-wrapper .form-submit-btn:active {
      outline: none;
      background-color: #0083d9;
      padding: 0 26px; }
    .form-content-component .form-submit-wrapper .form-submit-btn.disabled {
      background-color: #F1F1F1;
      color: #C4C4C4;
      cursor: auto; }
    .form-content-component .form-submit-wrapper .form-submit-btn.loading {
      cursor: default;
      padding: 0 38px; }
      .form-content-component .form-submit-wrapper .form-submit-btn.loading .loader {
        animation: spin_accel 0.8s infinite ease;
        font-size: 0.677rem;
        min-width: 0.677rem;
        height: 0.677rem;
        margin: 0.677rem; }

@keyframes spin_accel {
  0% {
    transform: rotate(0deg);
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em; }
  5%,
  65% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em; }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em; }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em; }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em; }
  100% {
    transform: rotate(360deg);
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em; } }

.form-powered-by-monday-component-wrapper {
  text-decoration: none;
  margin-top: 64px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }
  .form-powered-by-monday-component-wrapper.form-survey-mode {
    margin-top: 16px;
    margin-bottom: 16px; }
  .form-powered-by-monday-component-wrapper:focus {
    outline: none; }
  .form-powered-by-monday-component-wrapper .form-powered-by-monday-component {
    font-size: 12px;
    color: #C4C4C4;
    display: -ms-flexbox;
    display: flex;
    font-weight: 300;
    line-height: 20px; }
    .form-powered-by-monday-component-wrapper .form-powered-by-monday-component .monday-logo-img {
      margin-left: 4px;
      height: 20px; }

.form-submit-success-component {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 40px; }
  .form-submit-success-component .form-submit-success-title {
    font-size: 40px;
    font-weight: 500; }
  .form-submit-success-component .form-submit-success-img {
    margin: 24px 0; }
  .form-submit-success-component .form-submit-success-msg {
    font-weight: 300; }
  .form-submit-success-component .form-submit-again {
    cursor: pointer;
    font-size: 14px;
    color: #009AFF;
    margin-top: 16px; }

.form-content-component .submit-error {
  background-color: #F7F7F7;
  padding: 8px;
  border-radius: 2px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }
  .form-content-component .submit-error .submit-error-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px; }
  .form-content-component .submit-error .submit-error-text {
    font-weight: 300;
    font-size: 14px;
    color: #E44258; }
    .form-content-component .submit-error .submit-error-text .submit-error-required {
      font-style: italic; }

.form-survey-footer-component {
  box-shadow: 4px 0px 8px rgba(0, 0, 0, 0.214379);
  width: 100%;
  line-height: 56px;
  font-weight: 300;
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center; }
  .form-survey-footer-component.no-mandatory {
    -ms-flex-pack: center;
        justify-content: center; }
  @media (max-width: 320px), (max-width: 360px), (max-width: 375px), (max-width: 411px), (max-width: 414px), (max-width: 650px) {
    .form-survey-footer-component {
      -ms-flex-direction: column;
          flex-direction: column;
      line-height: 14px;
      -ms-flex-pack: center;
          justify-content: center; } }
  .form-survey-footer-component .answers-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
    padding-left: 24px; }
    @media (max-width: 320px), (max-width: 360px), (max-width: 375px), (max-width: 411px), (max-width: 414px), (max-width: 650px) {
      .form-survey-footer-component .answers-container {
        padding-left: 0px; } }
  .form-survey-footer-component .required-container {
    margin-left: auto;
    padding-right: 24px; }
    @media (max-width: 320px), (max-width: 360px), (max-width: 375px), (max-width: 411px), (max-width: 414px), (max-width: 650px) {
      .form-survey-footer-component .required-container {
        padding-right: 0px;
        margin-left: 0px; } }
  .form-survey-footer-component .battery-container {
    height: 8px;
    border-radius: 8px;
    border: 2px solid #009AFF;
    width: 152px;
    margin: 8px; }
  .form-survey-footer-component .battery-animation {
    transition: all 0.2s ease-in-out; }
  .form-survey-footer-component .battery {
    float: left;
    height: 100%;
    background-color: #009AFF; }

.form-wrapper-component .form-logo-component {
  height: 36px; }
  .form-wrapper-component .form-logo-component .form-logo-img {
    height: 36px; }

