
.floating-chat {
  z-index: 111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transform: translateY(70px);
  transition: all 250ms ease-out;
  border-radius: 50%;
  opacity: 0;
  background:transparent;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.floating-chat.enter:hover {
  /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);*/
}
.floating-chat.enter {
  transform: translateY(0);
  opacity: 1;
  /*box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);*/
}
.floating-chat .fa-comments{
    font-size:20px;
}
.floating-chat.expand {
  width: 300px;
  max-height: 500px;
  height: 500px;
  border-radius: 5px;
  cursor: auto;
  opacity: 1;
  background:#ffffff;
  color:#000000;
}
.floating-chat :focus {
  outline: 0;
  box-shadow: none;
}
.floating-chat button {
    background: transparent;
    border: 0;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}
.floating-chat #sendMessage{
    background: #232f3e;
    font-size: 12px;
    padding: 5px 10px;
}
.floating-chat .chat {
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  transition: all 250ms ease-out;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.floating-chat .chat.enter {
  opacity: 1;
  border-radius: 0;
  margin: 0px;
  width: auto;
  height: auto;
}
.floating-chat .chat .header {
  flex-shrink: 0;
  padding: 10px;
  display: flex;
  background: #fe0000;
  color:#ffffff;
  font-weight: 600
}
.floating-chat .chat .header .title {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0 5px;
}
.floating-chat .chat .header button {
  flex-shrink: 0;
}
.floating-chat .chat .messages {
  padding: 10px;
  margin: 0;
  list-style: none;
  overflow-y: scroll;
  overflow-x: hidden;
  flex-grow: 1;
  border-radius: 4px;
  background: transparent;
}
.floating-chat .chat .messages::-webkit-scrollbar {
  width: 5px;
}
.floating-chat .chat .messages::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: rgba(25, 147, 147, 0.1);
}
.floating-chat .chat .messages::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(25, 147, 147, 0.2);
}
.floating-chat .chat .messages li.so {
  position: relative;
  clear: both;
  display: inline-block;
  margin: 0 0 15px 0;
  background-color: rgb(234, 237, 237);
  word-wrap: break-word;
  max-width: 100%;
  font-size: 12px;
  cursor: pointer;
}
#suggestions{
    clear: both;
}
.floating-chat .chat .messages li.suggest {
    /*display: inline-block;*/
}
.floating-chat .chat .messages li .chatmessages{
    padding-bottom: 10px;
    border-bottom: 5px solid #fff;
    padding: 14px;
    word-break: break-word;
}
.chatmessages a{
    color: blue;
    text-decoration: underline;
}
.floating-chat .chat .messages li.so:before {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  content: '';
  background-size: cover;
}
.floating-chat .chat .messages li.so:after {
  position: absolute;
  top: 10px;
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid rgb(234, 237, 237);
}
.floating-chat .chat .messages li.other {
  animation: show-chat-odd 0.15s 1 ease-in;
  -moz-animation: show-chat-odd 0.15s 1 ease-in;
  -webkit-animation: show-chat-odd 0.15s 1 ease-in;
  float: right;
  margin-right: 45px;
  color: #000000;
}
.floating-chat .chat .messages li.other:before {
  right: -45px;
  background-image: url(https://www.excess2sell.com/css/images/user1.png);;
}
.floating-chat .chat .messages li.other:after {
  border-right: 10px solid transparent;
  right: -10px;
}
.floating-chat .chat .messages li.self {
  animation: show-chat-even 0.15s 1 ease-in;
  -moz-animation: show-chat-even 0.15s 1 ease-in;
  -webkit-animation: show-chat-even 0.15s 1 ease-in;
  float: left;
  margin-left: 45px;
  color: #000000;
}
.floating-chat .chat .messages li.self:before {
  left: -45px;
  background-image: url(https://www.excess2sell.com/css/images/e2s-smart-self.png);
}
.floating-chat .chat .messages li.self:after {
  border-left: 10px solid transparent;
  left: -10px;
}
.floating-chat .chat .footer {
  flex-shrink: 0;
  display: flex;
  padding: 10px;
  max-height: 50px;
  background: transparent;
}
.loading{
  font-size:13px;
  color:#333;
  line-height: 0px;
  width: 39px;
}
.loading:after {
    content: ' .';
    animation: dots 1s steps(5, end) infinite;
    font-size: 40px;
    position: relative;
    top: -7px;
    color: #fe0000;
}

@keyframes dots {
  0%, 20% {
    color: rgba(0,0,0,0);
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);}
  40% {
    color: white;
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);}
  60% {
    text-shadow:
      .25em 0 0 white,
      .5em 0 0 rgba(0,0,0,0);}
  80%, 100% {
    text-shadow:
      .25em 0 0 white,
      .5em 0 0 white;}
}


[contentEditable=true]:empty:not(:focus):before{
    content:attr(data-text)
}

.floating-chat .chat .footer .text-box {
  border-radius: 3px;
  background: #eaeded;
  border:1px solid #ddd;
  min-height: 100%;
  width: 100%;
  margin-right: 5px;
  color: #000000;
  overflow-y: auto;
  padding: 5px 5px;
  font-size: 12px
}

.floating-chat .chat .footer .text-box::-webkit-scrollbar {
  width: 5px;
}
.floating-chat .chat .footer .text-box::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: rgba(25, 147, 147, 0.1);
}
.floating-chat .chat .footer .text-box::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(25, 147, 147, 0.2);
}

@keyframes show-chat-even {
  0% {
    margin-left: -480px;
  }
  100% {
    margin-left: 0;
  }
}
@-moz-keyframes show-chat-even {
  0% {
    margin-left: -480px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes show-chat-even {
  0% {
    margin-left: -480px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes show-chat-odd {
  0% {
    margin-right: -480px;
  }
  100% {
    margin-right: 0;
  }
}
@-moz-keyframes show-chat-odd {
  0% {
    margin-right: -480px;
  }
  100% {
    margin-right: 0;
  }
}
@-webkit-keyframes show-chat-odd {
  0% {
    margin-right: -480px;
  }
  100% {
    margin-right: 0;
  }
}


.chat-suggestions{
    text-align: center;
    margin-bottom: 10px
}
.chat-suggestions ul li{
    clear: none !important;
    padding: 4px 5px !important;
    margin: 0px 2px 5px !important;
    background-color: transparent;
    word-wrap: inherit !important;
    max-width: initial !important;
    color: #000;
    border: 1px solid #fe0000;
    border-radius: 100px !important;
    display: inline-block;
    font-size: 12px;
}
.chat-suggestions ul li:hover{
    background: #fe0000;
    color:#fff;
}
.chat-suggestions ul li:hover a{
    color:#fff;
}
.chat-suggestions ul li a{
    display: block
}
.chat-menu{
    padding: 0px;
    margin-right: 5px;
}
.chat-menu img{
    width: 30px
}
.dropup  .dropdown-menu{
    background: #fe0000;
    font-size: 12px;
    padding: 0px
}
.dropup  .dropdown-menu li{
    display: block;
    border-bottom:1px solid #ffffff;
}
.dropup  .dropdown-menu li:last-child{
    border-bottom:0px solid #ffffff;
}
.dropup  .dropdown-menu li a{
    color:#ffffff;
    display: block;
    padding: 5px;
    cursor: pointer;
}
.dropup .dropdown-menu > li > a:hover, .dropup .dropdown-menu > li > a:focus,
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #a90b0e !important;
}
.cproduct-list{
    padding:10px 0px;
}
.cproduct-list .cblock{
    display: flex;
    padding-left:5px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dcdcdc;
}
.cproduct-list .cblock:last-child{
    display: flex;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px solid #dcdcdc;
}
.cproduct-list .cblock .cproduct-image img{
    width:90px;
    margin-right:10px;
}
.cproduct-list .cblock .cpdoduct-desc{

}
.cproduct-list .cblock .cpdoduct-desc h4{
    height: 38px;
    text-align: left;
    font-size: 13px;
    line-height: 19px;
    margin-bottom:5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cproduct-list .cblock .cpdoduct-desc .offer-price {
    color: #a00a0e;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
    padding-right: 5px;
}
.cproduct-list .cblock .cpdoduct-desc .actual-price {
    text-decoration: line-through;
    padding-left: 5px;
    color: #4a4a4a;
    font-size: 14px;
}
.cproduct-list .cblock .cpdoduct-desc .cmin-quant{
    color: #FF5722;
    font-size: 13px
}
.cproduct-list .cblock .cproduct-actions{
    margin-top: 8px;
    overflow: hidden;
}
.cproduct-list .cblock .cproduct-actions a{
    padding: 5px 5px;
    color:#fff;
    margin-right: 5px;
    border-radius: 3px;
    display: inline-block;
    float:left;
    font-size: 13px
}
.cproduct-list .cblock .cproduct-actions a:first-child{
    background: #fe0000;
}
.cproduct-list .cblock .cproduct-actions a:last-child{
    background: #232f3e;
}
.viewmore{
    margin:15px auto 10px;
    display: table
}
.viewmore a{
    font-size: 13px;
    text-align: center;
    background-color: #fe0000;
    color:#ffffff;
    padding: 5px 15px;
    border-radius: 3px
}
.alert-danger .badge{background-color: #fe0000;}
.newblock .e2s-product-name{margin-bottom: 5px !important}
.newblock .ph{height: auto !important;margin-bottom:10px;display: block}
.text-blue{    color: #2196f3;
    text-transform: uppercase;
    font-size: 14px;
    vertical-align: super;}