

/* Start:/local/components/ag-group/communications/templates/modal-lawyer-form/style.css?17694497514803*/
/*.chat-container {*/
/*    width: 100%;*/
/*    height: 800px;*/
/*}*/


.lessen__body.comms-buttons
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
}

.estimation__like.modal--js.hidden,
.claim_modal.modal--js.hidden
{
    display: none!important;
}

.bx-livechat-wrapper .bx-livechat-title
{
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
}

.estimation__like.modal--js
{
    display: block;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
}

.claim_modal.modal--js
{
    display: block;
    cursor: pointer;
}

.estimation__like.modal--js .modal-review-text
{
    margin-right: 5px;
    color: white;
}

.modal.active
{
    z-index: 999999999999999999;
}

.b24-widget-button-wrapper
{
    bottom: 10px!important;
}

.b24-form-btn-block .b24-form-btn
{
    background-color: rgb(0, 174, 239) !important;
    color: white!important;
    text-align: center!important;
}

.b24-widget-button-social-tooltip
{
    opacity: 1!important;
    left: 60px!important;
}

.bx-im-dialog-list.bx-im-dialog-list-scroll-blocked.bx-im-dialog-mobile
{
    overflow-y: auto!important;
}

.b24-form-custom-loader-wrapp
{
    display: flex;
    position: absolute;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999999999999999999;
    background: grey;
    opacity: 0.5;
}

.b24-form-custom-loader
{
    display: flex;
    border: 16px solid #f3f3f3; /* Светло-серый цвет обводки */
    border-top: 16px solid #3498db; /* Синий цвет верхней обводки */
    border-radius: 50%; /* Закругляем края для создания круга */
    width: 120px; /* Ширина элемента */
    height: 120px; /* Высота элемента */
    animation: spin 2s linear infinite; /* Применяем анимацию вращения */
}

.b24-form-custom-loader-wrapp.hidden
{
    display: none!important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }   /* Начальное положение */
    100% { transform: rotate(360deg); } /* Конечное положение (полный оборот) */
}

.b24-window-close
{
    background: rgb(0, 174, 239) !important;
}

.b24-widget-button-wrapper.b24-widget-button-position-bottom-middle
{
    display: none;
}

/*.bx-livechat-mobile.bx-livechat-wrapper, .b24-widget-button-shadow*/
/*{*/
/*    width: 90%;*/
/*    height: 90%;*/

/*    max-width: 300px*/
/*}*/

.fancybox-container
{
    z-index: 9999999999999999999!important;
}

.modal.b24-form-claim-modal
{
    max-width: 925px;
}

@media (max-width: 1000px)
{
    .b24-form-claim-modal.fancybox-content
    {
        width: 100%;
        max-width: none;
    }
}

/* Стили для preloader автозапуска чата */
.chat-autostart-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.chat-autostart-preloader__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.chat-autostart-preloader__spinner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chat-autostart-preloader__circle {
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-top: 8px solid #00aeef;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: chat-spin 1s linear infinite;
}

.chat-autostart-preloader__text {
    margin-top: 20px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    animation: chat-pulse 1.5s ease-in-out infinite;
}

@keyframes chat-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes chat-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .chat-autostart-preloader__circle {
        width: 60px;
        height: 60px;
        border-width: 6px;
    }

    .chat-autostart-preloader__text {
        font-size: 16px;
        margin-top: 15px;
    }
}
/* End */


/* Start:/local/components/ag-group/modal.window/templates/cookie_modal/style.css?1752757095834*/
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    color: #000000;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: sans-serif;
    font-size: 14px;
}

.cookie-notice p {
    margin: 0;
    flex: 1 1 auto;
}

.cookie-btn {
    background-color: #6d9a94;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.cookie-btn:hover {
    background-color: #65a39d;
}
/* End */


/* Start:/local/components/ag-group/modal.window/templates/personal_polit_accept_modal/style.css?1769423248879*/
/* затемнённый фон */
.personal-polit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000; /* выше всего (Bitrix, Aspro, B24) */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* само окно */
.personal-polit-modal {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* iframe / форма Б24 */
.personal-polit-modal iframe,
.personal-polit-modal form {
    display: block;
    width: 100%;
}

body.is-polit-modal-open {
    overflow: hidden;
}

.b24-form-wrapper.b24-form-border-bottom{
    border-bottom: none!important;
}

.b24-form-btn{
    cursor: pointer!important;
}
/* End */


/* Start:/local/components/ag-group/footer.menu/templates/.default/style.css?17490470801991*/
.menu__body {
    display: flex;
    flex-direction: column;
    gap: 20px; }

.menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    transition: all 0.3s ease-in-out; }

.menu-link:not(:first-child) {
    border-top: 1px solid #eaeaeb; }

.menu-link:last-child {
    border-radius: 0 0 12px 12px; }

.menu-link__icon {
    width: 28px; }

.menu-link__icon img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain; }

.menu-link__box {
    max-width: calc(100% - 38px);
    display: flex;
    flex-direction: column;
    gap: 6px; }

.menu-link__caption {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark); }

.menu-link__desc {
    font-weight: 400;
    font-size: 12px;
    color: var(--gray); }

.menu-link:hover {
    background-color: #f2f2f2; }

.menu-accordion__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 12px;
    padding: 20px 14px;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    background-color: #6d9a94;
    cursor: pointer; }

.menu-accordion__img {
    position: absolute;
    height: 100%;
    top: 0;
    right: 32px; }

.menu-accordion__img img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain; }

.menu-accordion__arrow {
    transform: scaleY(-1);
    transition: transform 0.3s ease-in-out; }

.menu-accordion__hidden {
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    background-color: #f7f7f7;
    padding-top: 10px;
    margin-top: -10px;
    display: none; }

.menu-accordion_cabinet .menu-accordion__top {
    background-color: #bfaca1; }

.menu-accordion_cabinet .menu-link__caption {
    font-weight: 400;
    font-size: 18px; }

.menu-accordion.active .menu-accordion__arrow {
    transform: scaleY(1); }

/* End */


/* Start:/local/templates/BKR/styles.css?1752823557196*/
.inform-block
{
    margin: 10px 0;
    font-size: 14px;
}

.register-button
{
    display: block;
    margin-top: 5px;
}

.auth-button
{
    display: block;
    margin-top: 5px;
}
/* End */
/* /local/components/ag-group/communications/templates/modal-lawyer-form/style.css?17694497514803 */
/* /local/components/ag-group/modal.window/templates/cookie_modal/style.css?1752757095834 */
/* /local/components/ag-group/modal.window/templates/personal_polit_accept_modal/style.css?1769423248879 */
/* /local/components/ag-group/footer.menu/templates/.default/style.css?17490470801991 */
/* /local/templates/BKR/styles.css?1752823557196 */
