:root {
  --grey-medium: #ababab;
  --grey-light: #e4e4e4;
  --grey-ultralight: #f5f5f5;
  --grey: #797979;
  --grey-border: #979797;
  --button-grey: #EEEEEE;
  --button-grey-dark: #DDDDDD;
  --textarea-button: #F6F6F6;
  --textarea-wand: #E4E4E4;
  --accent: #fdd835;
  --accent-hover: #fadf45;
  --text-dark: #171717;
  --dark-medium: #414141;
  --error: #f00;
  --blue: #00667B;
  --blue-dark: #00445C;
}

body {
  touch-action: auto !important;
}

.mandatory {
  color: var(--error);
}

.button {
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 11px 16px;
  width: fit-content;
}
.button.accent {
  background: var(--accent);
  border: none;
  width: unset;
  padding: 20px 43px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 1px;
  text-align: center;
}
.button.accent.small {
  padding: 10px 17px;
}
.button.accent.small span {
  padding-left: 0;
}
.button.accent.fixed-width {
  width: 104px;
  line-height: 19px;
}
.button.accent.popup-action {
  font-size: 12px;
}
.button.accent.template-button {
  margin-left: 32px;
  margin-top: 16px;
  text-transform: uppercase;
  position: absolute;
  bottom: 20px;
}
.button.accent.template-button.disabled {
  cursor: default;
  background: #f3e6af;
  border: 1px solid #f3e6af;
  color: #ABABAB;
}
.button.accent.template-button .tooltip div {
  visibility: hidden;
  width: 224px;
  background-color: black;
  color: #fff;
  border-radius: 6px;
  padding: 8px;
  z-index: 2;
  top: unset;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}
.button.accent.template-button .tooltip div a {
  color: #FDD835;
  text-decoration: none;
}
.button.accent.template-button:hover .tooltip div {
  visibility: visible;
}
.button.accent:hover {
  background: var(--accent-hover);
}
.button.grey {
  background: var(--button-grey);
  border: 1px solid var(--button-grey);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
  transition: all 200ms ease-in-out;
}
.button.grey.no-icon {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}
.button.grey:hover {
  background: var(--button-grey-dark) !important;
  border: 1px solid var(--button-grey-dark) !important;
}
.button.no-border {
  background: transparent;
  border: none;
  float: left;
  padding: 12px;
  margin-left: 32px;
}
.button img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
}
.button span {
  vertical-align: middle;
  padding-left: 12px;
}
.button.small-padding {
  padding-left: 16px;
  padding-right: 16px;
}

.popup-buttons .button.grey {
  padding: 13px 24px;
  color: #000;
  background: #eee;
  letter-spacing: 1px;
  border-radius: 4px;
  display: inline-block;
}
.popup-buttons .button.accent {
  padding: 11px 24px;
  margin-top: 0;
}
.popup-buttons .blue-link.inline {
  font-size: 14px;
}

.remaining-ads {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #979797;
}
.remaining-ads span {
  color: #00667B;
}
.remaining-ads span.red {
  color: #FF0000;
}

.position_nav {
  margin-top: 110px;
  transition: margin-top 500ms ease-in-out;
  width: 100%;
}
.position_nav.lenta-shown {
  margin-top: 150px;
}
.position_nav .title {
  color: #222222;
  font-style: normal;
  text-align: center;
  margin-bottom: 56px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
}
.position_nav .nav_actions {
  width: 1000px;
  margin: auto;
  display: flex;
  position: relative;
}
.position_nav .nav_actions .nav_item {
  flex: 1;
  position: relative;
  padding-bottom: 40px;
}
.position_nav .nav_actions .nav_item .nav_divider {
  position: absolute;
  top: 73px;
  width: 100%;
  height: 2px;
  background: var(--grey-light);
}
.position_nav .nav_actions .nav_item .nav_button {
  position: relative;
  width: fit-content;
}
.position_nav .nav_actions .nav_item .nav_button .nav_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 40px;
  text-align: left;
}
.position_nav .nav_actions .nav_item .nav_button .nav_bubble {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  color: #fff;
  background: var(--grey-medium);
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.position_nav .nav_actions .nav_item.current_step .nav_button {
  cursor: pointer;
}
.position_nav .nav_actions .nav_item.current_step .nav_button .nav_bubble {
  background: var(--text-dark);
  color: var(--accent);
}
.position_nav .nav_actions .nav_item.top_step .nav_button {
  cursor: pointer;
}
.position_nav .nav_actions .nav_item.top_step .nav_divider {
  top: 72px;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

#tmp_image_input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  z-index: -1;
}

.image-editor {
  width: 400px;
  height: 225px;
  max-width: 400px;
  max-height: 225px;
  padding: 32px 32px 64px;
}
.image-editor .cropit-preview {
  background-color: #f8f8f8;
  background-size: cover;
  border: 1px solid #ccc;
  margin-top: 7px;
  width: 400px;
  height: 225px;
  border-radius: 0;
}
.image-editor input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--text-dark);
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}
.image-editor input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--text-dark);
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}
.image-editor input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--text-dark);
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}
.image-editor .cropit-image-zoom-input {
  transform: translateY(-4px);
}
.image-editor .zoom-slider {
  position: absolute;
  text-align: center;
  width: 400px;
  margin: 24px auto auto;
}
.image-editor .zoom-slider img {
  margin-left: 8px;
  margin-right: 8px;
}
.image-editor .cropit-preview-image-container {
  border-radius: 0;
  z-index: 100;
  cursor: move;
}

.input-error-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--error);
  margin-top: 8px;
  text-align: left;
}
.input-error-label.no-top-margin {
  transform: translateY(-8px);
  padding-top: 0 !important;
  margin-top: 22px;
}

.topcenter {
  width: 640px;
  margin-top: 12px;
  margin-left: calc(50vw - 320px - 40px);
}
.topcenter .employer-tooltip.info-tooltip {
  display: inline;
}
.topcenter .employer-tooltip.info-tooltip img {
  opacity: 0.5;
  width: 18px;
  height: 18px;
  transform: translateY(3px);
  margin-left: 10px;
  cursor: pointer;
}
.topcenter .employer-tooltip.info-tooltip:hover .tooltip {
  display: block;
}
.topcenter .employer-tooltip.info-tooltip .tooltip {
  top: 10px;
  bottom: unset;
  padding-top: 20px;
  display: none;
}
.topcenter .employer-tooltip.info-tooltip .tooltip div {
  width: 297px;
}
.topcenter .employer-tooltip.info-tooltip .tooltip div::after {
  content: "";
  position: absolute;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
  bottom: unset;
  top: 15px;
  left: 14px;
  transform: rotate(90deg);
}
.topcenter .relative {
  position: relative;
}
.topcenter.full-width {
  width: 1040px !important;
  margin-left: calc(50vw - 520px) !important;
}
.topcenter .template-section {
  width: 100%;
  height: 210px;
  background: var(--button-grey);
  position: relative;
  margin-top: 150px;
  border-radius: 4px;
}
.topcenter .template-section .template-img {
  height: 128px;
  position: absolute;
  left: calc(50% - 74px);
  top: -102px;
}
.topcenter .template-section .template-add-circle {
  width: 40px;
  left: calc(50% - 28px);
  position: absolute;
  top: 62px;
  padding: 8px;
  cursor: pointer;
  transition: transform 200ms ease-in-out;
}
.topcenter .template-section .template-add-circle:hover {
  transform: scale(1.06);
}
.topcenter .template-section .template-add-text {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 130px;
  text-transform: uppercase;
  transition: transform 200ms ease-in-out;
}
.topcenter .template-section .template-add-text:hover {
  transform: scale(1.06);
}
.topcenter .template-list .single-template {
  margin-top: 32px;
  background: var(--button-grey);
  height: 210px;
  position: relative;
  border-radius: 4px;
}
.topcenter .template-list .single-template img {
  width: 210px;
  object-fit: cover;
  padding: 0;
  margin: 0;
  height: 210px;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.topcenter .template-list .single-template .template-text {
  padding-left: 210px;
}
.topcenter .template-list .single-template .template-text .template-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  color: #000;
  padding-top: 16px;
  padding-left: 32px;
  padding-right: 42px;
  max-height: 50px;
  overflow: hidden;
}
.topcenter .template-list .single-template .template-text .template-action {
  position: absolute;
  top: 16px;
  left: unset;
  cursor: pointer;
  right: 16px;
  height: 24px;
  width: 24px;
}
.topcenter .template-list .single-template .template-text .template-position-type {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  padding-top: 4px;
  padding-left: 32px;
  padding-right: 42px;
  color: var(--grey);
}
.topcenter .template-list .single-template .template-text .template-location {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  padding-top: 4px;
  padding-left: 32px;
  padding-right: 42px;
  color: #000;
  max-height: 44px;
  overflow: hidden;
}
.topcenter .input-with-numbers {
  position: relative;
}
.topcenter .input-with-numbers .numbers-button {
  position: absolute;
  right: 50%;
  margin-right: 1px;
  cursor: pointer;
  transition: background 200ms ease-in-out;
}
.topcenter .input-with-numbers .numbers-button:hover {
  background: var(--grey-ultralight);
}
.topcenter .input-with-numbers .numbers-button.button-down {
  top: 30px;
  border-left: 1px solid var(--grey-light);
  height: 25px;
  border-bottom-right-radius: 4px;
}
.topcenter .input-with-numbers .numbers-button.button-up {
  top: 1px;
  border-left: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  height: 28px;
  border-top-right-radius: 4px;
}
.topcenter .input-with-numbers .numbers-button img {
  padding-left: 8px;
  margin-right: 1px;
  padding-right: 8px;
  padding-top: 1px;
  height: 24px;
  width: 24px;
}
.topcenter .items-two-inline {
  display: flex;
  justify-content: space-around;
}
.topcenter .items-two-inline .item-inline-first {
  height: 100px;
  margin-right: 64px;
  width: 604px;
}
.topcenter .items-two-inline .item-inline-separator {
  width: 1px;
  min-width: 1px;
  min-height: 1300px;
  margin-top: 46px;
  background: var(--grey-medium);
}
.topcenter .items-two-inline .item-inline-second {
  flex: 1;
  height: 400px;
  margin-left: 64px;
  position: relative;
  min-width: 430px;
}
.topcenter .item-checkbox-text {
  position: relative;
  border-radius: 4px;
  border: 1px solid var(--grey-border);
  padding: 16px;
}
.topcenter .item-checkbox-text.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.topcenter .item-checkbox-text .checkbox-content {
  display: flex;
}
.topcenter .item-checkbox-text .checkbox-content .ding-checkbox {
  flex: 0 64px;
  width: 64px;
  position: relative;
  padding-left: 0;
}
.topcenter .item-checkbox-text .checkbox-content .checkbox-text {
  flex: 1;
}
.topcenter .item-checkbox-text .checkbox-content .checkbox-text .checkbox-text-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
}
.topcenter .item-checkbox-text .checkbox-content .checkbox-text .checkbox-text-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--grey-border);
  margin-top: 8px;
}
.topcenter .item-checkbox-text .checkbox-content .checkbox-text .checkbox-text-description span {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.topcenter .item-checkbox-text .checkbox-extra-content {
  margin-left: 64px;
}
.topcenter .item-checkbox-text .checkbox-extra-content .input-label {
  margin-top: 16px;
}
.topcenter .item-checkbox-text .checkbox-extra-content input, .topcenter .item-checkbox-text .checkbox-extra-content select {
  width: 100%;
}
.topcenter .input-main-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  margin-top: 40px;
}
.topcenter .input-radio-label {
  position: relative;
  font-weight: 400;
  padding-left: 20px;
  font-size: 14px;
  margin-left: 0;
}
.topcenter .input-radio-label .radio-button {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100px;
  height: 0;
  padding: 0;
  margin: 0;
}
.topcenter .input-radio-label.absolute-pos {
  position: absolute;
  top: 0;
  left: calc(50% - 8px);
}
.topcenter .text-center {
  text-align: center !important;
}
.topcenter .input-radio {
  position: absolute;
  top: 2px;
  left: 0;
  height: 14px;
  width: 14px;
  border: 2px solid #000;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.topcenter .input-radio.checked::after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  content: "";
  position: absolute;
}
.topcenter .item-section {
  margin-top: 32px;
  text-align: center;
}
.topcenter .item-section.small-margin {
  margin-top: 16px;
}
.topcenter .item-section .item-card {
  float: left;
  padding: 0;
  width: 179px;
  height: 181px;
  border: 1px solid var(--grey-medium);
  border-radius: 4px;
  cursor: pointer;
  transition: background 200ms ease-in-out;
  position: relative;
}
.topcenter .item-section .item-card.item-tooltip .card-title, .topcenter .item-section .item-card.item-tooltip .card-description, .topcenter .item-section .item-card.item-tooltip .input-radio-label {
  opacity: 0.3;
}
.topcenter .item-section .item-card.item-tooltip .tooltip div::after {
  content: "";
  position: absolute;
  margin-top: -5px;
  border-width: 5px;
  top: 11px;
  left: 16px;
  transform: rotate(90deg);
  border-style: solid;
  border-color: transparent black transparent transparent;
}
.topcenter .item-section .item-card.days-limit-tooltip .tooltip {
  bottom: -72px;
}
.topcenter .item-section .item-card .card-title {
  margin-top: 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}
.topcenter .item-section .item-card .card-title.light {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}
.topcenter .item-section .item-card .card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.topcenter .item-section .item-card .card-description.light {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  text-align: center;
}
.topcenter .item-section .item-card .input-radio {
  top: 32px;
}
.topcenter .item-section .item-card .absolute-pos .input-radio {
  top: 132px;
}
.topcenter .item-section .item-card.middle {
  margin-left: 26px;
  margin-right: 26px;
}
.topcenter .item-section .item-card.active {
  border: 3px solid var(--accent);
  width: 171px;
  height: 178px;
  padding: 0 2px;
}
.topcenter .item-section .item-card.active .card-title {
  margin-top: 30px;
}
.topcenter .item-section .item-card.active .absolute-pos .input-radio {
  top: 130px;
}
.topcenter .item-section .item-card:hover:not(.active) {
  background: #F6F6F4;
}
.topcenter .item-section .item-card:hover:not(.active).item-tooltip {
  background: transparent;
}
.topcenter .item-section-small {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.topcenter .item-section-small .item-card-small {
  position: relative;
  width: calc(50% - 12px - 48px);
  padding: 0 !important;
  margin: 1px !important;
  border: 1px solid var(--grey-medium);
  height: auto;
  display: flex;
}
.topcenter .item-section-small .item-card-small.active {
  border: 2px solid var(--accent);
  margin: 0 !important;
  width: calc(50% - 12px - 48px);
  height: auto;
}
.topcenter .item-section-small .item-card {
  padding: 24px !important;
}
.topcenter .item-section-small .item-card .card-title.light {
  margin-top: 0 !important;
  text-align: left;
}
.topcenter .item-section-small .item-card .card-description.light {
  text-align: left;
}
.topcenter .item-section-small .input-radio-label.absolute-pos {
  position: relative;
  left: 0;
  top: unset;
}
.topcenter .item-section-small .input-radio-label.absolute-pos .input-radio {
  top: calc(50% - 10px) !important;
}
.topcenter .select-section .select-card {
  position: relative;
  cursor: pointer;
  height: 56px;
  margin-top: 12px;
}
.topcenter .select-section .select-card.inline {
  height: 30px;
  float: left;
  display: inline-flex;
}
.topcenter .select-section .select-card.inline .card-title {
  padding-left: 0;
  position: relative;
  margin-left: 7px;
  margin-right: 30px;
  vertical-align: top;
  line-height: 26px;
}
.topcenter .select-section .select-card.inline .input-radio-label {
  margin-top: 2px;
}
.topcenter .select-section .select-card .card-title {
  position: absolute;
  top: 0;
  display: block;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
}
.topcenter .select-section .select-card .card-description {
  position: absolute;
  top: 24px;
  display: block;
  padding-left: 32px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
  text-align: left;
  color: var(--grey);
}
.topcenter .info-message {
  color: var(--grey);
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
}
.topcenter .info-message a {
  color: var(--blue);
  text-decoration: none;
}
.topcenter .datepicker-delete-action {
  position: absolute;
  bottom: 16px;
  right: 50px;
  cursor: pointer;
}
.topcenter .duo-table {
  width: 100%;
}
.topcenter .duo-table td {
  padding: 0;
  margin: 0;
  vertical-align: top;
  position: relative;
}
.topcenter .duo-table .table-divider {
  vertical-align: bottom;
  padding: 8px 8px 22px;
  font-weight: 400;
  text-align: center;
}
.topcenter .duo-table .position-salary-line {
  position: absolute;
  right: 7px;
  top: 26px;
}
.topcenter .action-right-bottom {
  padding-right: 2px;
}
.topcenter .action-right-bottom .inline-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1px;
  width: fit-content;
  float: left;
  padding: 12px;
  margin: 14px;
  cursor: pointer;
}
.topcenter .emoji-picker {
  top: unset;
  left: 20px;
  right: unset;
  min-height: 24px;
  min-width: 24px;
  bottom: 10px;
  transition: opacity 200ms ease-in-out, background 200ms ease-in-out;
  width: 100%;
  height: 100%;
  max-height: 24px;
  max-width: 24px;
  margin: 0;
  padding: 4px;
}
.topcenter .emoji-picker:hover {
  background: var(--textarea-button);
}
.topcenter .emoji-picker img {
  width: 24px;
  height: 24px;
  right: 0;
  opacity: 0.3;
  transition: opacity 200ms ease-in-out, background 200ms ease-in-out;
  padding: 0;
  position: relative;
}
.topcenter .emoji-picker img:hover {
  opacity: 0.7;
}
.topcenter .text-recommendation {
  position: absolute;
  width: 250px;
  bottom: -172px;
  border: 1px solid var(--grey-light);
  border-radius: 5px;
}
.topcenter .text-recommendation:after {
  content: "";
}
.topcenter .text-recommendation.text-input {
  top: 56px;
  left: 58px;
  width: 194px;
}
.topcenter .text-recommendation.text-merge-tags {
  left: 252px;
  width: 280px;
  height: fit-content;
}
.topcenter .text-recommendation .recommendation-item {
  text-align: left;
  background: white;
  cursor: pointer;
  transition: background 200ms ease-in-out, opacity 200ms ease-in-out;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.topcenter .text-recommendation .recommendation-item.disabled {
  opacity: 0.4;
}
.topcenter .text-recommendation .recommendation-item.disabled:hover, .topcenter .text-recommendation .recommendation-item.disabled:active {
  background: white;
}
.topcenter .text-recommendation .recommendation-item:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.topcenter .text-recommendation .recommendation-item:last-of-type {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.topcenter .text-recommendation .recommendation-item:hover {
  background: var(--grey-light);
}
.topcenter .text-recommendation .recommendation-item:active {
  background: var(--accent);
}
.topcenter .text-recommendation .recommendation-item img {
  padding: 9px 5px 7px 18px;
  height: 20px;
}
.topcenter .text-recommendation .recommendation-item span {
  vertical-align: top;
  margin-top: 10px;
  padding: 6px 8px 8px 0;
  line-height: 38px;
  font-size: 14px;
  font-weight: 400;
}
.topcenter .text-recommendation .recommendation-text {
  color: var(--grey);
  padding: 8px 16px 8px;
  border-bottom: 1px solid var(--grey-light);
}
.topcenter .text-recommendation .recommendation-text.borderless {
  border-bottom: none;
}
.topcenter .text-recommendation .recommendation-text .text-title {
  line-height: 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
}
.topcenter .text-recommendation .recommendation-text .text-title.bold {
  font-weight: 400;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  margin-top: 2px;
}
.topcenter .text-recommendation .recommendation-text .text-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  margin-top: 8px;
}
.topcenter .text-recommendation .recommendation-text .text-desc a {
  color: var(--blue);
  text-decoration: none;
}
.topcenter .text-recommendation .recommendation-text.text {
  padding: 2px 16px 4px;
  cursor: pointer;
  transition: background 200ms ease-in-out;
}
.topcenter .text-recommendation .recommendation-text.text .text-desc {
  margin-top: 4px;
}
.topcenter .text-recommendation .recommendation-text.text:hover:hover {
  background: var(--grey-light);
}
.topcenter .text-recommendation .recommendation-text.text:hover:active {
  background: var(--accent);
}
.topcenter .text-recommendation:after {
  margin-left: -8px;
  border-width: 8px;
  left: 24px;
  right: unset;
}
.topcenter .text-recommendation.gallery-popup:after {
  left: unset;
}
.topcenter .text-merge-text-align:after {
  left: 19px;
  right: unset;
}
.topcenter .text-separator {
  width: 1px;
  height: 24px;
  background: var(--textarea-wand);
  position: absolute;
  left: 58px;
  bottom: 14px;
  transition: background 200ms ease-in-out, opacity 200ms ease-in-out;
}
.topcenter .text-separator.second {
  left: 252px;
}
.topcenter .text-offer {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 1px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 72px;
  transition: opacity 200ms ease-in-out, background 200ms ease-in-out;
  border-radius: 3px;
  padding: 0;
  height: 32px;
}
.topcenter .text-offer.second {
  left: 264px;
  bottom: 10px;
}
.topcenter .text-offer img {
  opacity: 0.3;
  transition: opacity 200ms ease-in-out;
  cursor: pointer;
  height: 23px;
  margin: 0;
}
.topcenter .text-offer .text-arrow {
  padding: 3px 1px 3px 3px;
}
.topcenter .text-offer .text-button {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 1px;
  text-align: center;
  transition: opacity 200ms ease-in-out;
  opacity: 0.3;
  float: right;
  padding: 6px 3px 6px 6px;
}
.topcenter .text-offer.padding .text-button {
  padding: 6px 3px 6px 38px;
}
.topcenter .text-offer .magic-wand {
  position: absolute;
  left: 0;
  width: fit-content;
  padding: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 24px;
  transition: opacity 200ms ease-in-out, background 200ms ease-in-out;
}
.topcenter .text-offer .text-arrow {
  height: 24px;
  padding: 4px 1px 4px 10px;
}
.topcenter .text-offer:hover {
  background: var(--textarea-button);
}
.topcenter .text-offer:hover .magic-wand {
  background: var(--textarea-wand);
}
.topcenter .text-offer:hover img {
  opacity: 0.7;
  cursor: pointer;
}
.topcenter .text-offer:hover .text-button {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 1px;
  text-align: center;
  opacity: 0.7;
}
.topcenter .text-offer.input-tooltip .magic-wand {
  opacity: 0.2;
}
.topcenter .text-offer.input-tooltip .text-button {
  opacity: 0.2;
}
.topcenter .text-offer.input-tooltip .text-arrow {
  opacity: 0.2;
}
.topcenter .text-offer.input-tooltip:hover {
  background: transparent;
}
.topcenter .text-offer.input-tooltip:hover .magic-wand {
  background: transparent;
}
.topcenter .text-offer.input-tooltip:hover .text-arrow {
  opacity: 0.2;
}
.topcenter .infinite-loader {
  width: 100%;
  text-align: center;
  margin: 20px auto auto;
}
.topcenter .infinite-loader img {
  height: 48px;
  width: 48px;
}
.topcenter .video-input-section {
  position: relative;
}
.topcenter .video-input-section input {
  padding-right: 48px;
}
.topcenter .video-input-section img {
  transition: opacity 200ms ease-in-out;
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
  opacity: 0.7;
}
.topcenter .video-input-section img:hover {
  opacity: 1;
}
.topcenter .video-preview-item {
  cursor: pointer;
  display: flex;
  margin-top: 32px;
  width: 100%;
  border: 1px solid var(--grey-light);
  border-radius: 4px;
}
.topcenter .video-preview-item .video-cover {
  width: 300px;
  height: 170px;
  object-fit: cover;
}
.topcenter .video-preview-item .video-cover-text {
  width: calc(100% - 320px);
  padding-right: 20px;
}
.topcenter .video-preview-item .video-cover-text .video-link-title {
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 24px);
  white-space: pre;
  padding: 32px 32px 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.topcenter .video-preview-item .video-cover-text .video-link-desc {
  overflow: hidden;
  width: calc(100% - 24px);
  font-weight: 400;
  font-size: 12px;
  color: rgba(114, 114, 114, 0.69);
  height: 56px;
  padding: 0 12px 0 32px;
}
.topcenter .preview-image-section {
  width: 100%;
  height: 0;
  padding-bottom: 55%;
  margin-top: 16px;
  margin-bottom: 0;
  position: relative;
}
.topcenter .preview-image-section .preview-img {
  width: 100%;
  object-fit: cover;
}
.topcenter .preview-image-section .preview-actions {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.topcenter .preview-image-section .preview-actions img {
  height: 24px;
  width: 24px;
  padding: 8px;
}
.topcenter .preview-image-section .preview-actions .text-recommendation {
  position: absolute;
  top: 50px;
  right: 0;
  display: block;
  width: 216px;
  height: fit-content;
}
.topcenter .preview-image-section .preview-actions .text-recommendation:after {
  content: "";
  margin-left: -10px;
  border-width: 10px;
  right: 10px;
}
.topcenter .preview-image-section .preview-actions .text-recommendation .recommendation-item {
  margin: 0;
  line-height: 28px;
  padding: 0 0 0 16px;
  border-bottom: 1px solid var(--grey-light);
}
.topcenter .preview-image-section .preview-actions .text-recommendation .recommendation-item span {
  padding: 4px 0 4px 0;
  line-height: 31px;
}
.topcenter .position-preview-item {
  width: 100%;
  margin-top: 24px;
  position: relative;
}
.topcenter .position-preview-item .position-preview-section {
  width: calc(100% - 2px);
  border: 1px solid var(--grey-medium);
  border-radius: 4px;
  max-width: 430px;
  transition: all 500ms ease-in-out;
}
.topcenter .position-preview-item .position-preview-section.full-preview {
  margin: auto 86px;
}
.topcenter .position-preview-item .position-preview-section.mobile {
  max-width: 290px;
  margin: auto 69px;
}
.topcenter .position-preview-item .position-preview-section.mobile.full-preview {
  max-width: 290px;
  margin: auto 156px;
}
.topcenter .position-preview-item .position-preview-section.mobile .position-image {
  height: 162px;
}
.topcenter .position-preview-item .position-preview-section.mobile .fake-play-button {
  top: 120px;
}
.topcenter .position-preview-item .position-preview-section .title .preview-company-logo {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-light);
  border-radius: 50px;
  margin-top: 8px;
  margin-left: 16px;
  margin-bottom: 16px;
  float: left;
}
.topcenter .position-preview-item .position-preview-section .title .preview-company-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  float: left;
  padding: 18px;
  color: var(--grey-medium);
}
.topcenter .position-preview-item .position-preview-section .position-image {
  width: 100%;
  object-fit: cover;
  height: 240px;
  transition: height 500ms ease-in-out;
}
.topcenter .position-preview-item .position-preview-section .fake-play-button {
  position: absolute;
  left: calc(50% - 24px);
  transition: top 500ms ease-in-out;
  top: 164px;
  height: 32px;
  width: 32px;
  background: rgba(0, 0, 0, 0.67);
  border-radius: 50px;
  padding: 8px;
  cursor: pointer;
}
.topcenter .position-preview-item .position-preview-section .position-info {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey-medium);
  padding: 16px 16px 0;
}
.topcenter .position-preview-item .position-preview-section .position-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
  padding: 16px 16px 0;
}
.topcenter .position-preview-item .position-preview-section .position-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  padding: 16px 16px 0;
  word-break: break-word;
}
.topcenter .position-preview-item .position-preview-section .position-tags {
  padding: 16px;
}
.topcenter .position-preview-item .position-preview-section .position-tags .position-tag {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--blue);
  float: left;
  margin-right: 8px;
  word-break: break-word;
}
.topcenter .position-preview-item .position-preview-section .clear-tags {
  clear: both;
  height: 8px;
}
.topcenter .input-image-section {
  height: 164px;
  margin-top: 8px;
}
.topcenter .input-image-section .image-item {
  width: calc(50% - 16px);
  float: left;
  padding-top: 28.125%;
  height: 0;
  border: 1px solid var(--grey);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: background 200ms ease-in-out;
}
.topcenter .input-image-section .image-item:first-of-type {
  margin-right: 14px;
}
.topcenter .input-image-section .image-item:last-of-type {
  margin-left: 12px;
}
.topcenter .input-image-section .image-item:hover {
  background: var(--grey-light);
}
.topcenter .input-image-section .image-item img {
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
  margin-top: 40px;
  width: 40px;
  height: 40px;
  opacity: 0.4;
}
.topcenter .input-image-section .image-item h1 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 78px;
}
.topcenter .input-image-section .image-item p {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 112px;
}
.topcenter .ql-toolbar.ql-snow, .topcenter .ql-editor.ql-blank {
  background: #fff;
  border: 1px solid var(--grey-medium);
  display: block;
  line-height: 20px;
  font-size: 16px;
  -webkit-appearance: none;
  width: 604px;
  left: 0;
  top: 32px;
  padding: 14px;
  margin-top: 8px;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  height: 40px;
}
.topcenter .ql-editor.ql-blank {
  margin-top: 0;
  border-top: none;
  resize: none;
  border-bottom: 1px solid var(--grey-medium);
  border-radius: 0;
  border-bottom: none;
}
.topcenter .ql-snow.ql-toolbar button, .topcenter .ql-snow .ql-toolbar button {
  margin-top: 0;
  padding-top: 0;
  opacity: 0.7;
}
.topcenter .ql-editor, .topcenter .ql-editor::placeholder, .topcenter .ql-editor p, .topcenter .ql-editor.ql-blank::before {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.topcenter .ql-editor.ql-blank::before {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 10px !important;
  color: var(--grey-medium);
  opacity: 1;
}
.topcenter .ql-editor p {
  color: #000;
}
.topcenter .quill-editor-container {
  border: none !important;
}
.topcenter .quill-editor-container.max-height-scrollable {
  max-height: 600px;
  overflow: hidden;
  overflow-y: scroll;
}
.topcenter .ql-editor {
  min-height: 211px;
  padding-left: 24px !important;
  border: 1px solid var(--grey-medium);
  border-top: none;
  color: #000;
  background: #fff;
  resize: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: none;
}
.topcenter .richtext_container:focus-within .ql-toolbar.ql-snow {
  border: 1px solid var(--grey-medium);
  border-bottom: none;
}
.topcenter .questions-root {
  width: 100%;
  text-align: left;
}
.topcenter .questions-root .add-question-button {
  padding: 9px 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
.topcenter .questions-root .add-question-button img {
  height: 16px;
  width: 16px;
  vertical-align: middle;
  padding: 2px 12px 4px 4px;
}
.topcenter .questions-root .question {
  background: #fff;
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  margin-top: 16px;
}
.topcenter .questions-root .question.deleting {
  display: none;
}
.topcenter .questions-root .question .question-error-label, .topcenter .questions-root .question .question-long-error-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  padding-left: 24px;
  padding-top: 8px;
  color: var(--error);
  display: none;
}
.topcenter .questions-root .question .error-label-answer {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  padding-top: 8px;
  color: var(--error);
}
.topcenter .questions-root .question .error-label-count {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  padding-left: 24px;
  padding-top: 4px;
  color: var(--error);
  display: none;
}
.topcenter .questions-root .question .head {
  height: 48px;
  padding: 0;
  position: relative;
}
.topcenter .questions-root .question .head .question-button, .topcenter .questions-root .question .head .question-drag {
  position: relative;
}
.topcenter .questions-root .question .head .question-button .tooltip-text, .topcenter .questions-root .question .head .question-drag .tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  top: 60px;
  left: 50%;
  margin-left: -36px;
  background-color: var(--dark-medium);
  padding: 8px 12px;
  width: max-content;
  display: block;
}
.topcenter .questions-root .question .head .question-button .tooltip-text:after, .topcenter .questions-root .question .head .question-drag .tooltip-text:after {
  content: "";
  position: absolute;
  bottom: 100%;
  display: block;
  margin-left: calc(50% - 18px);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent var(--dark-medium) transparent;
}
.topcenter .questions-root .question .head .question-button:hover .tooltip-text, .topcenter .questions-root .question .head .question-drag:hover .tooltip-text {
  visibility: visible;
}
.topcenter .questions-root .question .head .collapsed .question-drag {
  border-bottom-left-radius: 3px;
}
.topcenter .questions-root .question .head .question-drag {
  display: inline-block;
  border-top-left-radius: 3px;
  background-size: cover;
  height: 48px;
  width: 32px;
  float: left;
  cursor: move;
  background: var(--grey-ultralight) url(/static/img/ui/options.svg) no-repeat center;
  background-size: 24px;
}
.topcenter .questions-root .question .head .question-drag .tooltip-text {
  margin-left: -26px;
}
.topcenter .questions-root .question .head .question-drag .tooltip-text:after {
  margin-left: 6px;
}
.topcenter .questions-root .question .head .question-title {
  display: inline-block;
  width: calc(100% - 130px);
  line-height: 48px;
  padding: 0;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.topcenter .questions-root .question .head .question-button {
  float: right;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: transform 200ms ease-in-out;
}
.topcenter .questions-root .question .head .question-button.duplicate {
  background: url(/static/img/ui/copy.svg) center no-repeat;
  background-size: 16px;
  transition: background-color 200ms ease-in-out;
  position: relative;
}
.topcenter .questions-root .question .head .question-button.duplicate .tooltip-text {
  margin-left: -38px;
}
.topcenter .questions-root .question .head .question-button.duplicate:hover {
  background-color: #D3D3D3;
}
.topcenter .questions-root .question .head .question-button.delete {
  background: url(/static/img/ui/delete.svg) center no-repeat;
  background-size: 24px;
  transition: background-color 200ms ease-in-out;
}
.topcenter .questions-root .question .head .question-button.delete:hover {
  background-color: #D3D3D3;
}
.topcenter .questions-root .question .question-display {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  padding: 0 8px 4px 16px;
}
.topcenter .questions-root .question .details {
  border-top: 1px solid var(--grey-border);
  position: relative;
}
.topcenter .questions-root .question .details .question-complete-button {
  background: url(/static/img/ui/check.svg) center no-repeat;
  background-size: 16px;
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: -1px;
  right: -1px;
  border: 1px solid var(--grey-border);
  border-radius: 2px;
  cursor: pointer;
}
.topcenter .questions-root .question .details .question-complete-button:hover {
  background: #e7e7e7 url(/static/img/ui/check.svg) center no-repeat;
  background-size: 16px;
}
.topcenter .questions-root .question .details .label {
  padding: 16px 24px 0;
  vertical-align: top;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.topcenter .questions-root .question .details .label.label-post {
  width: calc(100% - 192px);
  padding-left: 0;
  font-size: 14px;
  padding-top: 18px;
  color: var(--grey);
}
.topcenter .questions-root .question .details select, .topcenter .questions-root .question .details > input {
  width: calc(100% - 48px);
  margin-left: 24px;
}
.topcenter .questions-root .question .details .text-answer-options {
  font-size: 12px;
  padding: 16px;
  text-align: center;
}
.topcenter .questions-root .question .details .answers-container {
  margin-left: 24px;
  width: calc(100% - 116px);
  position: relative;
}
.topcenter .questions-root .question .details .answers-container.full-width {
  width: calc(100% - 48px);
}
.topcenter .questions-root .question .details .answers-container input {
  margin-top: 16px;
}
.topcenter .questions-root .question .details .answers-container input:first-of-type {
  margin-top: 8px;
}
.topcenter .questions-root .question .details .answers-container input.full-width {
  width: 100%;
}
.topcenter .questions-root .question .details .answers-container input.full-input-width {
  width: calc(100% + 68px);
}
.topcenter .questions-root .question .details .answers-container input {
  background: #fff;
  width: calc(100% - 40px);
}
.topcenter .questions-root .question .details .answers-container .new-answer-button {
  color: var(--blue);
  cursor: pointer;
  margin-top: 28px;
  line-height: 16px;
  font-size: 16px;
  font-weight: 500;
}
.topcenter .questions-root .question .details .answers-container .new-answer-button img {
  height: 16px;
  width: 16px;
  vertical-align: middle;
  padding: 1px 8px 4px 4px;
}
.topcenter .questions-root .question .details .answers-container .delete-answer-button {
  width: 86px;
  height: 56px;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  right: -68px;
  padding-top: 16px;
  line-height: 50px;
  text-align: center;
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  transition: color 200ms ease-in-out;
}
.topcenter .questions-root .question .details .answers-container .delete-answer-button:first-of-type {
  line-height: 40px;
}
.topcenter .questions-root .question .details .answers-container .delete-answer-button:hover {
  color: var(--blue-dark);
}
.topcenter .questions-root .question .details .answers-container input {
  background: #fff;
  width: calc(100% - 40px);
  display: inline-block;
}
.topcenter .ding-checkbox {
  position: absolute;
  top: 0;
  right: 2px;
}
.topcenter .ding-checkbox .switch {
  flex: 0 0 40px;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.topcenter .ding-checkbox .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.topcenter .ding-checkbox .switch input:checked + .slider {
  background-color: var(--accent);
}
.topcenter .ding-checkbox .switch input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}
.topcenter .ding-checkbox .switch input:focus + .slider {
  box-shadow: 0 0 1px var(--accent);
}
.topcenter .ding-checkbox .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}
.topcenter .ding-checkbox .switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.item-tags {
  margin-top: 8px;
  width: 100%;
}
.item-tags .item-tag-more {
  cursor: pointer;
  float: left;
  padding: 8px;
  color: var(--blue);
}
.item-tags .item-tag-more img {
  height: 24px;
  width: 24px;
}
.item-tags .item-tag-more span {
  line-height: 26px;
  vertical-align: top;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: color 200ms ease-in-out;
}
.item-tags .item-tag-more:hover span {
  color: var(--blue-dark);
}
.item-tags .item-tag {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  padding: 6px 12px;
  border-radius: 20px;
  width: fit-content;
  float: left;
  color: black;
  border: 2px solid black;
  margin-bottom: 8px;
  margin-right: 8px;
  transition: background 200ms ease-in-out, border 200ms ease-in-out;
}
.item-tags .item-tag:hover {
  background: var(--grey-ultralight);
}
.item-tags .item-tag .remove-tag {
  height: 18px;
  width: 18px;
  padding-left: 4px;
  vertical-align: middle;
}
.item-tags .item-tag.active {
  color: #fff;
  background: black;
}
.item-tags .item-tag.active:hover {
  background: var(--dark-medium);
}

.wrapper {
  margin-left: 337px !important;
  margin-top: 46px !important;
}

.candidate-tags {
  padding-left: 48px;
  padding-right: 48px;
}
.candidate-tags input {
  width: 100%;
}
.candidate-tags .input-label {
  margin-top: 16px;
}

.input-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  margin-top: 32px;
}

input, select, textarea {
  background: #fff;
  border: 1px solid var(--grey-medium);
  transition: border 200ms ease-in-out;
  display: block;
  line-height: 20px;
  font-size: 16px;
  -webkit-appearance: none;
  height: 56px;
  width: 604px;
  left: 0;
  top: 32px;
  border-radius: 4px;
  margin-top: 8px;
  padding: 14px 14px 14px 16px;
}
input:focus, select:focus, textarea:focus {
  border: 1px solid var(--accent);
}
input.half-size, select.half-size, textarea.half-size {
  width: 50%;
}
input.margin, select.margin, textarea.margin {
  margin-top: 32px;
}
input.select-arrow, select.select-arrow, textarea.select-arrow {
  background: url("/static/img/ui/dropdown.svg") #fff no-repeat calc(100% - 24px);
  background-size: 12px;
  cursor: pointer;
}
input.select-search, select.select-search, textarea.select-search {
  background: url("/static/img/ui/search_mat.svg") #fff no-repeat calc(100% - 24px);
  background-size: 22px;
  cursor: pointer;
}
input.select-datepicker, select.select-datepicker, textarea.select-datepicker {
  background: url("/static/img/ui/calendar.svg") #fff no-repeat calc(100% - 20px);
  background-size: 18px;
  cursor: pointer;
}
input.table-input, select.table-input, textarea.table-input {
  width: 100%;
}
input.table-input.table-input66, select.table-input.table-input66, textarea.table-input.table-input66 {
  width: calc(100% - 24px);
  margin-right: 24px;
}

.error {
  border: 1px solid var(--error) !important;
}

.emoji-input {
  transition: border 200ms ease-in-out;
}
.emoji-input textarea {
  border-bottom: none !important;
}
.emoji-input textarea:focus + .text-area-actions {
  border: 1px solid var(--accent) !important;
  border-top: none !important;
}
.emoji-input textarea.error + .text-area-actions {
  border: 1px solid var(--error) !important;
  border-top: none !important;
}

textarea:focus + .text-area-actions .text-button, textarea:focus + .text-area-actions .text-offer img, textarea:focus + .text-area-actions .emoji-picker img, .text-area-actions.focused .text-button, .text-area-actions.focused .text-offer img, .text-area-actions.focused .emoji-picker img {
  opacity: 1;
}
textarea:focus + .text-area-actions .text-separator, .text-area-actions.focused .text-separator {
  background: #000;
}

.ql-snow.ql-toolbar button:hover, .ql-snow .ql-toolbar button:hover, .ql-snow.ql-toolbar button:focus, .ql-snow .ql-toolbar button:focus, .ql-snow.ql-toolbar button.ql-active, .ql-snow .ql-toolbar button.ql-active, .ql-snow.ql-toolbar .ql-picker-label:hover, .ql-snow .ql-toolbar .ql-picker-label:hover, .ql-snow.ql-toolbar .ql-picker-label.ql-active, .ql-snow .ql-toolbar .ql-picker-label.ql-active, .ql-snow.ql-toolbar .ql-picker-item:hover, .ql-snow .ql-toolbar .ql-picker-item:hover, .ql-snow.ql-toolbar .ql-picker-item.ql-selected, .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #000;
}

.richtext_container.error {
  border: none !important;
}

.richtext_container.error .ql-toolbar.ql-snow {
  border: 1px solid var(--error) !important;
  border-bottom: none !important;
}

.richtext_container.error .ql-editor {
  border-left: 1px solid var(--error) !important;
  border-right: 1px solid var(--error) !important;
}

.richtext_container.error .text-area-actions {
  border: 1px solid var(--error) !important;
  border-top: none !important;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.right {
  float: right !important;
}

.checkbox-label {
  cursor: pointer;
  vertical-align: top;
  display: inline-block;
  padding-left: 22px;
  margin-top: 18px;
  font-weight: 400;
  position: relative;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0;
  text-align: left;
}
.checkbox-label.gallery-checkbox {
  position: absolute;
  top: 12px;
  left: 12px;
  margin-top: 0;
}
.checkbox-label.checkbox-align {
  margin-top: 34px;
}

.checkbox-elem {
  position: absolute;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  vertical-align: top;
  width: 14px;
  height: 14px;
  top: 0;
  left: 2px;
  border: 2px solid #000;
}
.checkbox-elem.yellow {
  left: -46px;
}
.checkbox-elem.big {
  width: 20px;
  height: 20px;
}

.checkbox-elem:after {
  border: solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  content: "";
  position: absolute;
  opacity: 0;
  width: 4px;
  height: 9px;
  transform: rotate(45deg);
  border-width: 0 2px 2px 0;
  left: 4px;
  top: 0;
}

.checkbox-elem.yellow:after {
  border: solid #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  content: "";
  position: absolute;
  opacity: 0;
  width: 4px;
  height: 9px;
  transform: rotate(45deg);
  border-width: 0 2px 2px 0;
  left: 4px;
  top: 0;
}

.checkbox-elem.big:after {
  width: 6px;
  height: 14px;
  left: 6px;
}

.checkbox-label input:checked ~ .checkbox-elem:after {
  opacity: 1;
}

.checkbox-label input:checked ~ .checkbox-elem {
  opacity: 1;
  background-color: black;
  border: 2px solid black;
}
.checkbox-label input:checked ~ .checkbox-elem.yellow {
  background-color: var(--accent);
  border: 2px solid var(--accent);
}

.blue-link.inline {
  margin-left: 12px;
  font-size: 14px;
}

.candidate-response-dialog.large {
  margin: calc(50vh - 250px) auto auto;
}
.candidate-response-dialog.fixed-top {
  margin: calc(40vh - 250px) auto auto;
}
.candidate-response-dialog .title {
  font-size: 16px;
  font-weight: 700;
}
.candidate-response-dialog form .label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.candidate-response-dialog .employer-gallery, .candidate-response-dialog .candidate-tags {
  min-height: 420px;
}
.candidate-response-dialog .employer-gallery .margin-top, .candidate-response-dialog .candidate-tags .margin-top {
  margin-top: 32px;
}
.candidate-response-dialog .employer-gallery .gallery-text h1, .candidate-response-dialog .candidate-tags .gallery-text h1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  width: fit-content;
  float: left;
  position: relative;
  padding-top: 4px;
}
.candidate-response-dialog .employer-gallery .gallery-text h1 span, .candidate-response-dialog .candidate-tags .gallery-text h1 span {
  position: absolute;
  padding: 1px 1px 1px 4px;
  top: 3px;
  right: -14px;
}
.candidate-response-dialog .employer-gallery .gallery-text h1 span.normal, .candidate-response-dialog .candidate-tags .gallery-text h1 span.normal {
  position: relative;
  padding: unset;
  top: unset;
  right: unset;
}
.candidate-response-dialog .employer-gallery .category-label, .candidate-response-dialog .candidate-tags .category-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  color: var(--grey-medium);
  margin-bottom: 8px;
}

textarea {
  line-height: 24px;
  padding-left: 24px;
  padding-top: 16px;
  min-height: 150px;
  resize: none;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.text-area-actions {
  height: 48px;
  width: calc(100% - 2px);
  border: 1px solid var(--grey-medium);
  border-radius: 0 0 4px 4px;
  border-top: none;
  position: relative;
  transition: border 200ms ease-in-out;
}
.text-area-actions.border {
  border-top: 1px solid var(--grey-light);
}

.fake-input-elem {
  background: #fff;
  border: 1px solid var(--grey-medium);
  line-height: 20px;
  font-size: 16px;
  -webkit-appearance: none;
  /* height: 56px; */
  left: 0;
  top: 32px;
  border-radius: 4px;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 0 12px;
  width: calc(100% - 14px);
}
.fake-input-elem .fake-input {
  position: relative;
  border: none;
  padding: 0;
  width: auto;
  flex: 1;
  margin: 0;
  min-width: 130px;
  min-height: 56px;
}
.fake-input-elem .fake-input .no-border-input {
  border: none;
  width: calc(100% - 16px);
  cursor: pointer;
  margin: 0 0 0 4px;
  padding: 0;
}
.fake-input-elem .fake-input img {
  position: absolute;
  top: 18px;
  right: 14px;
  height: 18px;
  width: 18px;
  cursor: pointer;
}
.fake-input-elem .fake-input img.hidden {
  display: none;
}
.fake-input-elem .search-tag {
  position: relative;
  height: 32px;
  line-height: 30px;
  padding: 0 26px 0 12px;
  border-radius: 4px;
  background: var(--grey-ultralight);
  margin: 12px 4px 0;
}
.fake-input-elem .search-tag.remote {
  padding: 0 12px 0 12px;
}
.fake-input-elem .search-tag.remote img {
  display: none;
}
.fake-input-elem .search-tag img {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  height: 14px;
  width: 14px;
  padding: 9px 6px 9px 9px;
}
.fake-input-elem .search-tag.hidden {
  display: none;
}

.topcenter .popup-menu {
  margin-top: 8px;
  z-index: 2;
  width: 604px;
}
.topcenter .popup-menu.job-salary-popup {
  display: block;
  width: 200px;
  right: 8px;
}
.topcenter .popup-menu.full-size {
  width: calc(100% - 16px);
  right: 8px;
}
.topcenter .popup-menu.popup-template {
  position: absolute;
  display: block;
  width: 164px;
  height: fit-content;
  right: 4px;
  top: 48px;
}
.topcenter .popup-menu.popup-template .template-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  cursor: pointer;
  transition: background 200ms ease-in-out;
}
.topcenter .popup-menu.popup-template .template-item:hover {
  background: var(--grey-light);
  border-radius: 4px;
}
.topcenter .popup-menu.popup-template:after {
  right: 19px;
}
.topcenter .popup-menu .popup-menu-input {
  margin: 16px 16px 0;
  width: calc(100% - 32px);
}
.topcenter .popup-menu .limited-height {
  max-height: 214px;
  overflow-y: scroll;
  border-radius: 4px;
}
.topcenter .popup-menu .item-boarder {
  border-radius: 4px;
  overflow: hidden;
}
.topcenter .popup-menu .item-boarder .location-card .border {
  border-bottom: 1px solid var(--grey-light);
  width: 100%;
  display: block;
  line-height: 47px;
}
.topcenter .popup-menu .location-card {
  cursor: pointer;
  height: 48px;
  text-align: left;
  line-height: 44px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 24px;
  transition: background 200ms ease-in-out;
}
.topcenter .popup-menu .location-card:hover {
  background: var(--accent);
}
.topcenter .popup-menu .location-card.hidden, .topcenter .popup-menu .location-card.none {
  display: none;
}
.topcenter .popup-menu .category-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0;
  text-align: left;
  margin-left: 16px;
  width: calc(100% - 42px);
  padding: 24px 8px 12px 0;
}
.topcenter .popup-menu .no-data-label {
  margin-bottom: 16px;
  margin-top: 16px;
}
.topcenter .popup-menu .job-function-set.scrollable {
  max-height: 356px;
  overflow-y: scroll;
}
.topcenter .popup-menu .job-function {
  cursor: pointer;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin-left: 48px;
  padding: 9px 0;
}
.topcenter .popup-menu .job-function span {
  color: var(--grey);
}
.topcenter .popup-menu .job-function .checkbox-grey {
  color: #797979;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.topcenter .popup-menu .job-function .checkbox-label {
  margin-top: 0;
  position: absolute;
  left: 16px;
  top: 11px;
}

.popup-menu.job-salary-popup:after {
  right: 26px;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0 !important;
}

.exit-button {
  left: 100px;
  top: 130px;
  position: absolute;
  transition: top 500ms ease-in-out;
}
.exit-button.lenta-shown {
  top: 202px;
}

#breadcrumb {
  list-style: none;
  display: inline-block;
  padding: 0;
  width: 100%;
}

#breadcrumb li {
  float: left;
  width: 25%;
}

#breadcrumb li a {
  color: var(--stub);
  display: block;
  background: #eee;
  text-decoration: none;
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 5px 0 0;
  text-align: center;
  font-size: 12px;
  transition: padding 500ms;
  cursor: default;
  font-weight: 400;
}

#breadcrumb li a.current {
  font-weight: 700;
}

.fullscreen-overlay-cropit {
  background: rgba(0, 0, 0, 0.3333333333);
}
.fullscreen-overlay-cropit .candidate-response-dialog {
  margin: calc(50vh - 100px) auto auto;
}
.fullscreen-overlay-cropit .candidate-response-dialog.margin-top {
  margin: calc(50vh - 210px) auto auto;
}

.candidate-response-dialog.large {
  max-width: 1060px;
  width: calc(100% - 32px);
}
.candidate-response-dialog .candidate-form {
  text-align: center;
  position: relative;
  padding: 32px;
}
.candidate-response-dialog .candidate-form .item-tags {
  max-height: 110px;
  height: auto;
  overflow: scroll;
  overflow-x: hidden;
}
.candidate-response-dialog .candidate-form .item-tags .item-tag {
  padding-right: 8px;
}
.candidate-response-dialog .candidate-form .item-tags .item-tag.hidden {
  display: none;
}
.candidate-response-dialog .candidate-form ::-webkit-scrollbar {
  display: none;
}
.candidate-response-dialog .candidate-form .gallery-image-list {
  position: relative;
  width: calc(100% + 16px);
  padding: 0 8px;
  margin-left: -16px;
  display: flex;
  flex-wrap: wrap;
  max-height: 330px;
  overflow-y: scroll;
}
.candidate-response-dialog .candidate-form .gallery-image-list .checkbox-elem {
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  z-index: 1;
}
.candidate-response-dialog .candidate-form .gallery-image-list .checkbox-elem.active {
  opacity: 1;
}
.candidate-response-dialog .candidate-form .gallery-image-list .checkbox-elem.yellow {
  left: 0;
}
.candidate-response-dialog .candidate-form .gallery-image-list .gallery-image-item {
  position: relative;
  float: left;
  width: calc(25% - 24px);
  margin: 8px;
  border: 4px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}
.candidate-response-dialog .candidate-form .gallery-image-list .gallery-image-item:hover {
  border: 4px solid var(--accent);
}
.candidate-response-dialog .candidate-form .gallery-image-list .gallery-image-item:hover img {
  border-radius: 0;
}
.candidate-response-dialog .candidate-form .gallery-image-list .gallery-image-item .gallery-black {
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  position: absolute;
  top: -1px;
  left: -1px;
  height: 100%;
  border-radius: 4px;
  margin: 1px;
  transition: opacity 100ms ease-in-out;
}
.candidate-response-dialog .candidate-form .gallery-image-list .gallery-image-item.active .gallery-black {
  opacity: 1;
}
.candidate-response-dialog .candidate-form .gallery-image-list .gallery-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
.candidate-response-dialog .candidate-form .popup-exit {
  position: absolute;
  top: 28px;
  left: 28px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
.candidate-response-dialog .candidate-form .popup-title {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.candidate-response-dialog .candidate-form .popup-gallery-image {
  width: 230px;
  cursor: pointer;
}
.candidate-response-dialog .candidate-form .popup-heading {
  clear: left;
  font-size: 30px;
  font-weight: 500;
  line-height: 22px;
}
.candidate-response-dialog .candidate-form .popup-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.candidate-response-dialog .candidate-form .popup-desc span {
  color: var(--blue);
  cursor: pointer;
}
.candidate-response-dialog .candidate-form .popup-desc span.normal {
  color: #000;
  cursor: default;
}
.candidate-response-dialog .title {
  text-align: left;
}
.candidate-response-dialog .bold {
  font-weight: 700;
}

.preview-container {
  text-align: center;
  margin-top: 32px;
}
.preview-container label {
  font-size: 13px;
  font-weight: 500;
}

.btn-color-mode-switch {
  display: inline-block;
  margin: 0;
  position: relative;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
  margin: 0;
  width: 208px;
  height: 48px;
  background: var(--grey-ultralight);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: block;
  cursor: pointer;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 14px;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  cursor: pointer;
  width: 86px;
  line-height: 18px;
  height: 20px;
  background: var(--accent);
  border-radius: 26px;
  position: absolute;
  left: 4px;
  top: 4px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px -2px #111;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
}

.btn-color-mode-switch input[type=checkbox] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0;
}

.btn-color-mode-switch input[type=checkbox]:checked + label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 118px;
}

.btn-color-mode-switch input[type=checkbox]:checked + label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

.container .content {
  left: 80px;
  width: calc(100% - 80px);
  overflow-y: scroll;
}

.questions-root .expiry-warning {
  background: var(--textarea-button);
  border-left: 4px solid var(--accent);
}
.questions-root .expiry-warning.expiry-gdpr {
  padding-right: 8px;
  margin-left: 24px;
  margin-right: 24px;
  margin-top: 16px;
  padding-left: 48px;
}
.questions-root .expiry-warning .expiry-title {
  color: var(--text-dark);
}
.questions-root .expiry-warning .expiry-title .bold {
  font-weight: 700;
  color: #000;
}

/*# sourceMappingURL=event_creation.css.map */
