

/* Start:/local/components/lombard/evaluate-chat/templates/.default/style.css?17828786579048*/
.eval-chat-form {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url("/local/components/lombard/evaluate-chat/templates/.default/images/bg-desktop.png") no-repeat center;
    background-size: cover;
    padding: 40px 45px;
    height: 500px;
    margin-top: 100px;
}

.eval-chat-form--popup {
    width: 1070px;
    margin-top: unset;
}

.eval-chat__chat {
    width: 500px;
    height: 410px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #DDDDDD;
}

.eval-chat__step {
    display: none;
    width: 100%;
    height: 100%;
}

.eval-chat__step--active {
    display: flex;
}

.eval-chat__step-left {
    position: relative;
    width: 50%;
    padding-right: 45px;
}

.eval-chat__step-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eval-chat__hand {
    width: 590px;
    position: absolute;
    bottom: -40px;
    user-select: none;
}

.eval-chat__countdown-text {
    font-size: 24px;
    text-align: center;
    color: #fff;
}

.eval-chat__countdown {
    background: url("/local/components/lombard/evaluate-chat/templates/.default/images/countdown-bg.svg") no-repeat center;
    background-size: contain;
    width: 370px;
    padding-bottom: 50px;
    margin: 0 auto;
}

.eval-chat__countdown-timer {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 20px;
    margin: 20px auto 0 auto;
}

.eval-chat__countdown-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 72px;
    background: #fff;
    color: #000;
    font-size: 52px;
    border-radius: 10px;
}

.eval-chat__countdown-colon {
    font-size: 52px;
    line-height: 62px;
    padding-bottom: 15px;
    height: 72px;
    color: #fff;
}

.eval-chat__step-title {
    font-size: 59px;
    line-height: 67px;
    color: #fff;
    margin: 0 auto 40px auto;
    text-align: center;
}

.eval-chat__start-button {
    font-size: 31px;
    font-weight: 500;
    background: #FFDE00;
    width: fit-content;
    border-radius: 10px;
    padding: 20px 80px;
    cursor: pointer;
    margin: 35px auto 0 auto;
    user-select: none;
}

.eval-chat__start-button:hover {
    color: #fff;
}

.messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px 23px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    position: relative;
    max-width: 80%;
    padding: 7px 15px;
    border-radius: 7px;
    word-wrap: break-word;
    font-size: 23px;
}

.message.user {
    background: #EDEDED;
    color: #000;
    align-self: flex-end;
    border-radius: 7px 7px 0 7px;
}

.message.user:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-top: 3px solid transparent;
    border-bottom: 3px solid #EDEDED;
    border-left: 3px solid #EDEDED;
    border-right: 3px solid transparent;
    position: absolute;
    right: -6px;
    bottom: 0;
}

.message.operator {
    background: #E9F6FF;
    color: #0C69B1;
    align-self: flex-start;
    border-radius: 7px 7px 7px 0;
}

.message.operator:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-top: 3px solid transparent;
    border-bottom: 3px solid #E9F6FF;
    border-left: 3px solid transparent;
    border-right: 3px solid #E9F6FF;
    position: absolute;
    left: -6px;
    bottom: 0;
}

.message .name { font-size: 11px; opacity: 0.7; margin-bottom: 4px; }
.message .time { font-size: 10px; opacity: 0.5; margin-top: 4px; text-align: right; }

.eval-chat__input-area-wrapper {
    padding: 0 20px 15px 20px;
}

.eval-chat__input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #EDEDED;
    border-radius: 10px;
    padding: 0 12px;
    border-top: 1px solid #f9f9f9;
}
.eval-chat__input-area input {
    width: 100%;
    flex: 1;
    padding: 10px;
    background: #EDEDED;
    border: none;
    border-radius: 9px;
    outline: none;
    height: 56px;
    font-size: 23px;
}

.eval-chat__send-button {
    width: 34px;
    height: 36px;
    background: url(/local/components/lombard/evaluate-chat/templates/.default/images/send-button.svg) no-repeat center;
    background-size: contain;
    padding: 0;
    outline: none;
    border: none;
    cursor: pointer;
}

.eval-chat__file-button-wrapper input {
    display: none;
}

.eval-chat__file-button {
    width: 32px;
    height: 32px;
    background: url(/local/components/lombard/evaluate-chat/templates/.default/images/file-button.svg) no-repeat center;
    background-size: contain;
    cursor: pointer;
}

.eval-chat__loaded-photos {
    display: flex;
    gap: 15px;
}

.eval-chat__loaded-photos:has(div) {
    padding: 10px;
}

.eval-chat__loaded-photo {
    position: relative;
    width: 85px;
    height: 85px;
    background: red;
    flex-shrink: 0;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}

.eval-chat__loaded-photo-preview {
    width: 100%;
    height: 100%;
    background-size: cover;
}

.eval-chat__loaded-photo-remove {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    transition: 0.15s;
    z-index: 2;
}

.eval-chat__loaded-photo-remove:hover {
    background: #ef4444;
    transform: scale(1.05);
    opacity: 1;
}

.eval-chat__input-area-bg {
    background: #EDEDED;
    border-radius: 10px;
}

.user-file__preview {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.message.file {
    display: flex;
    gap: 20px;
}

.user-file__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eval-chat__countdown-waitmore {
    font-size: 24px;
    text-align: center;
    color: #fff;
}

[data-step="start"] .eval-chat__step-right {
    width: 50%;
}

[data-step="chat"] .eval-chat__step-title {
    font-size: 39px;
    line-height: 47px;
}

[data-step="chat"] .eval-chat__step-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eval-chat__qr-title {
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.eval-chat__qr-image {
    display: block;
    width: 230px;
    height: 230px;
    margin: 15px auto 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.eval-chat__qr-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.eval-chat__qr-save {
    display: block;
    width: fit-content;
    font-size: 31px;
    font-weight: 500;
    background: #FFDE00;
    color: #000;
    margin: 20px auto 0 auto;
    text-decoration: none;
    border-radius: 10px;
    padding: 20px 45px;
}

.eval-chat__popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: url(/local/components/lombard/evaluate-chat/templates/.default/images/close-white.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

@media (max-width: 767px) {
    .eval-chat-form {
        height: 620px;
        padding: 25px 15px 15px 15px;
        margin-left: -15px;
        margin-right: -15px;
        margin-top: unset;
    }

    .eval-chat-form--popup {
        width: unset;
        margin-left: -24px;
        margin-right: -24px;
    }

    .eval-chat__step {
        flex-direction: column;
        justify-content: space-between;
    }

    [data-step="start"] .eval-chat__step-right {
        order: 0;
    }

    [data-step="start"] .eval-chat__step-left {
        order: 1;
    }

    .eval-chat__step-left {
        width: 100%;
        padding-right: 0;
    }

    .eval-chat__step-right {
        width: 100% !important;
        flex-grow: 1;
        overflow-y: scroll;
    }

    .eval-chat__hand {
        position: relative;
        width: 90%;
        user-select: none;
        bottom: -16px;
        margin: 0 auto;
    }

    .eval-chat__step-title {
        font-size: 35px;
        line-height: 46px;
    }

    .eval-chat__start-button {
        font-size: 25px;
        padding: 15px 40px;
        margin: 0 auto;
    }

    .eval-chat__chat {
        width: 100%;
        height: 100%;
    }

    [data-step="chat"] .eval-chat__step-title {
        margin-bottom: 0;
    }

    .eval-chat__countdown-num {
        width: 50px;
        height: 60px;
        font-size: 48px;
    }

    .eval-chat__countdown-text {
        font-size: 20px;
    }

    .eval-chat__countdown {
        width: 320px;
        padding-bottom: 30px;
    }

    .eval-chat__input-area input {
        font-size: 17px;
    }

    .eval-chat__qr-image {
        width: 190px;
        height: 190px;
    }

    .eval-chat__qr-save {
        display: none;
    }

    .messages {
        gap: 8px;
        padding: 15px 13px;
    }

    .message {
        font-size: 17px;
        padding: 5px 10px;
    }

    .user-file__preview {
        width: 60px;
        height: 60px;
    }

    .eval-chat__input-area-wrapper {
        padding: 0 10px 15px 10px;
    }

    .eval-chat__qr-title {
        font-size: 19px;
    }
}
/* End */
/* /local/components/lombard/evaluate-chat/templates/.default/style.css?17828786579048 */
