@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.n-c-social__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: 40px;
    background-color: #e4e5e6;
    border-radius: 50%;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    color: #3a465a;
}
.n-c-social__item:hover {
      background-color: #3b4658;
      color: #ffffff;
}
.n-c-social__item > svg {
      fill: currentColor;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-curators-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 390px;
  min-height: 380px;
  padding: 40px 44px;
  background: #f9f9f9;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.n-c-curators-card.show-popup:hover {
    -webkit-box-shadow: 0 20px 8px -12px rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 20px 8px -12px rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    cursor: pointer;
}
@media only screen and (max-width: 750px) {
.n-c-curators-card {
      width: 100%;
      min-height: 338px;
      padding: 32px 24px;
}
}
.n-c-curators-card__avatar {
    width: 112px;
    height: 112px;
    background: #f2f2f2;
    border-radius: 50%;
    overflow: hidden;
}
.n-c-curators-card__avatar-image {
    width: 100%;
    height: 100%;
}
.n-c-curators-card__name {
    margin-top: 32px;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #3c4557;
}
@media only screen and (max-width: 750px) {
.n-c-curators-card__name {
        font-size: 18px;
}
}
.n-c-curators-card__role {
    margin-top: 12px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 140%;
    color: #3c4557;
}
@media only screen and (max-width: 750px) {
.n-c-curators-card__role {
        font-size: 14px;
}
}
.n-c-curators-card__social {
    margin-top: auto;
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-more-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 56px;
}
.n-c-more-button__btn {
    width: 100%;
    height: 100%;
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-curators__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.v-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 14px;
  line-height: 15px;
  -webkit-transition: border-color .2s ease;
  transition: border-color .2s ease;
  /* Colors */
  /* End colors */
  /* Size */
  /* End size */
  /* Modificators */
  /* End Modificators */
}
.v-input--default {
    border-color: #cacaca;
    color: #000;
}
.v-input--default .v-input__label {
      color: #000;
}
.v-input--default .v-input__placeholder {
      color: rgba(0, 0, 0, 0.44);
}
.v-input--default.is-error {
      border-color: #ef3b24;
}
.v-input--default.is-error .v-input__label {
        color: #ef3b24;
}
.v-input--default.is-error .v-input__label .v-input__hint-body {
          color: #000;
}
.v-input--default.is-error .v-input__inner {
        border-color: #ef3b24;
}
.v-input--default.is-error .v-input__error {
        opacity: 1;
}
.v-input--medium .v-input__native {
    height: 54px;
}
.v-input--medium .v-input__placeholder {
    font-size: 16px;
}
.v-input--large .v-input__native {
    height: 60px;
}
.v-input--large .v-input__placeholder {
    font-size: 16px;
}
.v-input.has-label.has-placeholder .v-input__label, .v-input.is-active .v-input__label, .v-input.is-focused .v-input__label, .v-input.has-content .v-input__label {
    -webkit-transform: translateY(-44px);
            transform: translateY(-44px);
}
.v-input.is-textarea .v-input__placeholder {
    top: 16px;
    -webkit-transform: none;
            transform: none;
}
.v-input.has-label {
    padding-top: 38px;
}
.v-input.has-label.has-placeholder.is-active .v-input__placeholder {
    opacity: 0;
}
@media screen and (max-device-width: 1024px) {
.v-input.has-label.has-placeholder.is-focused .v-input__placeholder {
      opacity: 0;
      -webkit-transition-duration: 0s;
              transition-duration: 0s;
}
}
.v-input.is-active .v-input__placeholder {
    opacity: 0;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
}
@media screen and (max-device-width: 1024px) {
.v-input.is-focused .v-input__placeholder {
      opacity: 0;
      -webkit-transition-duration: 0s;
              transition-duration: 0s;
}
}
.v-input.is-disabled {
    opacity: .3;
}
.v-input__inner {
    position: relative;
    width: 100%;
    padding: 0 20px;
    border: 1px solid #cacaca;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.v-input__inner input[type=file] {
      opacity: 0;
}
.v-input__native, .v-input__textarea {
    width: 100%;
    height: 48px;
    padding: 16px 0;
    border: none;
    background-color: transparent;
    outline: none;
    font-size: inherit;
    color: inherit;
}
.v-input__native:placeholder-shown ~ .v-input__placeholder, .v-input__textarea:placeholder-shown ~ .v-input__placeholder {
      opacity: 0;
}
.v-input__native::-webkit-outer-spin-button, .v-input__native::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.v-input__native[type=number] {
    -moz-appearance: textfield;
}
.v-input__textarea {
    height: 80px;
    resize: none;
}
.v-input__label, .v-input__placeholder, .v-input__error {
    position: absolute;
    pointer-events: none;
}
.v-input__label {
    left: 0;
    top: 14px;
    font-size: 16px;
    line-height: 18px;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: color .2s ease, -webkit-transform .3s ease;
    transition: color .2s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, color .2s ease;
    transition: transform .3s ease, color .2s ease, -webkit-transform .3s ease;
}
.v-input__label._pointer {
      pointer-events: auto;
}
.v-input__hint {
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxjaXJjbGUgY3g9IjEwIiBjeT0iMTAiIHI9IjEwIiBmaWxsPSIjREVERURFIi8+CjxwYXRoIGQ9Ik0xMC44MjggNi4yTDEwLjY3MiAxMS40OEg5LjM1Mkw5LjE5NiA2LjJIMTAuODI4Wk05LjM2NCAxMy44MDhDOS4xODggMTMuNjMyIDkuMSAxMy40MTYgOS4xIDEzLjE2QzkuMSAxMi45MDQgOS4xODggMTIuNjg4IDkuMzY0IDEyLjUxMkM5LjU0IDEyLjMyOCA5Ljc1NiAxMi4yMzYgMTAuMDEyIDEyLjIzNkMxMC4yNjggMTIuMjM2IDEwLjQ4NCAxMi4zMjggMTAuNjYgMTIuNTEyQzEwLjgzNiAxMi42ODggMTAuOTI0IDEyLjkwNCAxMC45MjQgMTMuMTZDMTAuOTI0IDEzLjQxNiAxMC44MzYgMTMuNjMyIDEwLjY2IDEzLjgwOEMxMC40ODQgMTMuOTc2IDEwLjI2OCAxNC4wNiAxMC4wMTIgMTQuMDZDOS43NTYgMTQuMDYgOS41NCAxMy45NzYgOS4zNjQgMTMuODA4WiIgZmlsbD0iIzM5NDY1QSIvPgo8L3N2Zz4K);
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    cursor: pointer;
}
.v-input__hint-body {
    position: absolute;
    top: -16px;
    left: 40%;
    width: 300px;
    padding: 30px 35px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(-50%, -100%, 0);
            transform: translate3d(-50%, -100%, 0);
}
@media only screen and (max-width: 750px) {
.v-input__hint-body {
        left: 112%;
        width: 280px;
        padding: 15px 20px;
        font-size: 14px;
        -webkit-transform: translate3d(-100%, -100%, 0);
                transform: translate3d(-100%, -100%, 0);
}
}
.v-input__hint-body:before {
      content: '';
      position: absolute;
      display: block;
      left: calc(50% - 10px);
      bottom: -10px;
      border-top: 11px solid #fff;
      border-right: 12px solid transparent;
      border-left: 12px solid transparent;
}
@media only screen and (max-width: 750px) {
.v-input__hint-body:before {
          left: calc(100% - 24px);
          bottom: -11px;
}
}
.v-input__placeholder {
    left: 20px;
    top: 50%;
    width: calc(100% - 40px);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
}
.v-input__required {
    margin-left: .2rem;
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #292522;
}
.v-input__error {
    left: 0;
    bottom: -18px;
    font-size: 11px;
    color: #ef3b24;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.v-input__addon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.v-input__addon.is-left {
      margin-right: 8px;
}
.v-input__addon.is-right {
      margin-left: 8px;
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.v-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 15px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.v-checkbox._active .v-checkbox__box {
    border-color: #3b4658;
}
.v-checkbox._active .v-checkbox__box:after {
      opacity: 1;
}
.v-checkbox._disabled {
    pointer-events: none;
    opacity: .6;
}
.v-checkbox._error .v-checkbox__box {
    border-color: #ef3b24;
}
.v-checkbox__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    border: 1px solid #dedede;
    background-color: white;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
}
.v-checkbox__box:after {
      content: '';
      width: 12px;
      height: 12px;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      opacity: 0;
      background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDMuMDgzMzNMNC4wMDk3NSA2TDkgMSIgc3Ryb2tlPSIjM0I0NjU4IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=);
      background-repeat: no-repeat;
      position: absolute;
      top: 7px;
      left: 5px;
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-curator-page-form {
  position: relative;
  width: 393px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form {
      width: 100%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
}
}
.n-c-curator-page-form__title {
    margin-bottom: 48px;
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
    color: #14191a;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form__title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px;
        width: 292px;
}
}
.n-c-curator-page-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 24px;
}
.n-c-curator-page-form__item._disabled {
    opacity: 0.5;
    pointer-events: none;
}
.n-c-curator-page-form__item._half {
    width: calc((100% - 12px) / 2);
}
.n-c-curator-page-form__item._error .n-c-curator-page-form__item-label {
    color: #ef3b24;
}
.n-c-curator-page-form__item._error .v-input__inner {
    border-color: #ef3b24;
}
.n-c-curator-page-form__item._error .multiselect {
    border-color: #ef3b24;
}
.n-c-curator-page-form__item-label {
    width: 100%;
    margin-bottom: 11px;
    font-size: 20px;
    line-height: 24px;
    color: #3b4658;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form__item-label {
        font-size: 16px;
        line-height: 19px;
}
}
.n-c-curator-page-form__item-label._error {
      color: #ef3b24;
}
.n-c-curator-page-form__item-error {
    position: absolute;
    margin-top: -27px;
    font-size: 11px;
    color: #ef3b24;
}
.n-c-curator-page-form__input {
    width: 100%;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form__input {
        margin-bottom: 25px;
}
}
.n-c-curator-page-form__input:not(:last-child) {
      margin-bottom: 28px;
}
.n-c-curator-page-form__input .v-input__label {
      top: 5px;
      font-size: 16px;
      line-height: 20px;
      color: #3b4658;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form__input .v-input__label {
          top: 3px;
          font-size: 16px;
          line-height: 19px;
}
}
.n-c-curator-page-form__input:last-child {
      position: relative;
}
.n-c-curator-page-form__input:last-child .v-input__inner::after {
        position: absolute;
        content: 'Выбрать';
        top: 35%;
        right: 16px;
        z-index: 0;
        text-decoration: underline;
        text-underline-offset: 3px;
        pointer-events: none;
        opacity: 1;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
}
.n-c-curator-page-form__input:last-child .v-input__inner:hover::after {
        opacity: 0.6;
}
.n-c-curator-page-form__input:last-child .v-input__native {
        cursor: pointer;
        padding-right: 60px;
        text-overflow: ellipsis;
}
.n-c-curator-page-form__checkbox {
    margin: 28px 0 36px;
}
.n-c-curator-page-form__checkbox.v-checkbox {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      line-height: 20px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form__checkbox.v-checkbox {
          font-size: 12px;
          line-height: 18px;
}
}
.n-c-curator-page-form__checkbox .v-checkbox__box {
      margin-top: 2px;
}
.n-c-curator-page-form__submit-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-top: 28px;
}
.n-c-curator-page-form__submit {
    width: 100%;
    height: 51px;
    font-weight: 500;
}
.n-c-curator-page-form__result {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: white;
    font-size: 20px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form__result {
        background-color: #f9f9f9;
        font-size: 18px;
}
}
.n-c-curator-page-form__form .v-input__placeholder {
    line-height: 20px;
}
.n-c-curator-page-form__form .v-input__error {
    bottom: -15px;
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.close-button {
  position: absolute;
  top: 34px;
  right: 30px;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 110%;
  text-transform: uppercase;
  cursor: pointer;
  color: #000;
  /* Size */
  /* End size */
  /* Shape */
  /* End shape */
  /* Color */
  /* End color */
}
.close-button span {
    width: 100%;
    height: 100%;
    min-width: 21px;
    min-height: 21px;
    margin-left: 12px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KPHRpdGxlPkdyb3VwIDQ8L3RpdGxlPgo8ZGVzYz5DcmVhdGVkIHVzaW5nIEZpZ21hPC9kZXNjPgo8ZyBpZD0iQ2FudmFzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTIyMzkgLTEyNTEpIj4KPGcgaWQ9Ikdyb3VwIDQiPgo8ZyBpZD0iVmVjdG9yIDI4Ij4KPHVzZSB4bGluazpocmVmPSIjcGF0aDBfc3Ryb2tlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjI0MCAxMjUyKSIgZmlsbD0iIzNCNDY1OCIvPgo8L2c+CjxnIGlkPSJWZWN0b3IgMjguMSI+Cjx1c2UgeGxpbms6aHJlZj0iI3BhdGgwX3N0cm9rZSIgdHJhbnNmb3JtPSJtYXRyaXgoNi4xMjMyM2UtMTcgMSAtMSA2LjEyMzIzZS0xNyAxMjI2MS41IDEyNTIpIiBmaWxsPSIjM0I0NjU4Ii8+CjwvZz4KPC9nPgo8L2c+CjxkZWZzPgo8cGF0aCBpZD0icGF0aDBfc3Ryb2tlIiBkPSJNIC0wLjM1MzU1MyAwLjM1MzU1M0wgMjEuMTQ2NCAyMS44NTM2TCAyMS44NTM2IDIxLjE0NjRMIDAuMzUzNTUzIC0wLjM1MzU1M0wgLTAuMzUzNTUzIDAuMzUzNTUzWiIvPgo8L2RlZnM+Cjwvc3ZnPgo=) center no-repeat;
    background-size: contain;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}
@media only screen and (max-width: 750px) {
.close-button span {
        min-width: 16px;
        min-height: 16px;
}
}
@media only screen and (max-width: 750px) {
.close-button {
      top: 29px;
      right: 20px;
      font-size: 12px;
}
}
.close-button._out {
    right: -50px;
}
.close-button:hover span {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
}
.close-button:active span {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
}
.close-button._white {
    color: #fff;
}
.close-button._white span {
      background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KPHRpdGxlPkdyb3VwIDQ8L3RpdGxlPgo8ZGVzYz5DcmVhdGVkIHVzaW5nIEZpZ21hPC9kZXNjPgo8ZyBpZD0iQ2FudmFzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTIyMzkgLTEyNTEpIj4KPGcgaWQ9Ikdyb3VwIDQiPgo8ZyBpZD0iVmVjdG9yIDI4Ij4KPHVzZSB4bGluazpocmVmPSIjcGF0aDBfc3Ryb2tlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjI0MCAxMjUyKSIgZmlsbD0iI0ZGRkZGRiIvPgo8L2c+CjxnIGlkPSJWZWN0b3IgMjguMSI+Cjx1c2UgeGxpbms6aHJlZj0iI3BhdGgwX3N0cm9rZSIgdHJhbnNmb3JtPSJtYXRyaXgoNi4xMjMyM2UtMTcgMSAtMSA2LjEyMzIzZS0xNyAxMjI2MS41IDEyNTIpIiBmaWxsPSIjRkZGRkZGIi8+CjwvZz4KPC9nPgo8L2c+CjxkZWZzPgo8cGF0aCBpZD0icGF0aDBfc3Ryb2tlIiBkPSJNIC0wLjM1MzU1MyAwLjM1MzU1M0wgMjEuMTQ2NCAyMS44NTM2TCAyMS44NTM2IDIxLjE0NjRMIDAuMzUzNTUzIC0wLjM1MzU1M0wgLTAuMzUzNTUzIDAuMzUzNTUzWiIvPgo8L2RlZnM+Cjwvc3ZnPgo=) center no-repeat;
}
@media only screen and (max-width: 750px) {
.close-button._white-mobile {
      color: #fff;
}
.close-button._white-mobile span {
        background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KPHRpdGxlPkdyb3VwIDQ8L3RpdGxlPgo8ZGVzYz5DcmVhdGVkIHVzaW5nIEZpZ21hPC9kZXNjPgo8ZyBpZD0iQ2FudmFzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTIyMzkgLTEyNTEpIj4KPGcgaWQ9Ikdyb3VwIDQiPgo8ZyBpZD0iVmVjdG9yIDI4Ij4KPHVzZSB4bGluazpocmVmPSIjcGF0aDBfc3Ryb2tlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjI0MCAxMjUyKSIgZmlsbD0iI0ZGRkZGRiIvPgo8L2c+CjxnIGlkPSJWZWN0b3IgMjguMSI+Cjx1c2UgeGxpbms6aHJlZj0iI3BhdGgwX3N0cm9rZSIgdHJhbnNmb3JtPSJtYXRyaXgoNi4xMjMyM2UtMTcgMSAtMSA2LjEyMzIzZS0xNyAxMjI2MS41IDEyNTIpIiBmaWxsPSIjRkZGRkZGIi8+CjwvZz4KPC9nPgo8L2c+CjxkZWZzPgo8cGF0aCBpZD0icGF0aDBfc3Ryb2tlIiBkPSJNIC0wLjM1MzU1MyAwLjM1MzU1M0wgMjEuMTQ2NCAyMS44NTM2TCAyMS44NTM2IDIxLjE0NjRMIDAuMzUzNTUzIC0wLjM1MzU1M0wgLTAuMzUzNTUzIDAuMzUzNTUzWiIvPgo8L2RlZnM+Cjwvc3ZnPgo=) center no-repeat;
}
}
.close-button--small {
    font-size: 12px;
    line-height: 14px;
}
.close-button--small span {
      min-width: 16px;
      min-height: 16px;
}
.close-button--medium {
    font-size: 16px;
    line-height: 18px;
}
.close-button--medium span {
      min-width: 32px;
      min-height: 32px;
}
.close-button--circle {
    border-radius: 50%;
}
.close-button--circle span {
      position: relative;
      margin-left: 0;
      background: none;
}
.close-button--circle span:before, .close-button--circle span:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 50%;
        width: 2px;
        height: 18px;
        border-radius: 4px;
        background-color: #3b4658;
}
.close-button--circle span:before {
        -webkit-transform: translate3d(50%, -50%, 0) rotate(-45deg);
                transform: translate3d(50%, -50%, 0) rotate(-45deg);
}
.close-button--circle span:after {
        -webkit-transform: translate3d(50%, -50%, 0) rotate(45deg);
                transform: translate3d(50%, -50%, 0) rotate(45deg);
}
.close-button--grey {
    background-color: rgba(236, 237, 239, 0.5);
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: calc(100% - var(--lock-offset, 0));
  height: 100%;
}
@media only screen and (max-width: 750px) {
.modal {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
}
.modal__close {
    position: absolute;
    top: 32px;
    right: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(236, 237, 239, 0.5);
    cursor: pointer;
}
@media only screen and (max-width: 750px) {
.modal__close {
        top: 20px;
        right: 20px;
}
}
.modal__close svg {
      width: 14px;
      height: 14px;
      -webkit-transition: -webkit-transform .2s ease;
      transition: -webkit-transform .2s ease;
      transition: transform .2s ease;
      transition: transform .2s ease, -webkit-transform .2s ease;
}
.modal__close:hover svg {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
}
.modal:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.modal._rounded .modal__content {
    border-radius: 1.6rem;
}
@media only screen and (max-width: 750px) {
.modal._rounded .modal__content {
        border-radius: 1.6rem 1.6rem 0 0;
}
}
@media only screen and (max-width: 750px) {
.modal._to-top {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
}
}
.modal._scroll {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}
.modal._scroll._centred {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.modal._scroll .modal__content {
      margin: 80px 0;
      overflow-x: hidden;
      overflow-y: auto;
      scrollbar-width: none;
}
.modal._scroll .modal__content::-webkit-scrollbar {
        display: none;
}
@media (max-height: 728px) {
.modal._scroll .modal__content {
          margin: 40px 0;
}
}
@media only screen and (max-width: 750px) {
.modal._scroll .modal__content {
          margin: 0;
}
}
@media only screen and (max-width: 750px) {
.modal._scroll._fullMob {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
}
}
@media only screen and (max-width: 750px) {
.modal._scroll._fullMob .modal__content {
        height: 100%;
}
}
.modal._full {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.modal._full > .modal__content {
      height: 100%;
      min-height: 100%;
      min-width: 100%;
      overflow: auto;
}
.modal__content {
    position: relative;
    overflow: hidden;
    height: auto;
    padding: 40px 64px 48px;
    background-color: #fff;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.modal__content._blank {
      padding: 0;
}
.modal__content._overflow-visible {
      overflow: visible;
}
@media only screen and (max-width: 750px) {
.modal__content {
        width: 100%;
        height: auto;
        padding: 38px 20px;
}
}
.to-top-enter .modal__content,
.to-top-leave-to .modal__content {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.to-top-enter:before,
.to-top-leave-to:before {
  opacity: 0;
}
.to-slide-left-enter-active .modal__content,
.to-slide-left-leave-active .modal__content {
  -webkit-transition: all .3s;
  transition: all .3s;
}
.to-slide-left-enter-active:before,
.to-slide-left-leave-active:before {
  opacity: 0;
}
.to-slide-left-enter .modal__content,
.to-slide-left-leave-to .modal__content {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.to-slide-left-enter-from .modal__content,
.to-slide-left-leave-from .modal__content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-curator-page-form-popup {
  width: 520px;
  height: 100%;
  padding-top: 72px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup {
      width: 100%;
      padding-top: 48px;
      overflow-x: hidden;
      overflow-y: auto;
}
}
.n-c-curator-page-form-popup__container {
    padding: 0 40px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__container {
        padding: 0 20px;
}
}
.n-c-curator-page-form-popup__title {
    margin-bottom: 36px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    color: #3b4657;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
}
}
.n-c-curator-page-form-popup__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
}
.n-c-curator-page-form-popup__item {
    position: relative;
}
.n-c-curator-page-form-popup__item._disabled {
      opacity: 0.5;
      pointer-events: none;
}
.n-c-curator-page-form-popup__item._half {
      width: calc((100% - 12px) / 2);
}
.n-c-curator-page-form-popup__item._error .n-c-curator-page-form-popup__item-label {
      color: #ef3b24;
}
.n-c-curator-page-form-popup__item._error .v-input__inner {
      border-color: #ef3b24;
}
.n-c-curator-page-form-popup__item._error .multiselect {
      border-color: #ef3b24;
}
.n-c-curator-page-form-popup__item-label {
    width: 100%;
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 24px;
    color: #3b4658;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__item-label {
        font-size: 16px;
        line-height: 19px;
}
}
.n-c-curator-page-form-popup__item-label._error {
      color: #ef3b24;
}
.n-c-curator-page-form-popup__item-error {
    position: absolute;
    margin-top: -24px;
    font-size: 11px;
    color: #ef3b24;
}
.n-c-curator-page-form-popup__input {
    width: 100%;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__input {
        margin-bottom: 25px;
}
}
.n-c-curator-page-form-popup__input:not(:last-child) {
      margin-bottom: 28px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__input:not(:last-child) {
          margin-bottom: 24px;
}
}
.n-c-curator-page-form-popup__input .v-input__label {
      top: 5px;
      font-size: 16px;
      line-height: 20px;
      color: #3b4658;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__input .v-input__label {
          top: 3px;
          font-size: 16px;
          line-height: 19px;
          -webkit-transform: translateY(-38px);
                  transform: translateY(-38px);
}
}
.n-c-curator-page-form-popup__input:last-child {
      position: relative;
}
.n-c-curator-page-form-popup__input:last-child .v-input__inner::after {
        position: absolute;
        content: 'Выбрать';
        top: 35%;
        right: 16px;
        z-index: 0;
        text-decoration: underline;
        text-underline-offset: 3px;
        pointer-events: none;
        opacity: 1;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
}
.n-c-curator-page-form-popup__input:last-child .v-input__inner:hover::after {
        opacity: 0.6;
}
.n-c-curator-page-form-popup__input:last-child .v-input__native {
        cursor: pointer;
        padding-right: 60px;
        text-overflow: ellipsis;
}
.n-c-curator-page-form-popup__checkbox {
    margin: 0px 0 36px;
}
.n-c-curator-page-form-popup__checkbox.v-checkbox {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      line-height: 20px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__checkbox.v-checkbox {
          font-size: 12px;
          line-height: 18px;
}
}
.n-c-curator-page-form-popup__checkbox .v-checkbox__box {
      margin-top: 2px;
}
.n-c-curator-page-form-popup__submit {
    width: 100%;
    height: 80px;
    font-size: 22px;
    line-height: 26px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__submit {
        height: 56px;
        font-size: 16px;
        line-height: 19px;
}
}
.n-c-curator-page-form-popup__result {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: white;
    font-size: 20px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup__result {
        background-color: #f9f9f9;
        font-size: 18px;
}
}
.n-c-curator-page-form-popup__inputs {
    margin-bottom: 24px;
}
.n-c-curator-page-form-popup .v-input__error {
    bottom: -15px;
}
.n-c-curator-page-form-popup .v-input__placeholder {
    font-size: 16px;
    line-height: 26px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup .v-input__placeholder {
        font-size: 14px;
        line-height: 15px;
}
}
@media only screen and (max-width: 750px) {
.n-c-curator-page-form-popup .v-input__label {
      -webkit-transform: translateY(-38px) !important;
              transform: translateY(-38px) !important;
}
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-curator-gallery {
  width: 600px;
  height: 372px;
  background-color: #f2f2f2;
  cursor: pointer;
}
@media only screen and (max-width: 750px) {
.n-c-curator-gallery {
      width: 100%;
      height: 240px;
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      margin-bottom: 44px;
}
}
.n-c-curator-gallery._mb-dots {
    margin-bottom: 78px;
}
.n-c-curator-gallery__slider {
    width: 100%;
    height: 100%;
    position: relative;
}
.n-c-curator-gallery__slider__images-area {
      position: absolute;
      top: 0;
      z-index: 1;
      width: 50%;
      height: 100%;
      cursor: none;
}
@media only screen and (max-width: 750px) {
.n-c-curator-gallery__slider__images-area {
          display: none;
}
}
.n-c-curator-gallery__slider__images-area._left {
        left: 0;
}
.n-c-curator-gallery__slider__images-area._right {
        right: 0;
}
.n-c-curator-gallery__slide {
    background-size: cover;
    background-repeat: no-repeat;
}
.n-c-curator-gallery__arrow-prev {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.n-c-curator-gallery__arrow-prev:hover {
      -webkit-transform: translate(-8px, -50%);
              transform: translate(-8px, -50%);
}
.n-c-curator-gallery__arrow-next {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.n-c-curator-gallery__arrow-next:hover {
      -webkit-transform: translate(8px, -50%) scale(-1, 1);
              transform: translate(8px, -50%) scale(-1, 1);
}
.n-c-curator-gallery__cont {
    display: none;
}
@media only screen and (max-width: 750px) {
.n-c-curator-gallery__cont {
        margin-top: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
}
@media only screen and (max-width: 750px) {
.n-c-curator-gallery__dots {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
}
@media only screen and (max-width: 750px) {
.n-c-curator-gallery .swiper-pagination-bullet {
      margin-right: 10px;
      background: #3d4359;
      width: 5px;
      height: 5px;
}
}
@media only screen and (max-width: 750px) {
.n-c-curator-gallery .swiper-pagination-bullet.swiper-pagination-bullet-active {
      width: 8px;
      height: 8px;
}
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-curator-popup {
  width: 1072px;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 0;
      font-size: 14px;
      line-height: 20px;
}
}
.n-c-curator-popup-gallery {
    width: 456px;
    height: 576px;
    margin-right: 40px;
    position: relative;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup-gallery {
        width: 100%;
        height: 360px;
        margin-bottom: 50px !important;
}
}
.n-c-curator-popup-gallery .n-c-curator-gallery__cont {
      position: absolute;
      z-index: 5;
      bottom: 24px;
      left: 50%;
      display: block;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup-gallery .n-c-curator-gallery__cont {
          position: static;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
}
}
.n-c-curator-popup-gallery .n-c-curator-gallery__cont .swiper-pagination-bullet {
        background: #fff;
        margin-right: 8px;
        width: 5px;
        height: 5px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup-gallery .n-c-curator-gallery__cont .swiper-pagination-bullet {
            background: #3d4359;
}
}
.n-c-curator-popup-gallery .n-c-curator-gallery__cont .swiper-pagination-bullet.swiper-pagination-bullet-active {
          width: 8px;
          height: 8px;
}
.n-c-curator-popup-gallery .n-c-curator-gallery__dots {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.n-c-curator-popup-gallery .swiper-button-next {
      background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAzMiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjQ0NTMgMjMuMTExMUwxOC44NTY0IDIxLjU2MzNMMjcuMjc4NiAxMy4xMTExTDAuNDQ1MzE0IDEzLjExMTFMMC40NDUzMTUgMTAuODg4OUwyNy4yNzg2IDEwLjg4ODlMMTguODU2NCAyLjQ3NDQyTDIwLjQ0NTMgMC44ODg4NjZMMzEuNTU2NCAxMkwyMC40NDUzIDIzLjExMTFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
}
.n-c-curator-popup-gallery .swiper-button-next:hover {
        -webkit-transform: translate(8px, -50%);
                transform: translate(8px, -50%);
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup-gallery .swiper-button-next {
          display: none;
}
}
.n-c-curator-popup-gallery .swiper-button-prev {
      background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAzMiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjQ0NTMgMjMuMTExMUwxOC44NTY0IDIxLjU2MzNMMjcuMjc4NiAxMy4xMTExTDAuNDQ1MzE0IDEzLjExMTFMMC40NDUzMTUgMTAuODg4OUwyNy4yNzg2IDEwLjg4ODlMMTguODU2NCAyLjQ3NDQyTDIwLjQ0NTMgMC44ODg4NjZMMzEuNTU2NCAxMkwyMC40NDUzIDIzLjExMTFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
      -webkit-transform: translateY(-50%) scale(-1, 1);
              transform: translateY(-50%) scale(-1, 1);
}
.n-c-curator-popup-gallery .swiper-button-prev:hover {
        -webkit-transform: translate(-8px, -50%) scale(-1, 1);
                transform: translate(-8px, -50%) scale(-1, 1);
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup-gallery .swiper-button-prev {
          display: none;
}
}
.n-c-curator-popup-slider__switcher {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
    will-change: transform;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup-slider__switcher {
        display: none;
}
}
.n-c-curator-popup-slider__switcher-btn {
    width: 40px;
    height: 40px;
    -webkit-transform: scale(0) translate3d(-50%, -50%, 0);
            transform: scale(0) translate3d(-50%, -50%, 0);
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup-slider__switcher-btn {
        display: none;
}
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup__content {
      padding: 0 20px 40px;
}
}
.n-c-curator-popup__content-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #14191a;
    margin-bottom: 4px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup__content-title {
        font-size: 18px;
        line-height: 24px;
}
}
.n-c-curator-popup__content-subtitle {
    color: #767e8b;
    margin-bottom: 24px;
}
.n-c-curator-popup__content-experience-title {
    color: #767e8b;
    margin-bottom: 8px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup__content-experience-title {
        line-height: 24px;
        margin-bottom: 4px;
        color: #a1a3a3;
}
}
.n-c-curator-popup__content-experience-subtitle {
    color: #3b4657;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f2f2f2;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup__content-experience-subtitle {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 24px;
}
}
.n-c-curator-popup__content-direction-title {
    color: #767e8b;
    margin-bottom: 8px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup__content-direction-title {
        line-height: 24px;
        margin-bottom: 4px;
        color: #a1a3a3;
}
}
.n-c-curator-popup__content-direction-subtitle {
    color: #3b4657;
    margin-bottom: 24px;
}
.n-c-curator-popup__content-social {
    margin-bottom: 32px;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup__content-social {
        margin-bottom: 24px;
}
}
.n-c-curator-popup__content-extend {
    color: #4f5969;
    padding-top: 32px;
    border-top: 1px solid #f2f2f2;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup__content-extend {
        color: #14191a;
        margin-bottom: 24px;
}
}
.n-c-curator-popup__content-close {
    display: none;
}
@media only screen and (max-width: 750px) {
.n-c-curator-popup__content-close {
        width: 100%;
        height: 40px;
        border: 1px solid #d8dade;
        cursor: pointer;
        display: block;
        text-align: center;
        padding: 8px;
}
}

@charset "UTF-8";
/*stylelint-disable*/
/* shadows */
/* Transitions */
/* Breakpoints */
/* На данном этапе участвуют только в respond-to-min */
/* Sizes */
/* Z-indexes */
/*stylelint-enable*/
/*stylelint-disable*/
/* For respond-to */
/* End respond-to */
/*stylelint-enable*/
/*stylelint-disable*/
/* Animations */
/*stylelint-enable*/
.n-c-partners-page__block {
  padding-top: 72px;
}
@media only screen and (max-width: 750px) {
.n-c-partners-page__block {
      padding-top: 40px;
}
}
.n-c-partners-page__block-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 48px;
}
@media only screen and (max-width: 750px) {
.n-c-partners-page__block-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 34px;
}
}
.n-c-partners-page__form {
  margin-top: 100px;
  margin-bottom: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 750px) {
.n-c-partners-page__form {
      margin-bottom: 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-top: 44px;
}
}
.n-c-partners-page__form-image {
    width: auto;
    height: 664px;
}
@media only screen and (max-width: 750px) {
.n-c-partners-page__form-image {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        height: 216px;
        margin-bottom: 32px;
}
}
.n-c-partners-page__form-image > img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
}
@media only screen and (max-width: 750px) {
.n-c-partners-page .close-button {
    color: white;
}
}
@media only screen and (max-width: 750px) {
.n-c-partners-page .close-button span {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KPHRpdGxlPkdyb3VwIDQ8L3RpdGxlPgo8ZGVzYz5DcmVhdGVkIHVzaW5nIEZpZ21hPC9kZXNjPgo8ZyBpZD0iQ2FudmFzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTIyMzkgLTEyNTEpIj4KPGcgaWQ9Ikdyb3VwIDQiPgo8ZyBpZD0iVmVjdG9yIDI4Ij4KPHVzZSB4bGluazpocmVmPSIjcGF0aDBfc3Ryb2tlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjI0MCAxMjUyKSIgZmlsbD0iI0ZGRkZGRiIvPgo8L2c+CjxnIGlkPSJWZWN0b3IgMjguMSI+Cjx1c2UgeGxpbms6aHJlZj0iI3BhdGgwX3N0cm9rZSIgdHJhbnNmb3JtPSJtYXRyaXgoNi4xMjMyM2UtMTcgMSAtMSA2LjEyMzIzZS0xNyAxMjI2MS41IDEyNTIpIiBmaWxsPSIjRkZGRkZGIi8+CjwvZz4KPC9nPgo8L2c+CjxkZWZzPgo8cGF0aCBpZD0icGF0aDBfc3Ryb2tlIiBkPSJNIC0wLjM1MzU1MyAwLjM1MzU1M0wgMjEuMTQ2NCAyMS44NTM2TCAyMS44NTM2IDIxLjE0NjRMIDAuMzUzNTUzIC0wLjM1MzU1M0wgLTAuMzUzNTUzIDAuMzUzNTUzWiIvPgo8L2RlZnM+Cjwvc3ZnPgo=) center no-repeat;
}
}

