.display-via-webview *,
.display-via-webview *::before,
.display-via-webview *::after {
  box-sizing: border-box;
}

.display-via-webview .content-header {
    display: none;
}
body:not(.toolbar-tray-open).display-via-webview .layout-container {
    background-color: #E1F5E9;
    min-height: calc(100vh - 1px);
    margin: 0;
    padding-top: 50px;
    position: relative;
}
.display-via-webview .page-content {
    margin: 0;    
}
.display-via-webview .fieldset {
    border: none;
    box-shadow: none;
    margin: 0;
}
.display-via-webview .fieldset .fieldset__wrapper {
    margin: 0;
}
.display-via-webview #chat-container {
    border: none;
    padding: 0 25px 154px;
}
#chat-box {
    border: none;
    height: auto;
    margin-bottom: 0;
}
.ai-starting,
.ai-question {
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 5px 0 5px 60px;
    position: relative;
}
.ai-starting::before,
.ai-question::before {
    background: url(../images/user-icon.svg) center center no-repeat;
    background-size: 20px 20px;
    border: #82D78A 1px solid;
    border-radius: 50%;
    color: #000;
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    left: 0;
    top: 3px;
}
.ai-starting::before {
    background: url(../images/ai-icon.svg) center center no-repeat;
    background-size: 20px 20px;
}
.ai-answer {
    background: url(../images/ai-icon.svg) 25px 33px no-repeat;
    background-size: 30px 30px;
    border: #7E7E7E 1px solid;
    border-radius: 25px;
    color: #414141;
    font-size: 25px;
    padding: 30px 30px 30px 75px;
}
#chat-input-container {
    background-color: #F2FFF7;
    display: block;
    width: 100%;    
    padding: 25px;   
    position: fixed;
    left: 0;
    bottom: 0;    
}
#user-input {
    border: #82D78A 1px solid;
    color: #4F4F4F;
    font-size: 25px;
    line-height: 1.6;
    width: 100%;
    height: 80px;
    padding-left: 30px;
    padding-right: 82px;
}
#send-button {
    background: #16A9A4 url(../images/confirm-btn.svg) 54% center no-repeat;
    background-size: auto 24px;
    border: none;
    border-radius: 50%;
    text-indent: -9999px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
    position: absolute;
    top: 35px;
    right: 36px;
}

/* Internal Message Chat */
#internal-message-chat-container {
    background-color: #E1F5E9;
    text-align: center;
    padding: 25px 25px 125px;
}
#internal-message-chat-container .msg-date {
    background-color: #fff;
    border-radius: 40px;
    font-size: 20px;
    line-height: 29px;
    display: inline-block;
    padding: 5px 22px;
    margin: 0 auto 25px;
}
.history-message {
    border-radius: 40px;    
    text-align: left;    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 25px;
}
.history-message div:first-child {
    color: #000;
    font-size: 30px;
    line-height: 43.5px;
}
.history-message div:nth-child(2) {
    font-size: 20px;
    line-height: 43.5px;
}
.history-message div:last-child {
    width: 100%;
    font-size: 25px;
    line-height: 40px;    
}
.history-message.msg-other {
    background-color: #fff;
    border-bottom-left-radius: 5px;
    color: #414141;
    margin-right: 25px;
}
.history-message.msg-own {
    background-color: #4E7AA3;
    border-bottom-right-radius: 5px;
    color: #fff;
    margin-left: 25px;
}
.history-message.msg-own div {
    color: #fff;
}