/*
 * botui 0.3.6
 * A JS library to build the UI for your bot
 * https://botui.org
 *
 * Copyright 2018, Moin Uddin
 * Released under the MIT license.
*/

style {
    background-color: rgb(70, 23, 56);
}

element.style {
    height: 200vh;
    background-repeat: no-repeat;
}

a.botui-message-content-link:focus {
    outline: thin dotted
}

a.botui-message-content-link:focus:active, a.botui-message-content-link:focus:hover {
    outline: 0
}

form.botui-actions-text {
    margin: 0
}

button.botui-actions-buttons-button, input.botui-actions-text-input {
    /* margin-bottom: 50px; */
    font-size: 16px;
    line-height: normal;
}

button.botui-actions-buttons-button::-moz-focus-inner, input.botui-actions-text-input::-moz-focus-inner {
    border: 0;
    padding: 0
}

button.botui-actions-buttons-button {
    cursor: pointer;
    -webkit-appearance: button
}

.botui-app-container {
    width: 100%;
    height: 100%;
    line-height: 1
}

@media (min-width:400px) {
    .botui-app-container {
        width: 400px;
        height: 500px;
        margin: 0 auto
    }
}

.botui-container {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden
}

@media (min-width:1024px) {
    .botui-app-container {
        padding-top: 80px;
        height: 95vh;
    }
    .botui-container {
        height: 98%
    }
}

@media (min-width:768px) {
    .botui-app-container {
        padding-top: 80px;
    }
    .botui-container {
        height: 85vh
    }
}

.botui-message {
    margin: 10px 0;
    min-height: 20px
}

.botui-message:after {
    display: block;
    content: "";
    clear: both
}

.botui-message-content {
    width: auto;
    max-width: 75%;
    display: inline-block
}

.botui-message-content.human {
    float: right;
}

.botui-message-content iframe {
    width: 100%
}

.botui-message-content-image {
    margin: 5px 0;
    display: block;
    max-width: 200px;
    max-height: 200px
}

.botui-message-content-link {
    text-decoration: underline
}

.profil {
    position: relative;
    border-radius: 50%
}

.profil.human {
    content: url(images/chat.jpg);
    border-radius: 80%;
    height: 30px;
    width: 30px;
    float: right;
    margin-left: 5px
}

.profil.agent {
    float: left;
    margin-right: 5px
}

.profil>img {
    width: 31px !important;
    height: 35px !important;
}

.profil>img.agent {
    background: url(images/dp.png);
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    /* height: 30px;
 width: 30px; */
}

.profil.human>img.agent {
    content: url(images/chat.jpg);
    border-radius: 80%;
    height: 30px;
    width: 30px;
}

button.botui-actions-buttons-button {
    margin-top: 10px;
    margin-bottom: 10px
}

button.botui-actions-buttons-button:not(:last-child) {
    margin-right: 10px
}

body {
    height: 500vh;
    background-repeat: no-repeat;
    /* background-image: url(images/1.png); */
}

/* @media only screen and (min-width: 1024px) {
    element.style {
        height: 200vh;
        background-repeat: repeat;
        background-image: url(../images/hero.png);
    }
} */





