@charset "utf-8";
/* 
	CSS 크로스브라우징 
*/
/* 
	텍스트 관련
*/
/* 
	삼각형 만들기 
*/
/* 
	CSS3 효과
	=====
	example)
		elem {
			.box_shadow(2px 2px 10px rgba(0,0,0,.2));
		}
*/
/* 
	CSS3 애니메이션 
	=====
	example)
	.keyframes(fade-in;{
		0% { opacity: 0; }
		100% { opacity: 1; }
	});
	.animation(fade-in 0.2s linear infinite alternate)
*/
/* 
	미디어쿼리
	-----
	example )
		elem {
			@media @mobile {
				attr : value;
	    }
		}
*/
.DLab_Talk {
  display: block;
}
.DLab_Talk .inner {
  margin: 0 auto;
}
.DLab_Talk .inner .list > li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 80px;
  font-size: 1rem;
}
.DLab_Talk .inner .list > li:last-child {
  margin-bottom: 0;
}
.DLab_Talk .inner .list > li .profile {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.DLab_Talk .inner .list > li .profile > img {
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .DLab_Talk .inner .list > li .profile {
    top: 15px;
    width: 30px;
    height: 30px;
  }
}
.DLab_Talk .inner .list > li .name {
  margin-bottom: 5px;
  line-height: 1.5;
}
.DLab_Talk .inner .list > li .msg {
  position: relative;
  display: inline-block;
  padding: 15px;
  max-width: 70%;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: skyblue;
  color: #fff;
}
.DLab_Talk .inner .list > li .msg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-right-color: skyblue;
  border-right-width: 30px;
  border-left: 0;
  border-top: 0;
  margin-left: -20px;
}
@media only screen and (max-width: 768px) {
  .DLab_Talk .inner .list > li .msg {
    padding: 15px;
    max-width: 98%;
  }
  .DLab_Talk .inner .list > li .msg::before {
    border: 12px solid transparent;
    border-right-color: skyblue;
    border-right-width: 15px;
    border-left: 0;
    border-top: 0;
    margin-left: -12px;
  }
}
.DLab_Talk .inner .list > li.me {
  padding-left: 0;
  padding-right: 80px;
  text-align: right;
}
.DLab_Talk .inner .list > li.me .profile {
  left: auto;
  right: 0;
}
.DLab_Talk .inner .list > li.me .name {
  text-align: right;
}
.DLab_Talk .inner .list > li.me .msg {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: #ffee00;
  color: #000;
  text-align: left;
}
.DLab_Talk .inner .list > li.me .msg::before {
  position: absolute;
  left: auto;
  right: 0;
  border: 20px solid transparent;
  border-left-color: #ffee00;
  border-left-width: 30px;
  border-right: 0;
  border-top: 0;
  margin-right: -20px;
}
@media only screen and (max-width: 768px) {
  .DLab_Talk .inner .list > li.me .msg::before {
    border: 12px solid transparent;
    border-left-color: #ffee00;
    border-left-width: 15px;
    border-right: 0;
    border-top: 0;
    margin-right: -12px;
  }
}
@media only screen and (max-width: 768px) {
  .DLab_Talk .inner .list > li {
    margin-bottom: 10px;
    padding-left: 50px;
    font-size: 0.8rem;
  }
  .DLab_Talk .inner .list > li.me {
    padding-right: 50px;
  }
}
