html,
body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

html {
    overflow-x: hidden;
}

body {
    background: #FC5C7D;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #6A82FB, #FC5C7D);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #6A82FB, #FC5C7D);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    overflow-x: hidden;
}

h3 {
    margin: 10px auto -30px 0;
    font-family: sans-serif;
    font-weight: bold;
    color: #fff
}

.botui-container {
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0);
    font-family: sans-serif; 
    font-weight: normal;
    overflow-y: hidden !important;
    height: auto !important;
}

.botui-messages-container {
    padding: 10px 20px
}

.botui-actions-container {
    padding: 0px 20px 30px 20px
}

.botui-message {
    min-height: 30px
}

.botui-message-content {
    padding: 7px 13px;
    border-radius: 15px;
    color: #595a5a;
    background-color: #ebebeb
}

.botui-message-content.human {
    color: #f7f8f8;
    background-color: #919292
}

.botui-message-content.text {
    line-height: 1.3
}

.botui-message-content.loading {
    background-color: rgba(206, 206, 206, .5);
    line-height: 1.3;
    text-align: center
}

.botui-message-content.embed {
    padding: 5px;
    border-radius: 5px
}

.botui-message-content-link {
    color: #919292
}

.botui-actions-text-input {
    border: 0;
    outline: 0;
    border-radius: 0;
    padding: 5px 7px;
    font-family: "Open Sans", sans-serif;
    background-color: transparent;
    color: #595a5a;
    border-bottom: 1px solid #919292
}

.botui-actions-text-submit {
    color: #fff;
    width: 30px;
    padding: 5px;
    height: 30px;
    line-height: 1;
    border-radius: 50%;
    border: 1px solid #919292;
    background: #777979
}

.botui-actions-buttons-button {
    border: 0;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 15px;
    border-radius: 4px;
    font-family: "Open Sans", sans-serif;
    background: #777979;
    box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, .25)
}

.poptitle {
    width: 100%;
    height: 100%;
    line-height: 3;
    background-color: rgba(255, 255, 255, 0.3);
    overflow-y: auto;
}

.popfooter {
    width: 100%;
    height: 100%;
    line-height: 1;
    background-color: rgba(255, 255, 255, 0.7)
}

.popcontainer {
    width: 100%;
    height: 100%;
}

.slide-fade-enter-active {
    transition: all .3s ease
}

.slide-fade-enter,
.slide-fade-leave-to {
    opacity: 0;
    transform: translateX(-10px)
}

.dot {
    width: .5rem;
    height: .5rem;
    border-radius: .5rem;
    display: inline-block;
    background-color: #919292
}

.dot:nth-last-child(1) {
    margin-left: .3rem;
    animation: loading .6s .3s linear infinite
}

.dot:nth-last-child(2) {
    margin-left: .3rem;
    animation: loading .6s .2s linear infinite
}

.dot:nth-last-child(3) {
    animation: loading .6s .1s linear infinite
}

@keyframes loading {
    0 {
        transform: translate(0, 0);
        background-color: #ababab
    }
    25% {
        transform: translate(0, -3px)
    }
    50% {
        transform: translate(0, 0);
        background-color: #ababab
    }
    75% {
        transform: translate(0, 3px)
    }
    100% {
        transform: translate(0, 0)
    }
}

button.botui-actions-buttons-button {
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}