span.headlineChat {
    width:76%;
    padding: 0 2% 5% 0%;
}

.sideModal span.alignRight {
    width: 46%;
}

#chat label{
    display: block;
    color: white;
}

#chat input{
    background-color: transparent;
    border: 1px solid white;
    border-radius: 5px;
    height: 35px;
    width: 90%;
    color: white;
    padding-left: 10px;
    outline: none;
    margin-top: 10px;
}

#chat button{
    background-color: rgba(255,255,255,0.3);
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    padding: 8px 30px;
    outline: none;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
}

#chat button:hover{
    background-color: rgba(255,255,255,1);
    color: #F36F20;
}

#chat input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255,255,255,0.5);
}
#chat input::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255,255,255,0.5);
}
#chat input:-ms-input-placeholder { /* IE 10+ */
  color: rgba(255,255,255,0.5);
}
#chat input:-moz-placeholder { /* Firefox 18- */
  color: rgba(255,255,255,0.5);
}

.chooseBar{
    z-index: 10;
    right: 0px;
    transition: 0.3s ease-in-out;
}

.chooseBar a{
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: block;
    font-weight: 300;
    padding-left: 10px;
}

.chooseBar hr{
    width: 100%;
    border: none;
    background-color: rgba(255,255,255,0.2);
}

.chooseBar a img{
    width: 12px;
    vertical-align: baseline;
    padding-left: 10px;
    transform: translateX(0px);
    transition: 0.3s;
}

.chooseBar a:hover > img{
    transform: translateX(40px);

}

#agentName{
    font-weight: bold;
}

.fullSideModal.chat span{
    font-weight: 300;
}

.fullSideModal.chat{
    height: 615px;
    padding: 30px 10px 10px 30px;
    top: initial;
    bottom: 0px;
    width: 30%;
    max-width: 480px;
    min-width: 320px;
}

.fullSideModal.chat p {
    padding-bottom: auto;
    opacity: 1;
}

.messagesHolder{
    height: 420px;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
}

/* width */
.messagesHolder::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.messagesHolder::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px white; 
  border-radius: 6px;
}
 
/* Handle */
.messagesHolder::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.5); 
  border-radius: 6px;
}

/* Handle on hover */
.messagesHolder::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,1); 
}

.fullSideModal.chat hr{
    background-color: rgba(255,255,255,0.5);
    border: none;
    height: 1px;
}


p.messageLeft, p.messageRight{
    padding: 15px !important;
    width: 75%;
    border-radius: 10px;
}

p.messageLeft{
    border: 1px solid white;
    color: white !important;
}

p.messageRight{ 
    margin-left: 8%;
    background-color: white;
    color: #F36F20 !important;
}

.chatWrite textarea{
    border: 1px solid ;
    width: 243px;
    height: 50px;
    padding: 10px;
    border-radius: 10px;
    margin-right: 10px;
    color: white;
    outline: none;
    background-color: transparent;
    height: 80px;
    resize: none;
}

.chatWrite textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.chatWrite textarea::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.chatWrite textarea:-ms-input-placeholder { /* IE 10+ */
  color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.chatWrite textarea:-moz-placeholder { /* Firefox 18- */
  color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.chatWrite button{
    background-color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
    outline: none;
}

.chatModal {
    width: 30%;
    max-width: 480px;
    min-width: 320px;
    position: fixed;
    background-color: #F36F20;
    z-index: 92;
    display: block;
    top: 50%;
    right: -120%;
    transform: translateY(-50%);
    transition: 0.3s;
    padding: 2%;
}

.chatModal.active {
    right: 0%;
}

.headline {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 20px;
    color: #FFFFFF;
    padding: 0 2% 5% 2%;
    display: inline-block;
    text-align: left;
    width: 46%;
}