<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css?family=Barlow');
.botui-app-container {
  margin-top: 40px;
}
.botui-container {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.botui-messages-container{
    padding:10px 20px
}
.botui-actions-container{
    padding:10px 20px
}
.botui-message{
    min-height:30px
}
/* .technology{
  padding:7px 13px;
  border-radius:15px;
  color:#fff;
  background-color:red;
} */
/*.botui-message-content{
    padding:7px 13px;
    border-radius:15px;
    color:#fff;
    background-color:#3498DB;
}*/
.botui-message-content {
    padding: 7px 13px;
    border-radius: 15px;
    color: #fff;
    background-color: #4d3a8f;
}
.career{
  background-color: white;
}
.botui-message-content.human{
    color:#f7f8f8;
    /* background-color:slateblue; */
background-color: #d5365a;
}
.botui-message-content.text{
    line-height:1.3
}

.botui-message-content.loading{
    background-color:white;
    color: black;
    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: 'Barlow', sans-serif;
    background-color:transparent;
    color:#000;
    border-bottom:2px solid #d5365a;
}
.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: 'Barlow', sans-serif;;
      background-color: cadetblue;
      background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/1674-200.png");
    box-shadow: 5px 6px 2px 0 rgba(49, 37, 37, 0.25);
  }
.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)
    }
}
</pre></body></html>