﻿/* pertains to the virtualAssistant dialog */
#virtualAssistantHeader{
    border-bottom: solid 4px #009530;
    min-width: 240px;
}

#virtualAssistantBodyDiv{
    background: white;
    overflow: auto;
    text-align: justify;
    padding: 20px 20px 0 20px;
    height: -webkit-calc(100% - 204px);
    height: -moz-calc(100% - 204px);
    height: calc(100% - 204px);
}

.virtAssistText{
    font-size: 18px;
}

#virtualAssistantDialogArea{
    height: -webkit-calc(100% - 71px);
    height: -moz-calc(100% - 71px);
    height: calc(100% - 71px);
    overflow: auto;
    margin-bottom: 10px;
}

.virtualAssistantInputContainer{
    display: flex;
    align-items: center;
    text-align: center;
}

#virtualAssistantUserInputDiv{
    height: 41px;
    margin: 0 20px;
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    width: calc(100% - 120px);
    border: solid 1px #9FA0A4;
}

#virtualAssistantUserInput{
    width: 100%;
    height: 100%;
    border: none;
    resize: none;
    overflow: auto;
    box-sizing: border-box;
    font-size: 14px
}

.virtualAssistantImageDivs{
    width: 40px;
}

.virtualAssistantDialogIcons{
    height: 40px;
    width: 40px;
}

.virtualAssistantQuestions{
    margin: 0 20px;
    color: #626469;
    font-weight: bold;
    font-size: 14px;
}

.virtualAssistantOptions{
    color: #42B4E6;
}

.virtualAssistantUserQuestions{
    color: #E47F00;
    margin-left: auto;
    margin-right: 10px;
    font-weight: bold;
    font-size: 14px;
}

.vaResponseContainer{
    display: flex;
    align-items: center;
}

#vaRec{
    width: 40px;
    height: 40px;
    box-sizing: border-box;
}

#vaRecText {
    color: #626469;
}

#vaResponse{
    height: -webkit-calc(100% - 40px);
    height: -moz-calc(100% - 40px);
    height: calc(100% - 40px);
}

.virtualAssistantLinkContainer{
    margin: 0 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.virtualAssistantLinks{
    background: #42B4E6;
    text-decoration: none;
    background: #42B4E6;
    padding: 5px 10px;
    height: 14px;
    line-height: 14px;
    width: 70px;
    text-align: center;
    cursor: pointer;
}