/*===========================================================================*/
html, body {
    width: 100%;
    height: 100%;
}
img {
    max-width: 100%;
    height: auto;
}

.btn--default {
    font: inherit;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

:where(.svg-icon) {
    max-width: 100%;
    fill: currentColor;
    stroke: currentColor;
    transition: all .2s ease-in-out 0s;
}
:where(a .svg-icon) {
    transition: none;
}
:where(.svg-icon) * {
    pointer-events: none;
}
/*---------------------------------------------------------------------------*/
.auth-page {
    background: url("/images/auth-page-bg.png") center center / 100% 100% no-repeat;
}
/*---------------------------------------------------------------------------*/
.header__callback-btn._mobile-only .btn__icon {
    width: 36px;
    height: 36px;
}

.header__lk {
    min-width: 1px;
    padding: 0 5px;
    display: none;
    flex: 1 1 auto;
}
.header__lk .btn {
    font-size: 14px;
    line-height: calc(16 / 14);
    width: 86px;
    padding: 8px 15px;
    border-radius: 5px;
    background: #F1EFF8;
    color: #9055A4;
}
.header__office {}

@media (min-width: 450px) {
    .header__logo {
        max-width: none;
    }

    .header__callback-btn._mobile-only .btn__icon {
        width: 50px;
        height: 50px;
    }

    .header__lk {
        display: block;
    }
}
@media (min-width: 576px) {
    .header__lk {
        padding: 0 5px;
    }
    .header__lk .btn {
        font-size: 20px;
        font-weight: 600;
        line-height: calc(27 / 20);
        width: auto;
        padding: 10px 20px;
    }
}
@media (min-width: 992px) {
    .header__office {
        margin-left: 19px;
    }
}
/*---------------------------------------------------------------------------*/
.header-office {}
.header-office__trigger {
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    display: flex;
    gap: 10px;
    color: inherit;
    cursor: pointer;
    --secret-data-color: var(--header-theme-color, var(--black));
}
.header-office__trigger-icon {
    align-self: center;
    flex: 0 0 auto;
    fill: #9055A4;
}
.header-office__trigger-text {}
.header-office__trigger-arrow {
    align-self: center;
    flex: 0 0 auto;
    stroke: #9055A4;
}
.header-office__list {
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    visibility: hidden;
    transform: translateY(-10px);
    transition: visibility 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    z-index: 1;
}
.phones-menu-open .header-office__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-office__item {
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border-top: 1px solid #E8E8E8;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    color: #000;
}
.header-office__item span {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #9A9A9A;
}

@media (min-width: 992px) {

    .logo img {
        height: 50px;
    }

    .header-office {
        position: relative;
        padding: 16px 0;
    }
    .header-office__trigger {
        gap: 16px;
    }
    .header-office:hover > .header-office__list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .header-office__list {
        top: 100%;
        left: auto;
        right: 0;
        width: auto;
        padding: 15px;
        border-radius: 5px;
        background: #F1EFF8;
        gap: 10px;
        z-index: auto;
    }
    .header-office__item {
        font-size: 14px;
        font-weight: normal;
        line-height: calc(19 / 14);
        padding: 0;
        border-top: none;
        color: #333333;
    }
    .header-office__item:hover {
        color: #9055A4;
    }
}
/*===========================================================================*/
/*---------------------------------------------------------------------------*/
.page-hero {}
.page-hero--mb {
    margin-bottom: 20px;
}
.page-hero__back {
    font-size: 13px;
    line-height: calc(18 / 13);
    margin-bottom: 10px;
}
.page-hero__back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.page-hero__back-link .svg-icon {
    flex: 0 0 auto;
    color: #9A9A9A;
}
.page-hero__heading--custom {
    font-size: 30px;
    line-height: calc(42 / 30);
    margin-top: 10px;
}

@media (min-width: 768px) {
    .page-hero--mb {
        margin-bottom: 30px;
    }
    .page-hero__back {
        margin-bottom: 15px;
    }
    .page-hero__heading--custom {
        margin-top: 15px;
    }
}
/*---------------------------------------------------------------------------*/
.search-box {}
.search-box__form {}
.search-box__inner {
    display: grid;
    grid-template-columns: auto 1fr;
}
.search-box__input {
    font-size: 14px;
    line-height: calc(19 / 14);
    height: 40px;
    padding: 10px 20px 10px 46px;
    border: none;
    border-radius: 5px;
    background: #F1EFF8;
    grid-area: 1 / 1 / 2 / 3;
}
.search-box__input::-webkit-input-placeholder {
    opacity: 1;
    color: #9055A4;
}
.search-box__input::-moz-placeholder {
    opacity: 1;
    color: #9055A4;
}
.search-box__input:-ms-input-placeholder {
    opacity: 1;
    color: #9055A4;
}
.search-box__input::placeholder {
    opacity: 1;
    color: #9055A4;
}
.search-box__send {
    width: 42px;
    padding: 0 5px 0 19px;
    margin: 0;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: 1 / 1 / 2 / 2;
    color: #9055A4;
    cursor: pointer;
}
.search-box__send .svg-icon {
    flex: 0 0 auto;
}
/*---------------------------------------------------------------------------*/
.pagination-box {
    font-size: 14px;
    line-height: calc(19 / 14);
    display: flex;
    align-items: center;
    gap: 25px;
}
.pagination-box__prev {
    flex: 0 0 auto;
}
.pagination-box__next {
    flex: 0 0 auto;
}
.pagination-box__list {
    font-weight: 600;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 11px;
}
.pagination-box__item {
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
}
:where(.pagination-box__list:has(> .pagination-box__item--dot)) .pagination-box__item:where(:nth-child(n + 3):has(~ .pagination-box__item--dot)) {
    display: none;
}
:where(.pagination-box__list:not(:has(> .pagination-box__item--dot))) .pagination-box__item:where(:nth-child(n + 3):not(:last-child)) {
    display: none;
}
.pagination-box__link {
    min-width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 5px;
    background: #F1EFF8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #9055A4;
}
.pagination-box__link:hover, .pagination-box__item.current .pagination-box__link {
    background: #9055A4;
    color: #fff;
}

@media (min-width: 576px) {
    .pagination-box__item {
        display: block;
    }
}
/*---------------------------------------------------------------------------*/
.btn-attachment--custom {
    border: 1px dashed #9055A4;
    color: #333;
}
.btn-attachment--custom .btn-attachment__label {
    font-size: 14px;
    font-weight: normal;
    line-height: calc(20 / 14);
    padding: 18px 19px;
    flex-direction: column;
}
.btn-attachment--custom .btn-attachment__label-head {
    margin-bottom: 10px;
    text-align: center;
}
.btn-attachment--custom .btn-attachment__label-title {
    font-size: 16px;
    font-weight: 600;
    line-height: calc(22 / 16);
    margin-bottom: 10px;
}
.btn-attachment--custom .btn-attachment__label-image {
    display: flex;
    justify-content: center;
}
.btn-attachment--custom .btn-attachment__label-text {
    border: none;
    text-align: center;
}
.btn-attachment--custom .btn-attachment__label-descr {
    font-weight: 600;
    margin-bottom: 5px;
}
.btn-attachment--custom .btn-attachment__label-descr .link {
    color: #9055A4;
}
.btn-attachment--custom .btn-attachment__label-size {}
/*---------------------------------------------------------------------------*/
.ticket-menu {
    font-size: 16px;
    font-weight: 600;
    line-height: calc(22 / 16);
    margin-bottom: 20px;
    overflow: hidden;
    overflow-x: auto;
    color: #9A9A9A;
}
.ticket-menu__list {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}
.ticket-menu__list:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #D5CDED;
    pointer-events: none;
}
.ticket-menu__item {
    position: relative;
    padding: 0 0 13px 0;
    margin: 0;
}
.ticket-menu__item.current {
    color: #000;
    --_menu-line-d: block;
}
.ticket-menu__link {
    text-decoration: none;
    color: inherit;
}
.ticket-menu__link:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #9055A4;
    display: var(--_menu-line-d, none);
    pointer-events: none;
}
.ticket-menu__link:hover {
    color: #000;
    --_menu-line-d: block;
}
.ticket-menu__link:hover:before {
    content: '';
}

@media (min-width: 768px) {
    .ticket-menu {
        margin-bottom: 30px;
    }
    .ticket-menu__list {
        gap: 30px;
    }
}
/*---------------------------------------------------------------------------*/
.ticket-create {}
.ticket-create__form {}
.ticket-create__inner {
    display: grid;
    gap: 20px;
}
.ticket-create__body {
    min-width: 1px;
    display: grid;
    gap: 20px;
}
.ticket-create__descr {
    max-width: 650px;
    padding: 20px 20px 20px 20px;
    border-left: 2px solid #9055A4;
    background: #F1EFF8;
    color: #333;
}
.ticket-create__descr > *:last-child {
    margin-bottom: 0;
}
.ticket-create__field {
    max-width: 650px;
}
.ticket-create__field-title {
    font-size: 16px;
    line-height: calc(24 / 16);
    margin-bottom: 5px;
    color: #333;
}
.ticket-create__textarea {
    width: 100%;
    padding: 11px 19px;
    border: 1px solid #D5CDED;
    border-radius: 5px;
    resize: vertical;
}
.ticket-create__textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.ticket-create__textarea::-moz-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.ticket-create__textarea:-ms-input-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.ticket-create__textarea::placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.ticket-create__buttons {
    min-width: 1px;
}
.ticket-create__buttons .btn {
    width: 100%;
    min-width: 260px;
}

.ticket-create-type {
    display: grid;
    gap: 10px 20px;
}
.ticket-create-type > * {
    max-width: 320px;
    flex: 1 1 auto;
}
.ticket-type-check {
    position: relative;
    font-size: 14px;
    line-height: calc(19 / 14);
    padding: 10px 20px;
    box-shadow: 0 0 0 1px #D5CDED inset;
    border-radius: 5px;
    display: inline-grid;
    gap: 5px;
    color: #9A9A9A;
    cursor: pointer;
}
.ticket-type-check:where(:has(:checked)) {
    color: #9055A4;
}
.ticket-type-check:before {
    position: absolute;
    inset: 0;
    border: 2px solid #9055A4;
    border-radius: inherit;
    pointer-events: none;
}
.ticket-type-check:where(:has(:checked)):before {
    content: '';
}
.ticket-type-check__input {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}
.ticket-type-check__title {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: calc(22 / 16);
    min-width: 1px;
    color: #000;
}
.ticket-type-check__info {
    position: relative;
    min-width: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ticket-type-check__info-icon {
    flex: 0 0 auto;
    fill: currentColor;
    stroke: currentColor;
}
.ticket-type-check__info-title {}

@media (min-width: 576px) {
    .ticket-create-type {
        grid-template-columns: repeat(2, 1fr);
    }
    .ticket-create-type > * {
        max-width: none;
        flex: 1 1 auto;
    }
}
@media (min-width: 768px) {
    .ticket-create__inner {
        gap: 30px;
    }
    .ticket-create__body {
        gap: 30px;
    }
    .ticket-create__buttons .btn {
        width: auto;
    }

    .ticket-type-check {
        font-size: 16px;
        line-height: calc(22 / 16);
        padding: 15px 20px;
        gap: 10px;
    }
    .ticket-type-check__title {
        font-size: 20px;
        line-height: calc(27 / 20);
    }
}
@media (min-width: 992px) {
    .ticket-create-type {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1200px) {
    .ticket-create-type {
        display: flex;
    }
    .ticket-create-type > * {
        max-width: 320px;
    }
}
/*---------------------------------------------------------------------------*/
.ticket-status {
    position: relative;
    font-size: 13px;
    line-height: calc(18 / 13);
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
}
.ticket-status:before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    transform: translateY(-50%);
}
.ticket-status[class*='ticket-status--'] {
    padding-left: 15px;
}
.ticket-status--work:before {
    content: '';
    background: #70CF98;
}
.ticket-status--answer:before {
    content: '';
    background: #61A8DE;
}
.ticket-status--consideration:before {
    content: '';
    background: #FF8800;
}
.ticket-status--close:before {
    content: '';
    background: #9A9A9A;
}

.ticket-block {
    margin-bottom: 30px;
}
.ticket-block:last-child {
    margin-bottom: 0px;
}
.ticket-block__search {
    margin-bottom: 20px;
}
.ticket-block__title {
    font-size: 24px;
    font-weight: 600;
    line-height: calc(32 / 24);
    margin-bottom: 20px;
}
.ticket-block__nav {
    margin-top: 20px;
}

.ticket-table, table.ticket-table {
    border: none;
    display: block;
}
.ticket-table__row {
    padding: 20px 0;
    border: none;
    border-top: 1px solid #F1EFF8;
    display: flex;
    gap: 14px;
}
.ticket-table .ticket-table__cell {
    padding: 0;
    border: none;
    display: block;
    vertical-align: top;
}
.ticket-table .ticket-table__cell--image {
    width: 48px;
    flex: 0 0 auto;
}
.ticket-table .ticket-table__cell--cont {
    min-width: 1px;
    flex: 1 1 auto;
}
.ticket-table .ticket-table__cell--status {
    display: none;
    text-align: right;
}

.ticket-item {
    font-size: 14px;
    line-height: calc(19 / 14);
}
.ticket-item__image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F1EFF8;
    overflow: hidden;
}
.ticket-item__image img {
    max-width: 100%;
    max-height: 100%;
}
.ticket-item__title {
    font-size: 16px;
    font-weight: 600;
    line-height: calc(22 / 16);
    margin-bottom: 5px;
}
.ticket-item__link {
    text-decoration: none;
    color: inherit;
}
.ticket-item__link:hover {
    color: #9055A4;
}
.ticket-item__status {
    margin-bottom: 5px;
}
.ticket-item__cont {
    display: flex;
    align-items: baseline;
    gap: 0;
    min-width: 0;
}
.ticket-item__date {
    flex: 0 0 auto;
    white-space: nowrap;
}
.ticket-item__date:not(:last-child):after {
    content: ' • ';
}
.ticket-item__descr {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 576px) {}
@media (min-width: 768px) {
    .ticket-table, table.ticket-table {
        width: 100%;
        border: none;
        display: table;
    }
    .ticket-table__row {
        padding: 20px 0 20px 14px;
        display: table-row;
    }
    .ticket-table .ticket-table__cell {
        padding: inherit;
        border: inherit;
        display: table-cell;
    }
    .ticket-table .ticket-table__cell:first-child {
        padding-left: 0;
    }
    .ticket-table .ticket-table__cell--status {
        vertical-align: middle;
    }

    .ticket-item__cont {}
    .ticket-item__status {
        display: none;
    }
}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}
/*---------------------------------------------------------------------------*/
.ticket-detail-head {
    font-size: 14px;
    line-height: calc(19 / 14);
    display: flex;
    gap: 20px;
}
.page-hero .ticket-detail-head {
    margin-top: 10px;
}
.ticket-detail-head__title {
    color: #333;
}
.ticket-detail-head__status {}
.ticket-detail-head__status .ticket-status {
    font: inherit;
}

.ticket-detail {
    max-width: 600px;
}

@media (min-width: 768px) {
    .page-hero .ticket-detail-head {
        margin-top: 15px;
    }
}
/*---------------------------------------------------------------------------*/
.comment-form {
    position: relative;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #D5CDED;
    border-radius: 5px;
}
.comment-form__outer {}
.comment-form__inner {}
.comment-form__textarea {
    width: 100%;
    height: 150px;
    padding: 0;
    border: none;
    resize: vertical;
}
.comment-form__textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.comment-form__textarea::-moz-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.comment-form__textarea:-ms-input-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.comment-form__textarea::placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.comment-form__foot {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.comment-form__send {
    font-size: 14px;
    font-weight: 600;
    line-height: calc(20 / 14);
    padding: 8px 11px;
    flex: 0 0 auto;
}
.comment-form__action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-action-btn {
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: calc(24 / 14);
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #9A9A9A;
    cursor: pointer;
}
.comment-action-btn--icon {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background: #D5CDED;
    color: #9055A4;
}
.comment-action-btn .svg-icon {
    flex: 0 0 auto;
}

.comments-block {}
.comments-block__list {}
.comments-block__item {
    padding-top: 25px;
    padding-bottom: 24px;
    /*border-bottom: 1px solid #F1EFF8;*/
    border-bottom: 1px solid #D5CDED;
}

.comment-item {
    display: grid;
    gap: 15px;
}
.comment-item > * {
    min-width: 1px;
}
.comment-item__head {
    font-size: 14px;
    line-height: calc(19 / 14);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}
.comment-item__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-self: flex-start;
    overflow: hidden;
    flex: 0 0 auto;
}
.comment-item__head-inner {
    min-width: 1px;
    display: grid;
    gap: 5px;
    flex: 1 1 auto;
}
.comment-item__head-inner > * {
    min-width: 1px;
}
.comment-item__author {
    font-size: 16px;
    font-weight: 600;
    line-height: calc(22 / 16);
}
.comment-item__date {}
.comment-item__body {
    font-size: 16px;
    line-height: calc(24 / 16);
}
.comment-item__files {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (min-width: 768px) {
    .comment-form {
        padding: 19px;
        margin-bottom: 30px;
    }
    .comment-form__textarea {
        height: 134px;
    }
    .comment-form__foot {
        margin-top: 20px;
        gap: 30px;
    }
    .comment-form__send {
        min-width: 120px;
    }
}
/*---------------------------------------------------------------------------*/
.upload-file-item {
    font-size: 14px;
    line-height: calc(19 / 14);
    width: 105px;
    display: grid;
    gap: 5px;
}
.upload-file-item > * {
    min-width: 1px;
}
.upload-file-item__title {
    color: #333333;
}
.upload-file-item__image {
    position: relative;
    display: flex;
}
.upload-file-item__image img {
    border-radius: 5px;
    flex: 0 0 auto;
}
.upload-file-item__remove {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    display: flex;
    transform: translate(-50%, -50%);
    color: #fff;
}
.upload-file-item__remove .svg-icon {
    flex: 0 0 auto;
}
.upload-file-item__head {
    display: flex;
    gap: 11px;
}
.upload-file-item__title {
    min-width: 1px;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}
.upload-file-item__size {
    flex: 0 0 auto;
    color: #9A9A9A;
}
/*---------------------------------------------------------------------------*/
.pass-field {
    display: grid;
    grid-template-columns: 1fr auto;
}
.pass-field__input {
    padding-right: 46px;
    grid-area: 1 / 1 / 2 / 3;
}
.pass-field__btn {
    padding: 0 13px;
    margin: 0;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: 1 / 2 / 2 / 3;
    color: #9A9A9A;
    cursor: pointer;
}
/*---------------------------------------------------------------------------*/
.support-confirm {
    font-size: 14px;
    line-height: calc(19 / 14);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #F1EFF8;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.support-confirm__inner {}
.support-confirm__title {
    font-size: 16px;
    font-weight: 600;
    line-height: calc(20 / 16);
}
.support-confirm__descr {}
.support-confirm__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}
.support-confirm__cansel {
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: calc(19 / 14);
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    color: #9055A4;
    cursor: pointer;
}
.support-confirm__ok {
    font-size: 14px;
    font-weight: 600;
    line-height: calc(20 / 14);
    padding: 8px 15px;
}

@media (min-width: 768px) {
    .support-confirm {
        margin-bottom: 30px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
/*---------------------------------------------------------------------------*/
.top-banner {
    max-width: 100%;
}
/*---------------------------------------------------------------------------*/
.blog-front {
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
    display: flex;
    flex-direction: column;
    gap: 25px;

    --section-gap: 50px;
    --_blog-col: 1;
    --_blog-gap: 30px;
}
.blog-front__title {
    min-width: 1px;
}
.blog-front__body {
    min-width: 1px;
}
.blog-front__body.swiper-initialized {
    overflow: hidden;
}
.blog-front__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: var(--_blog-gap);
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}
.blog-front__body.swiper-initialized .blog-front__list {
    overflow: visible;
}
.blog-front__item {
    padding: 0;
    margin: 0;
    display: flex;
    flex: 0 0 var(--_blog-item-width);
    scroll-snap-align: start;

    --_blog-item-width: calc( (100% - (var(--blog-gap, var(--_blog-gap)) * (var(--blog-col, var(--_blog-col)) - 1))) / var(--blog-col, var(--_blog-col)));
}
.blog-front__body.swiper-initialized .blog-front__item {
    margin-right: 0 !important;
}
@supports (scrollbar-width: auto) and (not (selector(::-webkit-scrollbar))) {
    .blog-front__list {
        scrollbar-width: var(--scroll-size-val, thin);
        scrollbar-color: var(--scroll-thumb-color, #9055A4) var(--scroll-track-color, transparent);
    }
}
.blog-front__list::-webkit-scrollbar {
    width: var(--scroll-size, 5px);
    height: var(--scroll-size, 5px);
}
.blog-front__list::-webkit-scrollbar-track {
    border-radius: var(--scroll-track-radius, 0px);
    background: var(--scroll-track-color, transparent);
}
.blog-front__list::-webkit-scrollbar-thumb {
    border: var(--scroll-thumb-border, none);
    border-radius: var(--scroll-thumb-radius, 0px);
    background: var(--scroll-thumb-color, #9055A4);
    background-clip: content-box;
}
.blog-front__navs {
    margin-top: 30px;
}

.blog-front-item {
    position: relative;
    min-width: 1px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.blog-front-item__image {
    display: flex;
    flex: 0 0 auto;
}
.blog-front-item__image img {
    margin: auto;
}
.blog-front-item__inner {
    flex: 1 1 auto;
}
.blog-front-item__title {
    font-size: 24px;
    font-weight: 600;
    line-height: calc(32 / 24);
    margin: 0 0 10px 0;
}
.blog-front-item__link {
    text-decoration: none;
    color: inherit;
}
.blog-front-item__date {
    font-size: 16px;
    line-height: calc(28 / 16);
}
.blog-front-item__buttons {
    padding-top: 30px;
    margin-top: auto;
}
.blog-front-item__button {}

@media (min-width: 768px) {
    .blog-front {
        --_blog-col: 2;
    }
}
@media (min-width: 992px) {
    .blog-front {
        gap: 40px;
        --section-gap: 85px;
        --_blog-col: 3;
    }
}
/*---------------------------------------------------------------------------*/
.ticket-form-field {}
.ticket-form-field__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.ticket-form-field__title {
    font-size: 14px;
    line-height: calc(19 / 14);
    margin-bottom: 8px;
}
.ticket-form-field__head .btn--default {
    font-size: 14px;
    font-weight: 700;
    line-height: calc(19 / 14);
    color: #9055A4;
}
.ticket-form-field__input {
    font-size: 14px;
    line-height: calc(20 / 14);
    width: 100%;
    padding: 11px 14px;
    border-radius: 5px;
    border: 1px solid #D5CDED;
}
.ticket-form-field__input::-webkit-input-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.ticket-form-field__input::-moz-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.ticket-form-field__input:-ms-input-placeholder {
    opacity: 1;
    color: #9A9A9A;
}
.ticket-form-field__input::placeholder {
    opacity: 1;
    color: #9A9A9A;
}
/*---------------------------------------------------------------------------*/
.ticket-lk-form {
    max-width: 375px;
}
.ticket-lk-form__group {
    margin-bottom: 20px;
}
.ticket-lk-form__group-title {
    font-size: 24px;
    font-weight: 600;
    line-height: calc(32 / 24);
    margin: 0 0 20px 0;
}
.ticket-lk-form__inner {
    display: grid;
    gap: 15px;
}
.ticket-lk-form__inner > * {
    min-width: 1px;
}
.ticket-lk-form__field {}
.ticket-lk-form__files {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ticket-lk-form__files:first-child {
    margin-top: 0px;
}
.ticket-lk-form__foot {
    margin-top: 30px;
}
.ticket-lk-form__foot .btn {
    width: 100%;
}
/*---------------------------------------------------------------------------*/
.ticket-auth {
    width: 375px;
    padding-top: 26px;
    margin: auto;
    color: #000;
}
.ticket-auth__head {
    margin-bottom: 24px;
}
.ticket-auth__head-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 24px auto;
    border-radius: 50%;
    background: #9055A4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.ticket-auth__head-icon .svg-icon {
    flex: 0 0 auto;
}
.ticket-auth__title {
    font-size: 30px;
    font-weight: 700;
    line-height: calc(42 / 30);
    text-align: center;
}
.ticket-auth__body {}
/*---------------------------------------------------------------------------*/
.ticket-auth-form {
    font-size: 14px;
    line-height: calc(19 / 14);
}
.ticket-auth-form__inner {
    display: grid;
    gap: 24px;
}
.ticket-auth-form__inner > * {
    min-width: 1px;
}
.ticket-auth-form__policy {
    text-align: center;
    color: #333333;
}
.ticket-auth-form__policy a {
    text-decoration: underline;
    color: inherit;
}
.ticket-auth-form__policy a:hover {
    text-decoration: none;
}
.ticket-auth-form__buttons {
    margin-top: 24px;
    text-align: center;
}
.ticket-auth-form__buttons .btn {
    width: 100%;
}
.ticket-auth-form__help {
    font-weight: 600;
    width: 100%;
    margin-top: 24px;
}
.ticket-auth-form__help a {
    text-decoration: none;
    color: #9055A4;
}
.ticket-auth-form__help a:hover {
    text-decoration: underline;
}
/*---------------------------------------------------------------------------*/
.ticket-reg-form {
    font-size: 14px;
    line-height: calc(19 / 14);
}
.ticket-reg-form__inner {
    display: grid;
    gap: 12px;
}
.ticket-reg-form__inner > * {
    min-width: 1px;
}
.ticket-reg-form__policy {
    text-align: center;
    color: #333333;
}
.ticket-reg-form__policy a {
    text-decoration: underline;
    color: inherit;
}
.ticket-reg-form__policy a:hover {
    text-decoration: none;
}
.ticket-reg-form__buttons {
    margin-top: 24px;
    text-align: center;
}
.ticket-reg-form__buttons .btn {
    width: 100%;
}
.ticket-reg-form__help {
    font-weight: 600;
    width: 100%;
    margin-top: 24px;
}
.ticket-reg-form__help a {
    text-decoration: none;
    color: #9055A4;
}
.ticket-reg-form__help a:hover {
    text-decoration: underline;
}
/*---------------------------------------------------------------------------*/
.service-prices-blocks .price-block__title {}

.service-prices-blocks .price-block__title--default {
    padding: 15px 25px 0 25px;
    background: none;
    justify-content: flex-start;
    color: inherit;
}

@media (max-width: 768px) {
    .service-prices-blocks .price-block__title--default {
        padding: 15px 25px 0 20px;
    }
}
