input[type="checkbox"],
input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #ff574d;
}
input[type="radio"] {
  --active: #ff574d;
  --active-inner: #fff;
  --border: #bbc1e1;
  --background: #fff;
  --disabled: #f6f8ff;
  --disabled-inner: #e1e6f9;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 20px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--border);
  border: 1px solid var(--bc, var(--border));
  background: var(--background);
  background: var(--b, var(--background));
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}
input[type="radio"]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.2s;
  transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
}
input[type="radio"]:checked {
  --b: var(--active);
  --bc: var(--active);
  --d-o: 0.3s;
  --d-t: 0.6s;
  --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
}
input[type="radio"]:disabled {
  --b: var(--disabled);
  cursor: not-allowed;
  opacity: 0.9;
}
input[type="radio"]:disabled:checked {
  --b: var(--disabled-inner);
  --bc: var(--border);
}
input[type="radio"]:disabled + label {
  cursor: not-allowed;
  color: #8a91b4;
}
input[type="radio"]:hover:not(:checked):not(:disabled) {
  --bc: var(--border-hover);
}
input[type="radio"]:focus {
  box-shadow: 0 0 0 var(--focus);
}
input[type="radio"]:not(.switch) {
  width: 21px;
}
input[type="radio"]:not(.switch):after {
  opacity: 0;
  opacity: var(--o, 0);
}
input[type="radio"]:not(.switch):checked {
  --o: 1;
}
input[type="radio"] {
  border-radius: 50%;
}
input[type="radio"]:after {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--active-inner);
  opacity: 0;
  transform: scale(0.7);
  transform: scale(var(--s, 0.7));
}
input[type="radio"]:checked {
  --s: 0.5;
}
label {
  cursor: pointer;
  color: #1a1a1a;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea.big_textarea,
select.big_select,
#tag-selector-box {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #e1e1e1;
  background: #ffffff;
}
input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, textarea.big_textarea::-webkit-input-placeholder, select.big_select::-webkit-input-placeholder, #tag-selector-box::-webkit-input-placeholder {
  color: #aeaeae;
}
input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, textarea.big_textarea::-moz-placeholder, select.big_select::-moz-placeholder, #tag-selector-box::-moz-placeholder {
  color: #aeaeae;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea.big_textarea::placeholder,
select.big_select::placeholder,
#tag-selector-box::placeholder {
  color: #aeaeae;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
textarea.big_textarea:hover,
select.big_select:hover,
#tag-selector-box:hover {
  border-color: #8a8a8a;
}
input[type="text"]:active,
input[type="email"]:active,
input[type="tel"]:active,
textarea.big_textarea:active,
select.big_select:active,
#tag-selector-box:active {
  border-color: #1a1a1a;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea.big_textarea:focus,
select.big_select:focus,
#tag-selector-box:focus {
  border-color: #1a1a1a;
}
input[type="text"].error,
input[type="email"].error,
input[type="tel"].error,
textarea.big_textarea.error,
select.big_select.error,
#tag-selector-box.error {
  border-color: #d3463e;
}
input[type="text"],
input[type="email"],
textarea,
#tag-selector-box {
  padding: 12px 16px;
}
select.big_select {
  cursor: pointer;
  padding: 12px 60px 12px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
select.big_select:invalid {
  color: #aeaeae;
}
select.big_select option {
  color: #1a1a1a;
}
select.big_select option:disabled {
  color: #aeaeae;
}
textarea.big_textarea {
  height: 88px;
  resize: none;
}
.select_container {
  position: relative;
  width: 100%;
}
.select_container .select_icon {
  font-size: 20px;
  color: #aeaeae;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
  pointer-events: none;
}
.tags_list {
  cursor: text;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.tags_list a {
  position: relative;
}
.tags_list a.tag {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #ffffff;
  color: #ff574d;
  border: 1px solid #ff574d;
}
.tags_list a.tag .icon {
  display: flex;
  margin: 0 6px;
  font-size: 12px;
}
.tags_list a.tag.selected {
  padding: 4px 8px 4px 16px;
  background: #ff574d;
  color: #ffffff;
}
.tags_list .empty {
  color: #aeaeae;
}
.bar-color {
  background: #ff574d;
  opacity: 1 !important;
}
#layout_content_html,
#layout_content {
  background: #eeebf0;
}
#front-header {
  padding: 110px 8% 90px;
  background: #ff574d;
}
#front-header .header-img {
  background: url(https://s.plurk.com/765deacdbbb456f148a8.png) no-repeat;
  position: absolute;
  right: 8%;
  bottom: -48px;
  width: 395px;
  height: 380px;
  background-size: auto 100%;
  background-position: right bottom;
  z-index: 0;
}
#front-header #front-title {
  margin-right: 395px;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 8%;
  font-size: 18px;
}
.faq section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.faq section h4 {
  color: #ff574d;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}
.faq section h5 {
  color: #ff574d;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
.faq section p {
  margin: 0;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}
.faq section ul {
  margin: 0 0 0 1em;
}
.faq section ul li {
  margin: 0;
  list-style: none;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}
.faq button {
  display: flex;
  max-width: 480px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}
.apply {
  display: flex;
  padding: 60px 8%;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.apply__form {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
  border-radius: 8px;
  background: #ffffff;
  min-width: 0;
}
.apply__form__area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
}
.apply__form__area__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-self: stretch;
}
.apply__form__area__title__text {
  padding: 4px 16px;
  border-left: 4px solid #ff574d;
  color: #ff574d;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
}
.apply__form__area__title__desc {
  color: #595959;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.apply__form__area__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
.apply__form__area__list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.apply__form__area__list__item__name {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
.apply__form__area__list__item__desc {
  color: #595959;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.apply__form__area__list__item .require::after {
  content: "*";
  color: #ff574d;
}
.apply__form__area__list__item__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apply__form__area__list__item__field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.apply__form__area__list__item__field .field__input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  justify-content: center;
  flex-grow: 1;
}
.apply__form__area__list__item__field .field__input__title {
  color: #595959;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.apply__form__area__list__item__field .field__input__title-empty {
  height: 21px;
}
.apply__form__area__list__item__field .field__input__error,
.apply__form__area__list__item__field .field__input__errors {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #d3463e;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.apply__form__area__list__item__field .field__input__error a,
.apply__form__area__list__item__field .field__input__errors a {
  display: flex;
  align-items: center;
  color: #d3463e;
}
.apply__form__area__list__item__field .field__input__error span,
.apply__form__area__list__item__field .field__input__errors span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.apply__form__area__list__item__field .field__input #tag-selector-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0;
  position: relative;
}
.apply__form__area__list__item__field .field__input #tag-selector-box .tags_list .tag_search input {
  padding: 0;
  line-height: 28px;
  font-size: 18px;
  background-color: transparent;
  border: none;
  width: 300px;
}
.apply__form__area__list__item__field .field__input #tag-selector-box .tags_count {
  position: absolute;
  right: 16px;
  bottom: 12px;
  display: flex;
  align-items: end;
  height: 100%;
  color: #595959;
  font-size: 14px;
  line-height: 150%;
}
.apply__form__area__list__item__field .field__input #tag-selector-box .tags_count.error {
  color: #d3463e;
}
.apply__form__area__list__item__field .field__input__radio {
  display: flex;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.apply__form__area__list__item__field .field__input__phone {
  position: relative;
  width: 100%;
}
.apply__form__area__list__item__field .field__input__phone:hover input {
  border-color: #8a8a8a;
}
.apply__form__area__list__item__field .field__input__phone input {
  padding-left: 120px;
}
.apply__form__area__list__item__field .field__input__phone__code {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  height: 50px;
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.apply__form__area__list__item__field .field__input__phone__code__select {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.apply__form__area__list__item__field .field__input__phone__code__select__icon {
  display: flex;
  font-size: 14px;
  color: #aeaeae;
}
.apply__form__area__list__item__field .field__input-top {
  justify-content: start;
  flex: 1 1 0;
  min-width: 0;
}
.apply__form__area__list__item__field .field__input-top .button-m {
  margin: 5.5px 0;
}
.apply__form__area__list__item__field__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.apply__form__area__list__item__field__links .link {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 6px;
  background: #f5f5f5;
  overflow: hidden;
  color: #595959;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.apply__form__area__list__item__field__links .link .link-front {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  max-width: 100%;
  min-width: 0;
}
.apply__form__area__list__item__field__links .link .link-front span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.apply__form__area__list__item__field__links .link .icon {
  font-size: 18px;
  display: flex;
  align-items: center;
}
.apply__form__area__list__item__field__links .link .delete {
  color: #595959;
}
.apply__form__area__list__item__field__links .link .delete:hover {
  color: #ff574d;
}
.apply__form__area__buttons {
  display: flex;
  width: 100%;
  gap: 16px;
}
.apply__step__bar {
  width: 100%;
  display: none;
  align-items: center;
  background: #ffffff;
}
.apply__step__bar__item {
  display: flex;
  align-self: stretch;
  padding: 16px 4px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-bottom: 2px solid #e1e1e1;
}
.apply__step__bar__item__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.apply__step__bar__item__check {
  display: none;
  color: #ff574d;
  font-size: 16px;
}
.apply__step__bar__item.current {
  color: #ff574d;
  border-bottom: 2px solid #ff574d;
}
.apply__step__bar__item.finish {
  cursor: pointer;
}
.apply__step__bar__item.finish .apply__step__bar__item__check {
  display: block;
}
.apply__step {
  display: flex;
  width: 200px;
  padding: 8px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 8px;
  background: #ffffff;
  flex-shrink: 0;
}
.apply__step__item {
  display: flex;
  width: 100%;
  padding: 16px 4px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
}
.apply__step__item__text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.apply__step__item__check {
  display: none;
  color: #ff574d;
  font-size: 16px;
}
.apply__step__item.current {
  color: #ff574d;
}
.apply__step__item.finish {
  cursor: pointer;
}
.apply__step__item.finish .apply__step__item__check {
  display: block;
}
.apply__step__item-last {
  border-bottom: none;
}
.button {
  display: flex;
  max-width: 480px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff574d;
  text-align: center;
}
.button:hover {
  background-color: #ff7971;
}
.button.button-m {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
}
.button.button-s {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  gap: 4px;
}
.button.button-l {
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}
.button.outline {
  color: #ff574d;
  background-color: #ffffff;
  border: 1px solid #ff574d;
}
.button.outline:hover {
  color: #ff7971;
  background-color: #ffffff;
  border: 1px solid #ff7971;
}
@media screen and (max-width: 900px) {
  #front-header {
    padding: 110px 8% 40px;
  }
  #front-header .header-img {
    width: 290.801px;
    height: 280px;
    right: 4%;
    bottom: 12px;
  }
  #front-header #front-title {
    font-size: 60px;
    margin-right: 290px;
  }
  .apply,
  .faq {
    padding: 40px 5%;
  }
  #apply-step-bar {
    display: flex;
  }
  #apply-step-wide {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  #front-header {
    padding: 70px 5% 40px;
  }
  #front-header .header-img {
    width: 160px;
    height: 155px;
    bottom: 12px;
    right: 5%;
  }
  #front-header #front-title {
    font-size: 46px;
    margin-right: 160px;
  }
  .apply__form {
    padding: 24px;
  }
  .apply__form__area {
    gap: 24px;
  }
  .apply__form__area__list {
    gap: 24px;
  }
  .apply__form__area__list__item__field {
    flex-direction: column;
  }
  .apply__form__area__list__item__field__input__title-empty {
    display: none;
  }
  .button-l {
    max-width: 640px;
    width: 100%;
  }
}
.pop-loading .pop-window-content {
  display: flex;
  padding: 40px 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  background: #eeebf0;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 12px 0 rgba(0, 0, 0, 0.1), 0 4px 16px 8px rgba(0, 0, 0, 0.05);
  color: #595959;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
.pop-loading .pop-window-content img {
  width: 75px;
}
.hidden {
  display: none !important;
}

