﻿body {
}

.ConversationHistoryBox {
    height: 300px;
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
    text-wrap:normal;
    overflow-wrap:break-word;
    overflow-y:auto;
    
}

.botReply a {
    color: darkblue;
}

.middlebox .textBox {
    padding:0 30px 0 30px;
}

.customerMessage {
    background-color: lightgray;
    color:black;
    border-radius: 20px;
    margin-top:10px;
    padding: 8px 15px 8px 15px;
    display: inline-table;
    font-weight: 400;
    max-width: 75%;
    text-align:left;
    width:auto;
}

.botReply {
    background-color: #f2d5e8;
    color: black;
    width:auto;
    border-radius: 20px;
    padding: 8px 15px 8px 15px;
    margin-top: 10px; 
    display: inline-table;
    max-width: 95%;
    text-align:left;

}
.botRight {
    text-align:right;
}
.ConversationHistoryBox {
    padding: 5px 10px 20px!important;
}

.botLeft:before {
    content: "";
    display: inline-table;
    background: url(../Images/TonyBot.png) no-repeat;
    width: 25px;
    height: 25px;
    float: left;
}

.botRight:before {
    content: "";
    display: inline-table;
    background: url(../Images/human.png) no-repeat;
    width: 25px;
    height: 25px;
    float: right;
}
.botTextBox{
    background:rgba(255,255,255,.85);
    margin-top:1px;
}
.botModalHeader {
    border-bottom: 1px solid rgb(182 226 251);
}
.botModalContent {
    background: rgb(182 226 251);
}
.botModalBody{
    padding:0px;
}
#startbutton {
    position: relative;
    bottom: 40px;
    background-color: aliceblue;
    border: 2px solid #819aa9;
    border-radius: 50px;
    font-family: 'Open Sans';
    color: #819aa9;
    font-weight: 400;
    font-size: 1.2em;
    cursor: pointer;
    overflow: hidden;
}
#canvas {
    display:none;
}
.output {
    display:none;
}

@media only all and (max-width: 700px) {
    .mobile-height {
        height: 100%;
    }

    .botModalBody {
        height: 92%;
    }

    #CustomerInputTbx {
        bottom: 10px;
        position: absolute;
    }

    .ConversationHistoryBox {
        height: 92% !important;
    }

    .BotInterface {
        height: 100%;
    }

    .arrowme {
        bottom: 18px!important;
    }
}

.arrowme {
    bottom: 10px;
    cursor: pointer;
    width: 30px;
    text-align: center;
    position: absolute;
    right: 15px;
}