@font-face {
  font-family: 'Retroica';
  src: url('/fonts/retroica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Visby CF Thin';
  src: url('/fonts/visby cf thin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppins-black';
  src: url('/fonts/poppins/Poppins-Black.ttf');
}

@font-face {
  font-family: 'poppins-light';
  src: url('/fonts/poppins/Poppins-Light.ttf');
}

@font-face {
  font-family: 'poppins-thin';
  src: url('/fonts/poppins/Poppins-Thin.ttf');
}

@font-face {
  font-family: 'poppins-medium';
  src: url('/fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
  font-family: 'poppins-semibold';
  src: url('/fonts/poppins/Poppins-SemiBold.ttf');
}

@font-face {
  font-family: 'poppins-semibold-italic';
  src: url('/fonts/poppins/SemiBoldItalic.ttf');
}

* {
	box-sizing: border-box;
}

.html, .body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'poppins-medium';
	background-color: #f7f7f7;
}

.iframe-html, .iframe-body  {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'poppins-medium';
  background: transparent;
}

.header-container {
  background: linear-gradient(11deg, rgb(39 39 39) 32%, #1D43FF 89%);
  width: 100%;
  box-shadow: 0px 2px 7px 1px rgb(80 80 80 / 11%);
  -webkit-box-shadow: 5px -2px 11px 12px rgb(0 0 0 / 24%);
  -moz-box-shadow: 0px 2px 7px 1px rgb(80 80 80 / 11%);
  z-index: 11;
}

.main-container {
	display: flex;
  justify-content: center;
  background-color: #f7f7f7;
  overflow: auto;
  margin-top: 90px;
  padding-bottom: 150px;
}

.iframe-main-container {
	display: flex;
  justify-content: center;
  background-color: transparent;
  overflow: auto;
  margin-top: -90px;
}

.form-editor-main-container {
  display: flex;
  flex-direction: column;
}

.form-editor-sub-container {
  overflow: auto;
}

.side-panel-content {
  flex-grow: 1;
  overflow-y: auto;
  height: 90%;
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.side-panel-footer {
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.form-editor-panel {
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  background-color: #272727;
  padding: 15px;
  min-width: 179px;
  width: 275px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: absolute;
  left: 0;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: inherit;
  color: white;
  width: 300px;
  display: flex;
  flex-direction: column;
  top: 50px;
  left: 0;
  height: 100%;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 45px;
  left: 0;
  height: calc(100vh - 45px);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

.flex-container-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-status-badge {
  align-self: center;
  font-size: 12px;
  font-family: 'poppins-medium';
  border-radius: 30px;
  padding: 2px 10px;
  color: black;
}

.form-status-badge-draft {
  background-color: #F4D03F;
}

.form-status-badge-published {
  background-color: #8ae38d;
}

#formEditorPanel.visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.form-editor-navigation-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-btn {
  width: 35px;
  height: 35px;
  background-color: #1e43ff;
  color: white;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 6px;
}

.home-icon {
  color: white;
  font-size: 22px;
}

.form-editor-group {
  margin-top: 35px;
}

.form-editor-subgroup {
  margin-top: 20px;
}

.form-editor-title {
  font-size: 22px;
  font-weight: 600;
  align-self: center;
}

.form-editor-colorpicker-title {
  margin-bottom: 15px;
}

.how-can-we-help-background-color-picker-container {
  margin-bottom: 35px !important;
  margin-top: 30px;
}

.form-editor-colorpicker-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 15px;
}

.color-picker {
  display: flex;
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: black;
  border-radius: 2px;
  width: 15px;
  height: 15px;
}

.custom-placeholder::placeholder {
  color: var(--placeholder-color, #aaa);
  opacity: 1;
}

.form-editor-colorpicker-container label {
  margin-bottom: 0;
}

.color-picker input[type="color"] {
  opacity: 0;
  position: absolute;
  flex: 1;
  cursor: pointer;
}

.form-editor-colorpicker-container label {
  font-size: 13px;
  font-family: 'poppins-light';
}

.form-editor-colorpicker-container input {
  width: 15px;
  height: 15px;
}

/* .submission-container {
  margin-top: 0;
} */

.thank-you-page-label {
  font-family: 'poppins-light';
  font-size: 12px;
}

.notifications-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.notifications-subgroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.notifications-subgroup p {
  font-family: 'poppins-light';
  font-size: 13px;
  font-style: italic;
}

.chat-icon {
  font-size: 16px;
}

.edit-icon {
  font-size: 16px;
  color: #1e43ff;
  cursor: pointer;
}

.form-editor-select {
  width: 100%;
  margin-top: 5px;
  padding: 6px 12px !important;
  font-family: 'poppins-light';
  font-size: 14px !important;
  border-right: 8px solid transparent;
  border-radius: 6px !important;
  font-size: 18px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  outline: 1px solid;
  border-right: 16px solid transparent;
}

.form-submission-select {
  width: 100%;
  margin-top: 5px;
  padding: 6px 12px !important;
  font-family: 'poppins-light';
  font-size: 14px !important;
  padding: 10px !important;
  border-radius: 6px;
  border: 1px solid black;
  font-family: 'poppins-light';
  font-size: 14px !important;
  flex: 1;
  border: 0;
  outline: 1px solid;
  border-right: 16px solid transparent;
}

.form-editor-text-input {
  width: 100%;
  margin-top: 5px;
  padding: 6px 12px !important;
}

.save-btn {
  background-color: #1e43ff;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 35px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  font-family: 'poppins-medium';
  margin-top: 15px;
}

.delete-form-btn {
  background-color: red;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'poppins-medium';
  margin-top: 15px;
  width: 35px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.delete-form-icon {
  font-size: 20px;
}

.save-field-settings-btn {
  background-color: #1e43ff;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 35px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  font-family: 'poppins-medium';
  margin-top: 70px;
  position: relative;
  bottom: 10;
}

.field-settings-editor-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  justify-content: space-between;
  margin-bottom: 58px;
}

.home-selection {
  margin: 0;
}

.form-builder-editor-checkox-container {
  margin-top: 50px;
}

.navigate-back {
  width: 60px;
}

.field-settings-checkbox-container {
  margin-top: 25px;
  justify-content: space-between;
  font-family: 'poppins-light';
  font-size: 11px;
}

.field-settings-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  border: 1px solid black;
  cursor: pointer;
  accent-color: #2aa82d;
}

.field-settings-title {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 22px;
}

.pickr {
  top: -4px;
}

.pickr .pcr-button {
  height: 20px;
  width: 20px;
}

.pickr .pcr-button::before {
  border-radius: 8px;
}

.pickr .pcr-button::after {
  border-radius: 5px;
}

.field-settings-checkbox-editor-title {
  margin-bottom: 15px;
  font-size: 16px;
}

.field-settings-required-hidden-label {
  font-size: 14px;
  font-family: 'poppins-light';
}

.checkbox-editor-checkbox-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.checkbox-editor-checkbox-item-label {
  margin: 0;
  font-family: 'poppins-light';
  font-size: 14px;
}

.checkbox-editor-remove-button {
  font-size: 22px;
  color: #ff0c0d;
  cursor: pointer;
}

.checkbox-editor-save-button {
  font-size: 20px;
  color: #2aa82d;
  cursor: pointer;
}

.add-new-checkbox-button {
  background: linear-gradient(to right, #2543ff, #1d29e0);
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  font-size: 12px;
  font-family: 'poppins-medium';
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 15px;
}

.new-checkbox-editor {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.new-checkbox-label-input {
  max-width: 70%;
}

.field-settings-label {
  margin-top: 20px;
}

.field-settings-dropdown-editor-container {
  margin-top: 45px;
}

.field-settings-dropdown-editor-title {
  margin-bottom: 15px;
  font-size: 16px;
}

.dropdown-editor-dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.dropdown-editor-dropdown-item-label {
  margin: 0;
  font-family: 'poppins-light';
  font-size: 14px;
}

.dropdown-editor-remove-button {
  font-size: 22px;
  color: #ff0c0d;
  cursor: pointer;
}

.dropdown-editor-save-button {
  font-size: 20px;
  color: #2aa82d;
  cursor: pointer;
}

.add-new-dropdown-button {
  background: linear-gradient(to right, #2543ff, #1d29e0);
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  font-size: 12px;
  font-family: 'poppins-medium';
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 15px;
}

.new-dropdown-editor {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.new-dropdown-label-input {
  max-width: 70%;
}

.back-navigation-container {
  margin-top: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.back-navigation-icon {
  font-size: 18px;
}

.back-navigation-text {
  font-size: 15px;
}

.form-builder-container  {
	font-family: 'poppins-light';
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
}

.iframe-form-builder-container  {
	font-family: 'poppins-light';
  background-color: transparent;
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
	margin-top: 90px;
}

.form-builder-input-label {
  font-size: 15px;
  font-family: 'poppins-light';
}

.title-container {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.title {
  font-family: 'poppins-semibold';
  font-size: 26px;
}

.title-icon-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.title-icon {
  font-size: 30px;
  color: #1c43ff;
  cursor: pointer;
}

.toggle-editor-btn-mobile {
  display: none;
}

.form-container {
  background: white;
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 22px 27px -5px, rgba(0, 0, 0, 0.3) 0px 20px 16px -8px;
  padding: 50px 60px 40px 60px;
  max-width: 600px;
}

.quote-container {
  max-width: 800px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 12px 16px -3px, rgba(0, 0, 0, 0.3) 0px 16px 8px -8px;
}

.quote-form-width {
  max-width: 800px;
}

.quote-short-form-width {
  max-width: 600px;
}

.contact-form-width {
  max-width: 600px;
}

.hiring-form-width {
  max-width: 700px;
}

.quote-short-container {
  padding-bottom: 80px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 12px 16px -3px, rgba(0, 0, 0, 0.3) 0px 16px 8px -8px;
}

.hiring-container {
  max-width: 700px;
  padding-bottom: 80px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 12px 16px -3px, rgba(0, 0, 0, 0.3) 0px 16px 8px -8px;
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hoverable {
  transition: opacity 0.3s ease;
}

.hoverable:hover {
  opacity: 0.5;
  cursor: pointer;
}

.hoverable:hover * {
  opacity: 0.5;
  cursor: pointer;
}

.form-group-title {
  font-family: 'poppins-semibold';
  font-size: 22px;
  margin-bottom: 10px;
}

.form-group-text{
  font-size: 16px;
  margin-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid black;
  font-family: 'poppins-light';
  font-size: 14px;
  flex: 1;
}

.longer-textinput {
  flex: 3;
}

.shorter-textinput {
  flex: 1;
}

textarea {
  resize: vertical;
  flex: none;
  min-height: 50px;
  max-height: 200px;
  height: 85px;
}

.checkbox-group {
  background: #f3f3f3;
  padding: 30px 40px 40px 40px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.checkbox-group label {
  font-weight: normal;
  display: flex;
  margin-bottom: 0px;
}

.checkbox-container {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}

.checkbox {
  width: 14px;
  height: 14px;
  border-radius: 15px;
  border: 1px solid black;
  margin-left: 0;
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 0;
  cursor: pointer;
}

.anything-else-info-container {
  margin-top: 25px;
  margin-bottom: 0;
}

.anything-else-info-title {
  margin-bottom: 10px;
}

.hiring-form-experience-container {
  margin-top: 15px;
  margin-bottom: 15px;
}

.submit-button {
  background-color: #1e43ff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 35px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  font-family: 'poppins-medium';
  font-style: italic;
}

.disclaimer {
  font-size: 12px;
  margin-top: 25px;
  margin-bottom: 35px;
  display: flex;
  flex-direction: row;
}

.disclaimer-checkbox {
  margin-top: 1px;
}

.notifications-modal-box-container {
  padding: 5px 30px;
  border-radius: 20px !important;
}

.modal-box-content-container {
  padding: 46px 15px;
  flex-direction: column !important;
  align-items: center;
}

.internal-notification-modal-title {
  text-align: center;
  font-family: 'poppins-semibold';
  margin-bottom: 16px;
}

.internal-notification-checkboxes-title {
  font-size: 14px;
  font-family: 'poppins-semibold';
  margin-bottom: 10px;
}

.internal-notification-checkboxes {
  margin-bottom: 30px;
  max-height: 145px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.internal-notification-checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
  gap: 5px;
}

.internal-notification-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 15px;
  border: 1px solid black;
  margin-left: 0;
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 0;
  cursor: pointer;
}

.internal-notification-checkbox-label {
  margin: 0;
  font-family: 'poppins-light';
  font-weight: 100;
  font-size: 14px;
}

.internal-notification-content-title {
  font-size: 14px;
  font-family: 'poppins-light';
  font-weight: 100;
  margin-bottom: 10px;
}

.internal-notification-content-title-bold {
  font-size: 14px;
  font-family: 'poppins-semibold';
  font-weight: 100;
  margin-bottom: 10px;
}

.internal-notification-content {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid black;
  font-family: 'poppins-light';
  font-size: 14px;
  resize: block;
  min-height: 170px;
  max-height: 170px;
  width: 100%;
}

.internal-notification-content-container {
  margin-bottom: 50px;
}

.notification-modal-button-container {
  display: flex;
  justify-content: center;
}

.notification-modal-button {
  background: linear-gradient(to right, #2543ff, #1d29e0);
  color: white;
  padding: 12px 90px;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'poppins-medium';
  font-style: italic;
  margin-bottom: 20px;
}

.share-form-option-popup {
  max-height: 90%;
  overflow-y: auto;
}

.share-form-option-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 90vh;
  max-height: 500px;
  width: 500px;
}

.create-form-modal-title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 90%;
  align-self: auto;
}

.create-form-modal-back-button-text-container {
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  display: none;
  position: absolute;
  left: 40px;
}

.create-form-modal-back-button-text-container i {
  font-size: 14px;
}

.create-form-modal-back-button-text {
  font-family: 'poppins-medium';
  font-size: 15px;
  margin-left: 5px;
}

.create-form-modal-title {
	font-size: 26px;
  font-family: 'poppins-semibold';
  text-align: center;
}

.create-form-modal-text {
	font-size: 15px;
  font-family: 'poppins-light';
  text-align: center;
  margin-bottom: 25px;
}

.form-sharing-option {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.form-sharing-option-container {
  display: flex;
  justify-content: center;
  width: 90%;
}

.form-sharing-selection-container {
  flex-direction: column;
}

.form-sharing-option-input-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.form-sharing-option-input {
  max-width: 90%;
  background-color: #e6e6e6;
  border: #e6e6e6 !important;
}

.form-sharing-option-text-area {
  width: 100%;
  min-height: 250px;
  max-height: 250px;
  resize: none;
  background-color: #e6e6e6;
  border: #e6e6e6;
}

.form-sharing-copy-btn-container {
  display: flex;
  justify-content: center;
}

.form-sharing-copy-btn {
  background: linear-gradient(to right, #2543ff, #1d29e0);
  color: white;
  padding: 8px 120px;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'poppins-medium';
  margin-top: 30px;
  margin-bottom: 30px;
}

.delete-form-title {
  font-size: 26px;
  font-family: 'poppins-light';
  text-align: center;
  margin-bottom: 5px;
}

.delete-form-text {
  font-size: 16px;
  font-family: 'poppins-light';
  color: #a2a2a2;
  text-align: center;
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.delete-form-button-container {
  display: table;
  background-color: #ff4343;
  border-radius: 25px;
  border: none;
  padding: 14px 37px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.delete-form-button-text {
  font-size: 17px;
  font-family: 'poppins-light';
  color: white;
}

@media (max-width: 600px) {
  .form-container {
    padding: 50px 35px 45px 35px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .share-form-option-container {
    width: 420px;
  }
}

@media (max-width: 440px) {
  .create-form-modal-back-button-text {
    display: none;
  }

  .share-form-option-container {
    width: 320px;
    height: 600px !important;
    overflow: hidden !important;
  }

  .create-form-modal-back-button-text-container {
    left: 30px;
  }
}

@media (max-width: 400px) {
  .form-container {
    padding: 50px 15px 15px 15px;
  }
}

@media (max-width: 378px) {
  .toggle-editor-btn-mobile {
    display: block;
  }

  .notification-modal-button {
    padding: 12px 38px;
  }
}