.msg-customer {
  text-align: right;
  margin-bottom: 14px;
}
.msg-customer .msg-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  height: 46px;
  color: #fff;
  background: #1D7ABD;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.msg-gabia {
  display: flex;
  margin-right: 70px;
}
.msg-gabia .msg-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 318px;
  width: 318px;
  margin-bottom: 14px;
  margin-left: 6px;
  padding: 16px;
  color: #333;
  background: #DEE6F0;
  word-break: break-all;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.msg-gabia .msg-box .blue-txt {
  color: #006FBA;
}
.msg-gabia .msg-box form {
	width: 100%;
}

.msg-gabia .msg-box .image-box {
  background: #fff;
  border-radius: 5px;
  width: 100%;
  height: 132px;
}

.msg-gabia .svg-bot {
  flex-shrink: 0;
}
.msg-gabia .msg-box .welcome-txt {
  width: 100%;
  margin-bottom: 10px;
  word-break: break-all;
}
.msg-gabia .msg-box .request-btn {
  display: block;
  width: 100%;
  background: #fff;
  height: 46px;
  color: #222;
  border: 1px solid #C0C7CB;
  border-radius: 5px;
  margin-bottom: 6px;
  transition: .2s background;
  cursor:pointer;
}

.msg-gabia .msg-box .request-btn:last-child {
  margin-bottom: 0;
}

.msg-gabia .msg-box .request-btn:hover {
  color: #fff;
  border: none;
  background-color: #2D95DB;
}

/* 링크 버튼 */
.msg-gabia .msg-box .link-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.msg-gabia .msg-box .link-btn-wrap .request-btn {
  position: relative;
  display: flex;
  width: calc(50% - 5px);
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: #177AC2;
}
.msg-gabia .msg-box .link-btn-wrap .request-btn::after {
  content: '\f062';
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  right: 2px;
  transform: rotate(45deg);
  font-size: 14px;
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.msg-gabia .msg-box .link-btn-wrap .request-btn:hover { 
  background-color: #fff;
  border: 1px solid #177AC2;
}
.msg-gabia .msg-box .link-btn-wrap .request-btn:nth-child(odd) {
  margin-right: 5px;
  margin-bottom: 10px;
}
.msg-gabia .msg-box .link-btn-wrap .request-btn:nth-child(even) {
  margin-left: 5px;
}
/* //링크 버튼 */

.msg-gabia .msg-box .loading {
  display: block;
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  animation: ani-loading .6s infinite;
}

.msg-gabia .msg-box .loading-1 {
  animation-delay: 0.2s;
}

.msg-gabia .msg-box .loading-2 {
  margin: 0 5px;
  animation-delay: 0.35s;
}

.msg-gabia .msg-box .loading-3 {
  animation-delay: 0.45s;
}
@keyframes ani-loading {
  0% {
    background: #ccc;
  }
  100% {
    background: #333;
  }
}
.msg-gabia .msg-box .search-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.msg-gabia .msg-box ._input {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 16px;
  width: 100%;
  height: 38px;
  background: #fff;
  border: 1px solid #C0C7CB;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  box-sizing: border-box;
}
.msg-gabia .msg-box .search-button {
  background: #fff;
  border: 1px solid #C0C7CB;
  border-left: 0;
  width: 38px;
  height: 38px;
  display: block;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  margin-left: -1px;
}
.msg-gabia .msg-box .search-button .fa-search {
  font-size: 20px;
  color: #1D7ABD;
}

.msg-gabia .msg-box a {
  color: #006FBA;
  text-decoration: underline;
}