@font-face{
	font-family:"FuturaBook";
	src:url("fonts/1603820/5f7b009e-5016-43fc-b4a3-a2355bf1046d.eot?#iefix");
	src:url("fonts/1603820/5f7b009e-5016-43fc-b4a3-a2355bf1046d.eot?#iefix") format("eot"),url("fonts/1603820/a1ef081d-cde0-40ab-80ea-cdd191815fdf.woff2") format("woff2"),url("fonts/1603820/5e7fff96-2532-4976-bdd2-6b06d259fe5f.woff") format("woff"),url("fonts/1603820/d30cae86-129f-4955-a764-6b74fbf1f15d.ttf") format("truetype");
}
@font-face{
	font-family:"FuturaLight";
	src:url("fonts/1603848/b2c8a0bd-ee8a-4046-a0d9-12e4602f7868.eot?#iefix");
	src:url("fonts/1603848/b2c8a0bd-ee8a-4046-a0d9-12e4602f7868.eot?#iefix") format("eot"),url("fonts/1603848/33f3486d-94f1-4a84-8d93-9d52b15b8bc3.woff2") format("woff2"),url("fonts/1603848/0f45b023-06be-4302-b3fb-10515a026dcb.woff") format("woff"),url("fonts/1603848/0310aa35-c24b-4121-830c-6ef122f80f47.ttf") format("truetype");
}
@font-face{
	font-family:"FuturaMedium";
	src:url("fonts/1603852/083c105b-85d0-4bbe-9dee-28444981f57c.eot?#iefix");
	src:url("fonts/1603852/083c105b-85d0-4bbe-9dee-28444981f57c.eot?#iefix") format("eot"),url("fonts/1603852/29a20744-aef8-4148-8ed8-f7e3bed571ba.woff2") format("woff2"),url("fonts/1603852/4959279e-ec63-419c-a329-f0debc37b1a9.woff") format("woff"),url("fonts/1603852/3d2c8600-242b-46e2-94f5-966dae05592f.ttf") format("truetype");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'FuturaLight', sans-serif;
}
html,body{
    display: grid;
    height: 100%;
    place-items: center;
}

::selection{
    color: #fff;
    background: #003b4d;
}

::-webkit-scrollbar{
    width: 3px;
    border-radius: 25px;
}
::-webkit-scrollbar-track{
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
    background: #ddd;
}
::-webkit-scrollbar-thumb:hover{
    background: #ccc;
}

.ChatBotWrapper{
    width: 370px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid lightgrey;
    border-top: 0px;
}
.ChatBotWrapper .ChatBotTitle{
    background: #003b4d;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    border-radius: 5px 5px 0 0;
}
.ChatBotWrapper .ChatBotForm{
    padding: 20px 15px;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}
.ChatBotWrapper .ChatBotForm .Inbox{
    width: 100%;
    display: flex;
    align-items: baseline;
}
.ChatBotWrapper .ChatBotForm .ChatBotUserInbox{
    justify-content: flex-end;
    margin: 13px 0;
}
.ChatBotWrapper .ChatBotForm .Inbox .ChatBotIcon{
    height: 40px;
    width: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 16px;
    background: #5398a4;
	
}
.ChatBotWrapper .ChatBotForm .Inbox .ChatBotMsgHeader{
    max-width: 70%;
    margin-left: 10px;
}
.ChatBotForm .Inbox .ChatBotMsgHeader p{
    color: #fff;
    background: #5398a4;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 16px;
	hyphens: auto;
}
.ChatBotForm .ChatBotUserInbox .ChatBotMsgHeader p{
    color: #333;
    background: #efefef;
}
.ChatBotWrapper .ChatBotTypingField{
    display: flex;
    height: 60px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    background: #efefef;
    border-top: 1px solid #d9d9d9;
    border-radius: 0 0 5px 5px;
}
.ChatBotWrapper .ChatBotTypingField .ChatBotInputData{
    height: 40px;
    width: 335px;
    position: relative;
}
.ChatBotWrapper .ChatBotTypingField .ChatBotInputData input{
    height: 100%;
    width: 100%;
    outline: none;
    border: 1px solid transparent;
    padding: 0 80px 0 15px;
    border-radius: 3px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
}
.ChatBotTypingField .ChatBotInputData input:focus{
    border-color: #5398a4
}
.ChatBotInputData input::placeholder{
    color: #999999;
    transition: all 0.3s ease;
}
.ChatBotInputData input:focus::placeholder{
    color: #bfbfbf;
}
.ChatBotWrapper .ChatBotTypingField .ChatBotInputData button{
    position: absolute;
    right: 5px;
    top: 50%;
    height: 30px;
    width: 65px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    background: #003b4d;
    border: 1px solid #003b4d;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}
.ChatBotWrapper .ChatBotTypingField .ChatBotInputData input:valid ~ button{
    opacity: 1;
    pointer-events: auto;
}
.ChatBotTypingField .ChatBotInputData button:hover{
    background: #5398a4;
}

a{
	color: #003b4d;
}