:root {
    --header-text-color: coral;
    --header-bg-color: coral;
    --agent-text-color: coral;
    --agent-bg-color: coral;
    --user-text-color: coral;
    --user-bg-color: coral;
    --common-margin: 10px;
    --common-outer-border-radius: 15px;
    --bot-area-animation: "slide-in-bottom";
    --font-family: "open sans", sans-serif;
    --widget-bubble-message-bg-color: #edf2f6;
    --widget-bubble-message-text-color: #424242;
}

body,
button, input {
    font-family: var(--font-family);
    backface-visibility: hidden;
}
* {
    font-family: var(--font-family);
}
.user_refresh_btn {
    width: 50%;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-family);
    flex-wrap: wrap;
    margin-top: 10px;
    padding: 10px 0px;
    -webkit-animation: button 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: button 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.user_refresh_btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.b {
    border: 1px solid black;
}

::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 5px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #d5d5d5;
}

.bot_icon {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 50px;
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--header-text-color);
    background-color: var(--header-bg-color);
    cursor: pointer;
    box-shadow: 0px 0px 20px #00000029;
    border-radius: 50% 50% 50% 0px;
    -moz-border-radius: 50% 50% 50% 0px;
    -webkit-border-radius: 50% 50% 50% 0px;
    border: 0px solid #000000;
}

.bot_icon .b_icon {
    align-self: center;
    font-size: 30px;
    font-weight: 600 !important;
}

.c-p {
    cursor: pointer;
}

@media only screen and (min-device-width: 310px) and (max-device-width: 600px) {
    .bot_icon {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }
}

.bot_area {
    min-width: 370px;
    min-height: 550px;
    max-height: 700px;
    height: calc(100vh - 100px);
    background-color: white;
    width: 370px;
    position: fixed;
    right: 100px;
    bottom: 60px;
    box-shadow: 0px 0px 20px #00000029;
    display: none;
}

.bot_header_parent {
    height: 90px;
    backface-visibility: hidden;
    border-top-left-radius: var(--common-outer-border-radius);
    border-top-right-radius: var(--common-outer-border-radius);
    background-color: var(--header-bg-color);
}

.bot_area .bot_header {
    display: flex;
    justify-content: space-between;
    height: calc(100% - 10px);
}

.bot_area .bot_header .bot_header_left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bot_area .bot_header .bot_header_left .bot_header_icon {
    width: 70px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bot_area .bot_header .bot_header_left .bot_header_icon .bot_icon_img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.bot_area .bot_header .bot_header_left .bot_title {
    font-size: 14px;
    font-weight: bolder;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    color: var(--header-text-color);
}

.bot_area .bot_header_right {
    float: right;
    display: flex;
    margin-right: 10px;
}

.bot_minimize {
    height: 20px;
    width: 20px;
    align-self: center;
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    float: right;
    font-size: 12px;
    align-items: center;
    cursor: pointer;
}

.bot_minimize .material-icons {
    font-size: 22px !important;
}


.bot_header_color {
    color: var(--header-text-color);
}

.bot_area .bot_header_right .message-square,
.bot_area .bot_header_right .feather-minus,
.bot_area .bot_header_right .feather-x {
    width: 14px !important;
}

@media only screen and (min-device-width: 310px) and (max-device-width: 600px) {
    .bot_area {
        height: 100%;
        width: auto;
        min-width: auto;
        position: absolute;
        right: 0;
        bottom: 0;
        border-radius: 0px;
        max-height: none;
    }
}

.askuser {
    position: fixed;
    height: calc(100% - 120px);
    transition: 0.6s all;
    width: 100%;
    z-index: 100;
    background-color: white;
    top: 70px;
    display: flex;
    align-content: start;
    justify-content: center;
}

.bot_chat_area {
    height: 100%;
    overflow: auto;
}

.bot_chat_area .bot_chat {
    display: flex;
    flex-direction: column;
    height: calc(100% - 140px);
}

.bot_chat_area .bot_message {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin-left: 10px;
}

.bot_message_icon {
    height: 30px;
    width: 30px;
    position: absolute;
    top: -4px;
    left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--user-bg-color);
    z-index: 10;
}

.b_message_icon {
    width: 25px;
    height: 25px;
    z-index: 10;
    border-radius: 50%;
}

.btn_temp_text {
    padding: 10px;
    margin: 0px;
    white-space: pre-line;
}

.bot_message_text {
    display: flex;
    align-self: flex-end;
    height: auto;
    padding: 10px;
    margin-left: -15px;
    padding-left: 25px;
    padding-right: 25px;
    background: var(--agent-bg-color);
    color: var(--agent-text-color);
    border: 1px solid var(--user-bg-color);
    border-radius: 0px 15px 15px 15px;
    margin-top: 15px;
    font-size: 14px;
}

.text_msg {
    margin-left: 22px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 0px;
    white-space: pre-line;
}

.bot_chat_area .bot_message .bot_image {
    width: 250px;
    margin-left: var(--common-margin);
    font-size: 14px;
    border-radius: 5px;
    background-color: var(--agent-bg-color);
    overflow: hidden;
    flex-direction: column;
}

.bot_image1 {
    width: 250px;
    margin-left: 10px;
    border-radius: 5px;
    padding: 10px;
    background-color: var(--agent-bg-color);
    overflow: hidden;
}

.btn_temp {
    display: flex;
    justify-content: center;
    align-self: flex-end;
    max-width: 250px;
    margin-left: var(--common-margin);
    font-size: 14px;
    border-radius: 5px;
    background-color: var(--agent-bg-color);
    overflow: hidden;
    flex-direction: column;
}

.btn_temp_button {
    width: 100%;
    padding: 7px;
    background-color: var(--agent-bg-color);
    color: var(--agent-text-color);
    margin: 0px 10px 10px 10px;
    outline: none;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
}

.bot_image_sub {
    height: 150px;
    width: 100%;
    border-radius: 5px 5px 0 0;
    object-fit: fill;
}

.bot_image_sub1 {
    height: 150px;
    width: 99%;
    border-radius: 5px;
    object-fit: fill;
}

.bot_chat_area .bot_message .image_button {
    margin: 8px;
    outline: none;
    border: none;
    border-radius: 8px;
    padding: 7px;
    color: var(--agent-text-color);
    background: var(--agent-bg-color);
    cursor: pointer;
}

.user_refresh p {
    font-size: 22px;
    color: var(--user-text-color);
}

.user_refresh {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bot_chat_area .user_message,
.btn-message {
    margin-left: 10px;
    margin-right: 10px;
    background: var(--user-bg-color);
    justify-content: center;
    align-self: flex-end;
    padding: 10px;
    padding-right: 15px;
    padding-left: 15px;
    color: var(--user-text-color);
    max-width: 70%;
    float: right;
    font-size: 14px;
    margin-top: 15px;
    border-radius: 15px 0px 15px 15px;
    -webkit-animation: scale-up-bl 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: scale-up-bl 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.btn-message {
    background-color: var(--user-bg-color);
    color: var(--user-text-color);
    backface-visibility: hidden;
}

.bot_input {
    position: absolute;
    bottom: 0;
    height: 50px;
    width: 100%;
    display: flex;
    background: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.bot_input .input_text {
    width: 100%;
    background: white;
    outline: none;
    border: none;
    padding-left: 10px;
    font-size: 13px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.bot_input .send_btn {
    width: 30px;
    color: var(--header-bg-color);
    display: flex;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-left: 5px;
}

.file-upload_btn {
    width: 30px;
    color: #707070;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    border-bottom-left-radius: 15px;
    padding-left: 5px;
    display: none;
}

.bot_input .input {
    display: flex;
    width: 100%;
    box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, .05);
}

.button {
    max-width: 100%;
    display: flex;
    margin-left: 20px;
    margin-right: 24px;
    margin-top: 10px;
    flex-wrap: wrap;
    padding: 10px 0px;
    -webkit-animation: button 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: button 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.btn {
    border-radius: 5px;
    border: none !important;
    cursor: pointer;
    padding: 10px;
    margin: 5px;
    min-width: 90px;
    color: var(--user-text-color);
    background-color: var(--user-bg-color);
    font-size: 14px;
}

.btn:first-child {
    margin-left: 0px;
}

.bot_btn:hover {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

button:focus {
    outline: none !important;
}

input:focus {
    outline: none;
}

@-webkit-keyframes scale-up-bl {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
    }
}

@keyframes scale-up-bl {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
    }
}

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes button {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes button {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@-moz-document url-prefix() {
    .bot_message_icon {
        height: 20px;
    }
}

.emoji-selector,
.nav,
.nav-tabs {
    padding-left: 0px !important;
    list-style-type: none !important;
}

.emoji-button,
.picker {
    padding: 2px;
    margin: 3px !important;
    font-size: 20px;
    align-self: center !important;
}

.emoji-picker {
    position: absolute;
    left: calc(100% - 270px) !important;
    top: calc(100% - 340px) !important;
    vertical-align: bottom;
    z-index: 100;
    -webkit-animation: button 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: button 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media screen and (max-width: 1280px) and (min-width: 600px) {
    .emoji-picker {
        left: calc(100% - 370px) !important;
        top: calc(100% - 400px) !important;
    }
}

@media screen and (min-width: 1440px) {
    .emoji-picker {
        left: calc(100% - 400px) !important;
        top: calc(100% - 400px) !important;
    }
}

#wait {
    margin-left: 20px;
    margin-top: 15px;
    display: flex;

}

.loader--container {
    display: flex;
    border-radius: 5px;
    padding: 10px;
    padding-top: 2px;
    background-color: var(--agent-bg-color);
}

#image {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    object-fit: contain;
}


.rate {
    margin-left: 35px;
    margin-top: 10px;
}

.slider {
    margin-top: 15px;
    padding: 10px;
    padding-left: 20px;
    position: relative;
}

.sliderBtn {
    min-height: 300px;
}

.slider_img {
    align-self: center;
    border-radius: 5px 5px 0 0;
    height: 150px;
    width: 250px !important;
    object-fit: cover;
}

.human-pixel-bot-messages-bot {
    background-color: var(--agent-bg-color);
    color: var(--agent-text-color);
}

.human-pixel-bot-messages-agent {
    background-color: var(--agent-bg-color);
    width: fit-content;
    color: var(--agent-text-color);
}

.human-pixel-user-messages {
    padding: 10px;
    margin-right: 20px;
    margin-top: 15px;
    align-items: flex-end;
    max-width: 70%;
    color: var(--user-text-color);
    align-self: flex-end;
    animation: expand-bounce 0.4s;
    position: relative;
    font-size: 13px;
}

.human-pixel-user-messages-text {
    background-color: var(--user-bg-color);
    border-radius: 5px;
    color: var(--user-text-color);
    word-break: break-word;
}

.bot-time {
    color: var(--agent-text-color);
}

.user-time {
    color: var(--user-text-color);
}

.human-pixel-bot-messages-time {
    display: flex;
    justify-content: flex-end;
    font-size: 11px;
    min-width: 52px;
    float: right;
    font-weight: 300;
    position: absolute;
    bottom: 5px;
    right: 10px;
}

.chatomate-bot-messages-media-time {
    display: flex;
    justify-content: flex-end;
    font-size: 11px;
    font-weight: 300;
}

.bot-text {
}

.user-message {
    display: flex;
    justify-content: flex-end;
}

.human-pixel-bot-messages {
    position: relative;
    padding: 10px 15px;
    margin-left: var(--common-margin);
    max-width: 75%;
    color: var(--agent-text-color);
    transform-origin: 0% 100%;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
    animation: expand-bounce 0.4s;
    font-size: 13px;
}

.human-pixel-bot-messages-text {
    background-color: var(--agent-bg-color);
    border-radius: 5px;
    color: var(--agent-text-color);
    word-break: break-word;
    white-space: pre-wrap;
}

.slider .slider_btn {
    width: 35%;
    align-self: center;
    margin-top: -20px;
    border-radius: 20px;
    outline: none;
    border: none;
    padding: 5px;
    background: gray;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.download {
    color: var(--agent-text-color);
    height: 20px;
    margin-left: 10px;
    width: 20px;
    font-size: 20px;
    cursor: pointer;
}

.human-pixel-bot-messages-doc {
    border-radius: 15px !important;
    border: 2px solid var(--agent-bg-color) !important;
    background-color: var(--agent-bg-color);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.bot-doc {
    display: flex;
    padding-right: 10px;
    align-items: center !important;
}

.bot-doc span {
    display: flex;
    padding-left: 10px;
    word-break: break-word;
    line-height: 24px;
}

.bot-doc svg {
    height: 24px;
    width: 24px;
}

.slider .slider_button {
    width: 70%;
    align-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 5px;
}

.slider .slider_btn_2 {
    padding: 5px;
    padding-left: 30px;
    outline: none;
    border: none;
    border-radius: 20px;
    padding-right: 30px;
    background: gray;
    color: white;
    min-width: 100px;
    margin: 5px;
    cursor: pointer;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
}

.slider .slider_btn_2:hover {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.owl-theme,
.owl-nav [class*="owl-"]:hover {
    background: none !important;
}

.slider-main {
    align-self: center;
    min-height: 200px;
    min-width: 200px !important;
    max-width: 250px !important;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background-color: var(--agent-bg-color);
}

.slider-btn-div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.slider-text {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    color: var(--agent-text-color);
}

.slider-title {
    margin: 0 !important;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
}

.slider-subtitle {
    margin: 0 !important;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sliderButton {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
}

.slider-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--user-bg-color);
    color: var(--user-text-color);
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.4s;
    border-radius: 5px;
    word-wrap: break-word;
}

.slider-btn:first-child {
    margin-top: 0px;
}

.config-message {
    text-align: center;
    max-width: unset;
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    margin: 0 30px 8px 30px;
    color: #666;
}

.mr-20 {
    margin: 20px;
}

.owl-carousel .owl-stage-outer {
    padding-bottom: 10px;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50.1%);
    font-size: 30px !important;
    color: gray !important;
}

.owl-prev {
    left: 20px;
    outline: none !important;
}

.owl-next {
    right: 20px;
    outline: none !important;
}

.owl-dots {
    display: none !important;
}

.owl-item {
    height: 100% !important;
}

.item {
    height: 100% !important;
}

.owl-stage {
    height: 100%;
}

#carousal_button .owl-prev,
#carousal_button .owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50.1%);
    font-size: 30px !important;
    color: gray !important;
}

#carousal_buttons .owl-prev,
#carousal_buttons .owl-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50.1%);
    font-size: 30px !important;
    color: gray !important;
}

.link_main {
    display: flex;
    margin-left: 30px;
    margin-top: 10px;
    width: 74%;
    min-height: 40px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--agent-bg-color);
    color: var(--agent-text-color);
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.link_main .link_icon {
    padding: 7px;
    padding-left: 12px;
    padding-right: 12px;
    color: var(--agent-bg-color);
    background-color: white;
    border-radius: 10px;
    border: 1px solid gray;
}

.link_main .link {
    align-self: center;
    margin-left: 10px;
}

.link_main .link a {
    color: var(--agent-text-color);
}

.video_div {
    margin-left: 10px;
    margin-top: 10px;
    width: 250px;
}

video:focus,
audio:focus {
    outline: none;
}

video {
    object-fit: cover;
}

#video {
    border-radius: 5px;
}

.audio-player {
    text-align: center;
    display: flex;
    flex-flow: row;
    width: 260px;
    background: gray;
    padding: 15px;
    border-radius: 0px 10px 10px 10px;
    margin-top: 10px;
    margin-left: 30px;
}

.player-controls {
    align-items: center;
    justify-content: center;
    flex: 3;
    align-self: center;
    display: flex;
}

#play-btn {
    background-image: url("http://imgur.com/JzQP8td.png");
    background-size: cover;
    width: 25px;
    height: 25px;
    align-self: center;
}

#play-btn.pause {
    background-image: url("http://imgur.com/MbJn41l.png");
}

audio {
    height: 30px;
    width: 270px;
}

.audio_main {
    margin-left: 10px;
    width: fit-content;
    margin-top: 4px;
}

.logo {
    height: 30px;
}

.date_main {
    margin: 10px 20px 10px 20px;
    border-radius: 10px;
    border: 1px solid gray;
}

.date_main .date_header {
    padding: 10px;
    width: auto;
    display: flex;
    justify-content: space-between;
    background: gray;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.date_main .date_header .date_month {
    color: white;
    margin-left: 15px;
    font-weight: 500;
    padding: 3px;
}

.date_main .date_header .date_icon {
    color: white;
    margin-right: 15px;
    font-size: 20px;
    padding: 3px;
}

.date_main .day {
    display: flex;
    background-color: gray;
}

.date_main .day .day_sub {
    padding: 5px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: white;
    font-weight: 500;
}

.date_main .month {
    display: flex;
    overflow: hidden;
}

.date_main .month .month_sub {
    padding: 10px;
    margin: 5px;
    width: 100%;
    text-align: center;
}

.datepicker-inline {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.datepicker {
    border-radius: 5px !important;
    min-width: 270px !important;
}

.datepicker--nav-action {
    display: none !important;
}

.datepicker--nav {
    min-height: 45px !important;
    background-color: var(--agent-bg-color);
    border-radius: 5px 5px 0px 0px;
    border: none !important;
}

.datepicker--nav-title,
.datepicker--nav-title i {
    color: var(--agent-text-color) !important;
}

.datepicker--nav-title:hover {
    background: none !important;
}

.datepicker--days-names {
    background: var(--agent-bg-color);
    margin: 0px !important;
    margin-top: -10px;
    padding: 5px;
    border-top: 1px solid gray;
    border-top-color: var(--agent-bg-color);
}

.datepicker--day-name {
    color: var(--agent-text-color) !important;
}

.datepicker--content {
    padding: 0px !important;
}

.datepicker--cell.-current- {
    color: grey !important;
    font-weight: bolder;
    border: 1px solid gray;
}

.-selected- {
    background: var(--agent-bg-color) !important;
    color: var(--agent-text-color) !important;
}

.datepicker--cells {
    margin: 5px !important;
}

.date_button {
    cursor: pointer;
    width: 70%;
    align-self: center;
    margin: 15px;
    padding: 10px;
    border: none;
    outline: none;
    color: var(--agent-text-color);
    background-color: var(--agent-bg-color);
    border-radius: 5px;
    min-height: 35px;
}

input[type="text"]::-ms-clear {
    display: none;
}

.card{
    color: var(--agent-text-color) !important;
}

.card-title {
    margin: 0 !important;
    font-size: 16px;
    padding-left: 10px;
}

.card-buttton {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.card-subtitle {
    margin: 0 !important;
    font-size: 13px;
    padding-left: 10px;
    padding-bottom: 10px;
}

.star {
    cursor: pointer;
    color: grey;
}

.star:hover {
    color: tomato;
}

.emoji {
    color: transparent;
    display: inline-block;
    font-size: 18px;
    font-style: normal;
    height: 25px;
    width: 25px;
}

.emoji::selection {
    background-color: highlight;
    color: transparent;
}

.emoji-image {
    font-size: 14px;
    line-height: 28px;
}

.emoji-button {
    cursor: pointer;
    margin: 5px;
}

.emoji-editor {
    -moz-appearance: textfield-multiline;
    -webkit-appearance: textarea;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    cursor: text;
    font: medium -moz-fixed;
    -webkit-font-smoothing: antialiased;
    height: 100px;
    overflow: auto;
    padding: 5px;
    resize: both;
    width: 100%;
}

.emoji-picker {
    background-color: #fff;
    border: 1px solid #ccc;
    position: absolute;
    width: 210px;
}

.emoji-picker a {
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    padding: 3px;
}

.emoji-selector {
    border-bottom: 1px solid #ccc;
    display: flex;
}

.emoji-selector li {
    margin: 5px;
}

.emoji-group {
    display: grid;
    grid-template-columns: repeat(6, 16.66667%);
    height: 200px;
    overflow-y: scroll;
    padding: 3px;
}

.typing-indicator {
    background-color: #e6e7ed;
    will-change: transform;
    width: auto;
    border-radius: 50px;
    padding: 10px;
    display: table;
    margin: 0 auto;
    position: relative;
    -webkit-animation: 2s bulge infinite ease-out;
    animation: 2s bulge infinite ease-out;
}

.typing-indicator::before,
.typing-indicator::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -2px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #e6e7ed;
}

.typing-indicator::after {
    height: 10px;
    width: 10px;
    left: -10px;
    bottom: -10px;
}

.typing-indicator span {
    height: 7px;
    width: 7px;
    float: left;
    margin: 0 1px;
    background-color: var(--agent-bg-color);
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    -webkit-animation: 1s blink infinite 0.3333s;
    animation: 1s blink infinite 0.3333s;
}

.typing-indicator span:nth-of-type(2) {
    -webkit-animation: 1s blink infinite 0.6666s;
    animation: 1s blink infinite 0.6666s;
}

.typing-indicator span:nth-of-type(3) {
    -webkit-animation: 1s blink infinite 0.9999s;
    animation: 1s blink infinite 0.9999s;
}

@-webkit-keyframes blink {
    50% {
        opacity: 1;
    }
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

@-webkit-keyframes bulge {
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@keyframes bulge {
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

div.customError {
    display: none;
    width: 80%;
    z-index: 11;
    line-height: 20px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    color: white;
    background: #ff6368;
    border: 4px solid #ff6368;
    border-radius: 5px;
    text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 2px 0px;
}

.error-parent {
    position: absolute;
    top: -60px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.spinner > div {
    width: 5px;
    height: 5px;
    background-color: var(--agent-text-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.owl-carousel .owl-stage-outer {
    padding-bottom: 0px;
}

.btn--container {
    padding: 10px;
}

.carousel-navigation-right {
    font-size: 28px;
}

.carousel-navigation-left {
    font-size: 28px;
}

.owl-theme .owl-nav .disabled {
    opacity: 1 !important;
    color: rgba(153, 155, 155, 0.5) !important;
}

.slider .owl-nav button,
.slider .owl-nav button {
    position: absolute;
    border-radius: 30px !important;
    height: 30px;
    width: 30px;
    margin: 0;
    color: #333638;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider .owl-theme .owl-nav {
    margin-top: 0px !important;
}

.slider .owl-nav button {
    margin: 0 !important;
}

.slider .owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider .owl-nav button:hover {
    background-color: white !important;
}

.slider .owl-nav button.owl-prev {
    left: 10px;
}

.slider .owl-nav button.owl-next {
    right: 35px;
}

.chat_area_container {
    height: calc(100% - 160px);
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transform: translateY(-10px);
    background-color: white;
    padding-top: 20px;
}

.owl-carousel {
    width: auto !important;
}

.date_button--container {
    display: flex;
    justify-content: center;
}

.rotate-90-ccw {
    -webkit-animation: rotate-90-ccw 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: rotate-90-ccw 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes rotate-90-ccw {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

@keyframes rotate-90-ccw {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

.rotate-90-cw {
    -webkit-animation: rotate-90-cw 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: rotate-90-cw 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-9-17 15:41:17
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-90-cw
 * ----------------------------------------
 */
@-webkit-keyframes rotate-90-cw {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes rotate-90-cw {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}


.bot__container {
    height: 100%;
    -webkit-animation: var(--bot-area-animation) 200ms ease-in both;
    animation: var(--bot-area-animation) 200ms ease-in both;
}

@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(500px);
        transform: translateY(500px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(500px);
        transform: translateY(500px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-9-22 16:57:43
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(400px);
        transform: translateX(400px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(400px);
        transform: translateX(400px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}


.welcome--container {
    height: 100%;
    -webkit-animation: slide-in-bottom 200ms ease-in both;
    animation: slide-in-bottom 200ms ease-in both;
}

.top-banner {
    height: 150px;
    background-color: var(--header-bg-color);
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border-top-left-radius: var(--common-outer-border-radius);
    border-top-right-radius: var(--common-outer-border-radius);
}

.larger-text {
    color: var(--header-text-color);
    font-size: 24px;
}

.smaller-text {
    color: var(--header-text-color);
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.8;
    line-height: 20px;
}

.form-container {
    padding-left: 20px;
    padding-right: 20px;
    transform: translateY(-30px);
    height: calc(100% - 180px);
    overflow: auto;
}

.chatomate--form {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: rgba(116, 129, 141, .1) 0 3px 8px 0;
    position: relative;
}

.chatomate--form:after {
    content: '';
    width: 100%;
    position: absolute;
    background-color: var(--header-bg-color);
    opacity: 0.3;
    height: 3px;
    bottom: 0px;
    left: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

}

.chatomate--form input {
    height: 25px;
    border: 0px;
    display: block;
    width: 100%;
    padding: 0;
    font-size: 14px;
}

.form--input--wrapper {
    border: 1px solid #dedede;
    padding-left: 10px;
    margin-top: 5px;
    position: relative;
}

.form-button {
    background-color: var(--header-bg-color);
    color: var(--header-text-color);
    width: 100%;
    margin-top: 15px;
    border: 0px;
    outline: none;
    cursor: pointer;
    padding: 7px;
    font-size: 14px;
    border-radius: 5px;
}

/*Check Box*/
.checkBox__container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.common__checkBox__input,
.common__radioButton__input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */
.common__checkBox {
    position: absolute;
    top: 0;
    border-radius: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

.checkBox__container:hover input ~ .common__checkBox {
    background-color: #ccc;
}

.checkBox__container input:checked ~ .common__checkBox {
    background-color: #2196f3;
}

.common__checkBox:after {
    content: "";
    position: absolute;
    display: none;
}

.checkBox__container input:checked ~ .common__checkBox:after {
    display: block;
}

.checkBox__container .common__checkBox:after {
    left: 7px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*Create a custom Radio Button*/
.common__radioButton {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

.checkBox__container:hover input ~ .common__radioButton {
    background-color: #ccc;
}

.checkBox__container input:checked ~ .common__radioButton {
    background-color: #2196f3;
}

.common__radioButton:after {
    content: "";
    position: absolute;
    display: none;
}

.checkBox__container input:checked ~ .common__radioButton:after {
    display: block;
}

.checkBox__container .common__radioButton:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


.chatomate--form select {
    padding: 5px;
    width: 100%;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.common__error {
    margin: 0;
    position: absolute;
    text-align: start;
    padding: 0 2px;
    color: red;
    font-size: 10px;
    left: 0px;
}

.common__form__label {
    font-size: 14px;
    margin-top: 10px;
}

.common__form__input {
    position: relative;
}

.bot-icon-parent {
    display: flex;
    align-items: center;
}

.rating--container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--header-bg-color);
    border-radius: 5px;
    margin: 15px 20px 0 0;
    padding: 10px;
}

.rating--container-user {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    margin: 15px 20px 0 0;
    padding: 0;
}

.rating--container-user-restore {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    margin: 15px 20px 0 0;
    padding: 0;
}

.rating-icon--parent {
    height: 24px;
    color: var(--header-bg-color);
    cursor: default;
}

.rating-button {
    text-align: end;
    margin-right: 15px;
}

.upload--container {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--header-bg-color);
    border-radius: 5px;
    margin: 20px;
    padding: 20px;
}

.upload-icon--parent {
    height: 24px;
    color: var(--header-bg-color);
}

.upload-text--container {
    line-height: 24px;
    margin-left: 10px;
    color: var(--header-bg-color);
}

.file-progress,
.file-progress:after {
    border-radius: 50%;
    width: 2em;
    height: 2em;
}

.file-progress {
    font-size: 5px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid var(--header-bg-color);
    margin-right: 10px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.mb-0{
    margin-bottom: 0px !important;
}

.parent-form-container{
    margin: 10px;
    box-shadow: rgba(116, 129, 141, .1) 0 3px 15px 0px  ;

}

@media only screen and (min-device-width: 310px) and (max-device-width: 600px) {
    .bot_input .input_text {
        font-size: 16px !important;
    }

    select , input[type="text"] {
        font-size: 16px;
    }

    .bot_chat_area .bot_message {
        margin-left: 0px;
    }
    .human-pixel-user-messages {
        margin-right: 10px;
    }
}

/* STLYES FOR PREVIEW WIDGET | START */
.full-screen-preview .bot_header_parent {
    height: 51px;
    background-color: transparent !important;
}
.full-screen-preview .bot_area {
    background-color: transparent !important;
    width: 100%;
    right: 0 !important;
    max-height: 0px !important; 
    box-shadow: none;
    top: -10px !important;
    bottom: inherit !important;
    height: calc(100vh - 20px) !important;
}
.full-screen-preview .chat_area_container {
    background-color: transparent !important;
    height: calc(100% - 101px);
    padding-top: 0px;
}
.full-screen-preview .bot_header_color {
    color: #2198fa;
}
.full-screen-preview .bot__container {
    height: calc(100vh - 20px) !important;
}
.full-screen-preview .human-pixel-bot-messages,
.full-screen-preview .human-pixel-user-messages {
    max-width: 55%;
    font-size: 16px;
}
.full-screen-preview .human-pixel-bot-messages-text {
    white-space: unset;
}
.full-screen-preview .owl-carousel {
    width: 520px !important;
}
.full-screen-preview .slider .owl-nav button.owl-next {
    right: 8px !important;
}
.full-screen-preview .datepicker-inline {
    justify-content: unset;
    margin-left: 20px;
}
.full-screen-preview .date_button--container {
    justify-content: unset;
    margin-left: 5px;
    width: 388px;
}
.full-screen-preview .bot_input {
    width: calc(100% - 80px);
    margin-left: 20px;
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 15px;
    bottom: -21px;
}
.full-screen-preview .div-width.input {
    box-shadow: 0 0 0 0 !important;
    border: 1px solid #e7ecf2;
    border-radius: 10px;
    overflow: hidden;
}
.full-screen-preview .send_btn {
    background-color: #2198fa !important;
    border-radius: 10px;
    margin-left: 15px !important;
    width: 46px !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    justify-content: center;
    color: #fff !important;
}
/* STLYES FOR PREVIEW WIDGET | END */

.disabled-area {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}
.main-bubble-message-div {
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 100px;
}

.widget-bubble-message {
    background-color: var(--widget-bubble-message-bg-color);
    color: var(--widget-bubble-message-text-color);
    max-width: 240px;
    max-height: 110px;
    border-radius: 8px;
    position: fixed;
    bottom: 100px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 13px;
}
.close-message-icon {
    position: absolute;
    right: 0;
    top: -30px;
    background: #4e4f50;
    border-radius: 100%;
    font-size: 18px;
    cursor: pointer;
    color: white;
    padding: 2px;
    display: none;
    height: 18px;
    width: 18px;
}

.bubble-message-span {
    max-height: 90px;
    height: 100%;
    overflow: auto;
    padding: 10px;
    display: block;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.bubble-message-span::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}