* {
    box-sizing: border-box
}

.presentation {
    font-family: Inter, sans-serif;
    display: flex
}

.presentation_child {
    width: 50%
}

.presentation_btn {
    margin-bottom: 20px
}

.rchat_launcher {
    z-index: 1000;
    width: 60px;
    height: 60px;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    background: #0052cc;
    border: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 0;
    display: inline-flex;
    position: relative
}

.rchat_launcher_icon {
    width: 24px;
    height: 24px;
    background: #0052cc;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 18px;
    left: 18px
}

.rchat_launcher_icon-default {
    opacity: 1;
    transition: transform .16s linear, opacity 80ms linear;
    transform: rotate(0) scale(1)
}

.rchat_launcher-opened .rchat_launcher_icon-default {
    opacity: 0;
    transition: transform .16s linear, opacity 80ms linear;
    transform: matrix(0, 0, 0, 0, 0, 0)
}

.rchat_launcher_icon-minimize {
    opacity: 0;
    transition: transform .16s linear, opacity 80ms linear;
    transform: rotate(-60deg)
}

.rchat_launcher-opened .rchat_launcher_icon-minimize {
    opacity: 1;
    transition: transform .16s linear, opacity 80ms linear;
    transform: rotate(0)
}

.rchat_body {
    color: #000;
    z-index: 1000;
    height: calc(100% - 104px);
    width: 340px;
    min-height: 250px;
    max-height: 555px;
    opacity: 0;
    pointer-events: none;
    transform-origin: right bottom 0;
    background: #fff;
    flex-direction: column;
    font-family: Inter, sans-serif;
    transition: width .2s, height .2s, max-height .2s, transform .3s cubic-bezier(0, 1.2, 1, 1), opacity 83ms ease-out;
    display: flex;
    position: fixed;
    overflow: hidden;
    transform: scale(0);
    box-shadow: 0 2px 6px #0003
}

.rchat_body-open {
    pointer-events: all;
    opacity: 1;
    transform: none
}

.rchat_header {
    width: 100%;
    color: #fff;
    background: #0052cc;
    flex-shrink: 0;
    padding: 8px 23px;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px
}

.rchat_main {
    height: 100%;
    flex-grow: 1;
    overflow: hidden
}

.rchat_footer {
    height: 62px;
    border-top: 1px solid #a6afb980;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 500;
    position: relative
}

.rchat_input {
    width: 100%;
    height: 100%;
    color: #222;
    border: none;
    outline: none;
    padding: 20px 45px 20px 20px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500
}

.rchat_send {
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 10px;
    position: absolute;
    top: 9px;
    right: 10px
}

.rchat_content {
    height: 100%;
    scrollbar-width: thin;
    padding: 0 15px 0 20px;
    overflow-y: scroll
}

.rchat_message {
    margin-bottom: 12px;
    display: flex
}

.rchat_message:first-child {
    margin-top: 30px
}

.rchat_message_wrapper {
    width: 100%
}

.rchat_message-user {
    justify-content: flex-end;
    margin-bottom: 22px;
    display: flex
}

.rchat_message-search .rchat_message_rows {
    margin-left: 0
}

.rchat_message-search .rchat_message_row {
    position: relative
}

.rchat_message-search .rchat_message_input {
    padding-right: 40px
}

.rchat_message-search .rchat_message_ssubmit {
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 4px;
    position: absolute;
    top: 6px;
    right: 14px
}

.rchat_message_img {
    margin-top: 22px;
    margin-right: 10px
}

.rchat_message_info {
    color: #a6afb9;
    margin-bottom: 6px;
    font-size: 13px
}

.rchat_message_name {
    margin-right: 10px
}

.rchat_message_content {
    background: #f5f5f5;
    margin-bottom: 10px;
    padding: 16px 10px 16px 14px;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px
}

.rchat_message_content-btns {
    background: 0 0;
    border: none;
    padding: 0
}

.rchat_message_content-answer {
    color: #fff;
    background: #0052cc;
    border: none;
    padding: 0 10px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 29px
}

.rchat_message_content-form {
    background: 0 0;
    border: none;
    padding: 0
}

.rchat_message_btns {
    flex-wrap: wrap;
    display: flex
}

.rchat_message_btn {
    color: #0052cc;
    cursor: pointer;
    background: #fff;
    border: 1px solid #0052cc;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 10px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 29px
}

.rchat_message_rows {
    flex-direction: column;
    align-items: start;
    margin-left: -60px;
    padding: 0;
    display: flex
}

.rchat_message_row {
    width: 100%;
    flex-direction: column;
    margin-bottom: 8px;
    display: flex
}

.rchat_message_label {
    margin-bottom: 6px
}

.rchat_message_input {
    width: 100%;
    border: 1px solid #f5f5f5;
    outline: none;
    padding: 11px 16px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500
}

.rchat_message_textarea {
    resize: none;
    width: 100%;
    border: 1px solid #f5f5f5;
    outline: none;
    padding: 11px 16px;
    font-family: Inter, sans-serif;
    font-size: 14px
}

.rchat_message_send {
    text-transform: uppercase;
    color: #0052cc;
    cursor: pointer;
    background: #fff;
    border: 1px solid #0052cc;
    align-self: flex-start;
    margin-top: 8px;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 3px 12px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px
}
