html {
    height: 100%;
    padding: 0;
    margin: 0;
    background-Color: #00a9e0;
    font-family: "Comfortaa",Arial, Helvetica, sans-serif;
}

body {
    font-size: 13px;
    margin: 0;
    padding: 0;
    height: 80%;
}

#container {
    background: White;
    margin: 5px 50px;
    max-width: 800px;
    padding: 30px;
    margin-top: 35px;
    height: 100%;
/*border: 1px red solid;*/
}

#header:before,
#header {

    font-family: "Comfortaa", Helvetica, Arial, sans-serif;
    background-color: White;
/*    padding-bottom: 13px;*/
/*    border: 1px red solid;*/
margin-bottom: 20px;
}
 
#header {
    background-image: none;
    height: 15%;
}

#header:before {
    content: "";
    display: block;
    position: relative;
    margin-bottom: -56px;
    height: 56px;
    top: -150px;
border: 1px red solid;
}

h1 {
    margin: -20px -32px 20px;
    width: 100%;
    color: #ff7f27;
/*    text-transform: uppercase;*/
    font-size: 36px;
    font-weight: bold;
    padding: 0 32px 25px;
/*border: 1px red solid;*/
}

fieldset {
    border: none;
    margin: 0 -1px 10px;
    padding: 0 1px;
}

fieldset label {
    display: block;
    font-size: 14px;
    margin: 7px 0 9px;
    color: #2e4353;
}

fieldset select,
fieldset input {
    background: #CCCCCC
    border: 1px solid #666666;
    color: #2e4353;
    width: 230px;
}

fieldset input {
    padding: 6px 0 6px 10px;
}

#btnStartChat,
#btnSend,
#btnQuit {
    white-space: nowrap;
    font-size: 12px;
    width: 45%;
    padding: 5px 0;
    margin-right: 8px;
    border-radius: 5px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    background: #ff660a;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
}
#btnQuit {
    background: #2e4353;
}

/* BEGIN: WebChatClient specific styling */
#chatEditorPanel {
    height: 85%;
}

#chatEditorForm {
    height: 100%;
}

#chatMessageOutput,
#chatMessageInput {
    font-family: Helvetica, Arial, sans-serif;
    border: 1px solid #999999;
    chatMessageOutputpadding: 20px;
    margin-bottom: 20px;
    line-height: 24px;
    font-size: 14px;
}

#chatMessageOutput {
	height: 55%;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
}

#chatMessageOutput .chatUserName {
    color: #000000;
    font-weight: bold;
}

/*CUSTOMER TEXT*/
#chatMessageOutput .chatMessage {
    color: #666666;
font-style: italic;
}

AGENT TEXT*/
#chatMessageOutput .agentMessage {
    color: #2e4353;
}

#chatMessageInput {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    background: #FFFFFF;
    height: 20%;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
	resize: none;
}
#submit,
#chatEditorActions {
    padding-bottom: 15px;
	height: 20%;
}

p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666666;
}
p > span {
    color: #666666 !important;	
}
ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
a {
    color: #ff7f27;
}

/*END: WebChatClient specific styling */