.chat-ico{
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding:8px 12px 8px 12px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 9;
    background-color: #ff6600;
    color: #ffffff;
    cursor: pointer;
}

#buddies .active{
	color:#ff6600;
}

.mychatbox{
	height: 400px;
	background-color: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	z-index: 10000;
	position:fixed;
	bottom: 65px;
	right: 20px;
	border-radius: 10px;
	border-color: #333;
}

.mychat-left{
	height: 400px;
	background-color: #ccc;
	border-right: 1px solid #ccc;
	border-radius: 10px 0px 0px 10px;
}

.mychat-header-left{
	height: 30px;
	color:#ff6600;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	border-radius: 10px 0px 0px 0px;
}

.mychat-header-right{
	height: 30px;
	color:#ff6600;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	border-radius: 0px 10px 0px 0px;
}

.mychat-log{
	padding: 15px;
	width:100%;
	height:330px;
	overflow-x:hidden;
	overflow-y:scroll;
	/* border:1px solid #ccc; */
}

.mychat-send-ico{
	padding:10px;
	/* margin-left: -30px; */
	font-size: 12px;
	color:#666;
	cursor: pointer;
}

.mychat-logout{
	/* padding:3px; */
	/* border-radius: 2px; */
	/* background-color: #333; */
	color: #333;
	cursor: pointer;
}

.mychat-logout:hover{
	/* background-color: #ff6600; */
	color: #ff6600;
}

.mychat-shop{
display: flex;
margin-top: 2px;
border-bottom: 1px solid #fff;
padding-top:5px;
padding-bottom: 5px;
cursor: pointer;
}

.mychat-shop-logo-div{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	background-color: #eee;
}

.mychat-shop-logo{
	margin: auto;
	font-size: 1.2rem;
}

.mychat-shop-name{
	font-size:0.8rem;
	/* color:#fff; */
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 10px;
}

.mychat-shop-noti{
	font-size: x-small;
	background-color:#ff6600;
	position: absolute;
	margin-top: 0;
	margin-left: 30px;
	padding-left: 2px;
	padding-right: 2px;
	border-radius: 50%;
	color:white;
}

.chatbox{
	height:430px;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
	position:fixed;
	bottom:65px;
	right:20px;
	margin:0 0;
	z-index:100000;
}

.chat-header{
	width:100%;
	/* padding: 2px; */
	height:30px;
	color:#ff6600;	
    /* //background: #696; */
	box-sizing: border-box;
	background-color: #ffffff;
}

.chat-header input{
	width:60%;
	height:10px;
	border:2px solid #eee;
	border-radius:3px;
	padding:10px;
	font-size:18px;
	color:#333;
}

.chatlogs{
	padding:10px;
	width:100%;
	height:350px;
	overflow-x:hidden;
	overflow-y:scroll;
	box-sizing: border-box;
	border:1px solid #ccc;
}

.chatlogs::-webkit-scrollbar {
	width:10px;
}

.chatlogs::-webkit-scrollbar-thumb {
	border-radius:5px;
	background:rgba(0,0,0,.1);
}

.chat{
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	margin-bottom:10px;
}

.chat .user-photo{
	width:40px;
	height:40px;
	background:#ccc;
	border-radius:50%;
	overflow:hidden;
}

.chat .user-photo img{
	width:100%;
}

.chat .chat-message{
	width:auto;
	max-width: 70%;
	padding:10px;
	margin:5px 5px 0;
	border-radius:10px;
	color:#000;
	font-size:12px;
	/* //text-shadow:1px 1px #000; */
}

.friend .chat-message{
	/* //background:#1adda4; */
	background:#F3F3F3;
}

.self .chat-message{
	/* //background:#1ddced; */
	background:#CC9;
	order:-1;
	margin-left:auto;
}

.chat-form{
	display:flex;
	align-items:flex-start;
	/* padding:5px; */
	/* border-top:1px solid #ccc; */
}

.chat-form textarea{
	background:#fbfbfb;
	width:100%;
	height:30px;
	border:1px solid #eee;
	border-radius:3px;
	resize:none;
	padding:5px;
	font-size:12px;
	color:#ccc;
	margin-right:5px;
}

.chat-form textarea:focus{
	background:#fff;
	color:#666;
	outline: none;
}



.chat-form a{
	/* //background:#1ddced; */
	background:#696;
	padding:5px 15px;
	font-size:12px;
	color:#fff;
	border:none;
	margin:0 10px;
	border-radius:3px;
	box-shadow:0 1px 0 #033;
	cursor:pointer;
	text-decoration:none;
	
	/* -webkit-transition: background .2s ease; */
	/* -moz-transition: background .2s ease; */
	/* -0-transition: background .2s ease; */
}

.chat-form a:hover{
	background:#13c8d9;
}

#close-chat,.minim-button,.maxi-button{
	font-weight:700;
	cursor:pointer;
	font-family:Arial, Helvetica, sans-serif;
	text-align:center;
	height:20px;
	line-height:20px;
}
#close-chat{
	/* //border:1px solid #A8A8A8; */
	position:absolute;
	top:2px;
	right:2px;
	font-size:20px;
	/* //border:1px solid #dedede; */
	width:20px;
	background:#696;
	color:#dedede;
	z-index:2;
	
  background: #696;
  background: -moz-linear-gradient(#696, #284020);
  background: -o-linear-gradient(#696, #284020);
  background: -webkit-linear-gradient(#696, #284020);
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
  -moz-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
  
}
#minim-chat,#maxi-chat{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:20px;
	line-height:20px;
	cursor:pointer;
	z-index:1;
}

#chat-text a{
	padding:5px;
	text-decoration:none;
}

.minim-button{
	position:absolute;
	top:2px;
	right:26px;
	font-size:20px;
	/* //border:1px solid #dedede; */
	width:20px;
	background:#696;
	color:#dedede;
	
  background: #696;
  background: -moz-linear-gradient(#696, #284020);
  background: -o-linear-gradient(#696, #284020);
  background: -webkit-linear-gradient(#696, #284020);
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
  -moz-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
 
}
.maxi-button{
	position:absolute;
	top:2px;
	right:26px;
	font-size:20px;
	/* //border:1px solid #dedede; */
	width:20px;
	background:#696;
	color:#dedede;
	
  background: #696;
  background: -moz-linear-gradient(#696, #284020);
  background: -o-linear-gradient(#696, #284020);
  background: -webkit-linear-gradient(#696, #284020);
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
  -moz-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
  
}




