
:root {
  --white: #fff;
  --black: #000;
  --bg: #f8f8f8;
  --grey: #999;
  --dark: #1a1a1a;
  --light: #e6e6e6;
  --wrapper: 100%;
  --blue: #00b0ff;
}
*{
        box-sizing: border-box;
}
body{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #fff;
}
.chat-wrapper {
  position: relative;
  left: 50%;
  width: var(--wrapper);
  height: 620px;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}

.chat-container {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.chat-container .left {
  position: relative;
  float: left;
  width: 25%;
  height: 100%;
  border: 1px solid var(--light);
  background-color: var(--white);
}

.chat-container .left .top {
  position: relative;
  width: 100%;
  height: 96px;
  padding: 29px 12px;
}

.chat-container .left input {
  float: left;
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--light);
  background-color: #eceff1;
  border-radius: 21px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
}
.chat-container .left input:focus {
  outline: none;
}
.chat-container .left a.search {
  display: block;
  float: left;
  width: 42px;
  height: 42px;
  margin-left: 10px;
  border: 1px solid var(--light);
  background-color: var(--blue);
  background-image: url("../img/name-type.png");
  background-repeat: no-repeat;
  background-position: top 12px left 14px;
  border-radius: 50%;
}

.chat-container .left .people {
  margin-left: -1px;
  border-right: 1px solid var(--light);
  border-left: 1px solid var(--light);
  width: calc(100% + 2px);
  height: 84%;
  overflow-x: hidden;
  overflow-y: auto;
}
.chat-container .left .people::-webkit-scrollbar,.chat_scroll::-webkit-scrollbar,.search_users::-webkit-scrollbar {
 width: 4px;
}
.chat-container .left .people::-webkit-scrollbar-track,.chat_scroll::-webkit-scrollbar-track,.search_users::-webkit-scrollbar-track {
  background-color:#fff;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius:2em;
}
.chat-container .left .people::-webkit-scrollbar-thumb,.chat_scroll::-webkit-scrollbar-thumb {
  background-color:#e6e6e6;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius:2em;
}
.chat-container .left ul{
  list-style:none;
  padding: 0;
  margin: 0;
}
.chat-container .left .people .person {
  position: relative;
  width: 100%;
  padding: 12px 10% 16px;
  cursor: pointer;
  background-color: var(--white);
}
.chat-container .left .people .person:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 80%;
  height: 1px;
  content: '';
  background-color: var(--light);
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
.chat-container .left .people .person img {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 50%;
}
.chat-container .left .people .person .person_head_gray { 
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}

.chat-container .left .people .person .session_info_item{
  display: flex;
  height: 24px;
  overflow: hidden;
  justify-content: space-between;
}
.chat-container .left .people .person .name {
  width: 60%;
  overflow: hidden;
  font-size: 14px;
  color: var(--dark);
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  display: inline-block;
}
.chat-container .left .people .person .time {
  font-size: 14px;
  padding-top: 2px;
  color: var(--grey);
  background-color: var(--white);
}
.chat-container .left .people .person .preview {
  width: 60%;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--grey);
}
.chat-container .left .people .person .unread_msg_count {
  height: 17px;
  margin-top: 1.5px;
  padding: 0 5px;
  background: #f74c31;
  text-align: center;
  line-height: 17px;
  border-radius: 50%;
  color: var(--white);
}
.chat-container .left .people .person .count_hide{
  display: none;
}
.chat-container .left .people .person.active .unread_msg_count, .chat-container .left .people .person:hover .unread_msg_count{
  color: var(--white);
  background: #f74c31;
}
.chat-container .left .people .person.active, .chat-container .left .people .person:hover {
  margin-top: -1px;
  margin-left: -1px;
  padding-top: 13px;
  border: 0;
  background-color: var(--blue);
  width: calc(100% + 2px);
  padding-left: calc(10% + 1px);
}
.chat-container .left .people .person.active span, .chat-container .left .people .person:hover span {
  color: var(--white);
  background: transparent;
}
.chat-container .left .people .person.active:after, .chat-container .left .people .person:hover:after {
  display: none;
}
.chat-container .right {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
}

.chat-container .right .top {
  width: 100%;
  height: 47px;
  padding: 15px 29px;
  background-color: #eceff1;
}
.chat-container .right .top span {
  font-size: 15px;
  color: var(--grey);
  vertical-align: middle;
}
.chat-container .right .top span .name {
  color: var(--dark);
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  overflow: hidden;
  display: inline-block;
  text-overflow:ellipsis;
  white-space: nowrap;
  max-width: 60%;
}
.chat-container .right .top span .shielding {
  font-family: 'Source Sans Pro', sans-serif;
  margin-left: 10px;
  color: var(--blue);
  font-size: 13px;
  cursor:pointer;
}
.chat-container .right .top span #error_warning {
  font-family: 'Source Sans Pro', sans-serif;
  margin-left: 10px;
  color: #e64340;
  font-size: 13px;
}
.chat-container .right .chat {
  position: relative;
  display: none;
  overflow: hidden;
  padding: 0 0 110px 0;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: var(--light);
  height: calc(100% - 47px);
  justify-content: flex-end;
  flex-direction: column;
}
.chat-container .right .chat_scroll{
  overflow-y:auto;
  overflow-x:hidden;
  padding: 20px;
}
.chat-container .right .chat.active-chat {
  display: flex;
}
.chat-container .right .chat.active-chat .bubble {
  word-break: break-all;
  word-wrap: break-word;
}
.chat_button_popover{
  position: fixed;
  word-break: break-all;
  word-wrap: break-word;
}
.chat-container .right .write {
  position: absolute;
  bottom: 10px;
  left: 4%;
  height: 100px;
  padding: 8px;
  border: 1px solid var(--light);
  background-color: #eceff1;
  width: 92%;
  border-radius: 5px;
}
.chat-container .right .chat_emoji{
  position: absolute;
  bottom: 100px;
  left: 2%;
  padding: 8px;
  border: 1px solid var(--light);
  width: 96%;
  display: none;
  border-radius: 5px;
  background: #fff;
  z-index: 1070;
}
.chat-container .right .chat_emoji img{
  height: 30px;
  width: 30px;
  padding: 4px;
}
.chat-container .right .chat_emoji img:hover{
  border: 1px solid #f2f2f2;
}
.chat-container .right .write pre {
  font-size: 16px;
  float: left;
  width: 100%;
  height: 60px;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  padding-left: 2px;
  white-space: pre-wrap;
  word-break: normal;
  color: var(--dark);
  outline: none;
  background-color: #eceff1;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
}
.chat-container .right .write .write_top{
  height: 24px;
}

.chat-container .right .write .smiley {
  display: inline-block;
  width: 20px;
  height: 20px;
  content: '';
  background-image: url("../img/smiley.png");
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.chat-container .right .write .select_file{
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
  position:relative;
}
.chat-container .right .write #chatfile{
  filter:alpha(opacity=0);
  opacity: 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  position:absolute;
  z-index: 2;
  text-indent: -9999px;
}
.chat-container .right .write .attach {
  display: inline-block;
  position:absolute;
  width: 20px;
  height: 20px;
  content: '';
  background-image: url("../img/attachment.png");
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  z-index: 1;
}
.chat-container .right .write #send_tis{
  display: inline-block;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  margin-left: 10px;
  vertical-align: middle;
  color: #999;
}
.chat-container .right .fastchat_footer .send{
  float: right;
}

.chat-container .right .bubble {
  font-size: 16px;
  position: relative;
  display: inline-block;
  clear: both;
  margin-bottom: 8px;
  padding: 13px 14px;
  vertical-align: top;
  border-radius: 5px;
}
.chat-container .right .bubble:before {
  position: absolute;
  top: 19px;
  display: block;
  width: 8px;
  height: 6px;
  content: '\00a0';
  transform: rotate(29deg) skew(-35deg);
  -webkit-transform: rotate(29deg) skew(-35deg);
}
.chat-container .right .bubble.you {
  float: left;
  color: var(--dark);
  background-color: #eceff1;
  align-self: flex-start;
}
.chat-container .right .bubble.you:before {
  left: -3px;
  background-color: #eceff1;
}
.chat-container .right .bubble.you img{
  background: #fff;
  max-width: 200px;
}
.chat-container .right .bubble.you a{
  color: var(--dark);
  text-decoration: underline;
  font-size: 14px;
}
.chat-container .right .bubble.me {
  float: right;
  color: var(--white);
  background-color: var(--blue);
  align-self: flex-end;
}
.chat-container .right .bubble.me img{
  background: var(--white);
  max-width: 200px;
}
.chat-container .right .bubble.me a{
  color: var(--white);
  text-decoration: underline;
  font-size: 14px;
}
.chat-container .right .bubble.me:before {
  right: -3px;
  background-color: var(--blue);
}
.chat-container .right .conversation-start {
  position: relative;
  float: right;
  width: 100%;
  margin: 20px 0;
  text-align: center;
}
.chat-container .right .conversation-start span {
  font-size: 14px;
  display: inline-block;
  color: var(--grey);
}
.chat-container .right .conversation-start span:before, .chat-container .right .conversation-start span:after {
  position: absolute;
  top: 10px;
  display: inline-block;
  width: 30%;
  height: 1px;
  content: '';
  background-color: var(--light);
}
.chat-container .right .conversation-start span:before {
  left: 0;
}
.chat-container .right .conversation-start span:after {
  right: 0;
}

/*订单区域*/
.chat-container .order{
        position: relative;
    float: left;
    width: 25%;
    height: 100%;
}
.order-list {
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-left: 10px; /* 调整左侧边距 */
    max-height: 620px;
    overflow-y: auto;
}
.order-list .send{
     width: 40%;
    padding: 3px;
    border: 1px solid #fff3fa;
    background-color: #f50808;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    margin-left: 10%;
    cursor: grab;
}
/* 订单项样式 */
.order-item {
    margin-bottom: 15px;
}

/* 商品图样式 */
.order-item img {
    width: 100%;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: middle; /* 图片垂直居中对齐 */
    max-height: 90px;
}

/* 商品标题样式 */
.order-item .title {
    font-weight: bold;
    margin-bottom: 5px;
}

/* 其他订单信息样式 */
.order-item .info {
    font-size: 12px;
    margin-bottom: 3px;
   white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 使用省略号代替超出部分 */
}

/* 物流状态样式 */
.order-item .status {
    font-size: 12px;
    color: #007bff; /* 蓝色 */
}

/**订单消息内容*/
.order-message {

}

.order-info {
  margin-bottom: 5px;
  font-size:14px ;
}

.order-info strong {
  font-weight: bold;
  margin-right: 5px;
}

.view-details {
background-color: #2e2f30;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 60%;
    font-size: 14px;
}

.view-details:hover {
  background-color: #0056b3;
}
/* 订单结束*/
/*搜索预选*/
.chat-container .left .search_users{
  display: none;
  position: absolute;
  top: 96px;
  margin-left: -1px;
  width: 100%;
  height: 84%;
  background: #fff;
  line-height: 40px;
  overflow-x: hidden;
  overflow-y: auto;
}
.chat-container .left .search_users :hover,.select_item{
  font-weight: bold;
}
.chat-container .left .search_users .fastchat_user{
  height: 40px;
  width: 100%;
  padding-left: 6%;
  cursor:pointer;
  margin-bottom: 10px;
}
.chat-container .left .search_users .fastchat_user img{
  height: 40px;
  width: 40px;
}
.chat-container .left .search_users .fastchat_user .name{
  margin-left: 10px;
}
.chat-container .left .search_users .fastchat_user .go_chat{
  float: right;
  margin-right: 6%;
  color: var(--blue);
  font-weight: normal !important;
}

@media screen and (max-width: 766px) {
  .chat-container .left {
    float: left;
    width: 99%;
    height: 100%;
    border: 1px solid var(--light);
    background-color: var(--white);
  }
  .chat-container .right {
    position: relative;
    float: left;
    display: none;
    width: 99%;
    height: 100%;
  }
}

/*抖动动画-代码来源于:shake.css*/
@keyframes shake-horizontal {
  2% {
  transform: translate(-6px, 0) rotate(0); }
  4% {
  transform: translate(9px, 0) rotate(0); }
  6% {
  transform: translate(-6px, 0) rotate(0); }
  8% {
  transform: translate(-2px, 0) rotate(0); }
  10% {
  transform: translate(8px, 0) rotate(0); }
  12% {
  transform: translate(-6px, 0) rotate(0); }
  14% {
  transform: translate(0px, 0) rotate(0); }
  16% {
  transform: translate(-1px, 0) rotate(0); }
  18% {
  transform: translate(9px, 0) rotate(0); }
  20% {
  transform: translate(-4px, 0) rotate(0); }
  22% {
  transform: translate(-6px, 0) rotate(0); }
  24% {
  transform: translate(-5px, 0) rotate(0); }
  26% {
  transform: translate(-9px, 0) rotate(0); }
  28% {
  transform: translate(-4px, 0) rotate(0); }
  30% {
  transform: translate(2px, 0) rotate(0); }
  32% {
  transform: translate(0px, 0) rotate(0); }
  34% {
  transform: translate(0px, 0) rotate(0); }
  36% {
  transform: translate(1px, 0) rotate(0); }
  38% {
  transform: translate(-1px, 0) rotate(0); }
  40% {
  transform: translate(0px, 0) rotate(0); }
  42% {
  transform: translate(1px, 0) rotate(0); }
  44% {
  transform: translate(-8px, 0) rotate(0); }
  46% {
  transform: translate(-8px, 0) rotate(0); }
  48% {
  transform: translate(8px, 0) rotate(0); }
  50% {
  transform: translate(3px, 0) rotate(0); }
  52% {
  transform: translate(-4px, 0) rotate(0); }
  54% {
  transform: translate(3px, 0) rotate(0); }
  56% {
  transform: translate(-8px, 0) rotate(0); }
  58% {
  transform: translate(0px, 0) rotate(0); }
  60% {
  transform: translate(-9px, 0) rotate(0); }
  62% {
  transform: translate(-4px, 0) rotate(0); }
  64% {
  transform: translate(2px, 0) rotate(0); }
  66% {
  transform: translate(1px, 0) rotate(0); }
  68% {
  transform: translate(-7px, 0) rotate(0); }
  70% {
  transform: translate(-8px, 0) rotate(0); }
  72% {
  transform: translate(5px, 0) rotate(0); }
  74% {
  transform: translate(-7px, 0) rotate(0); }
  76% {
  transform: translate(6px, 0) rotate(0); }
  78% {
  transform: translate(-6px, 0) rotate(0); }
  80% {
  transform: translate(4px, 0) rotate(0); }
  82% {
  transform: translate(-8px, 0) rotate(0); }
  84% {
  transform: translate(-3px, 0) rotate(0); }
  86% {
  transform: translate(2px, 0) rotate(0); }
  88% {
  transform: translate(-1px, 0) rotate(0); }
  90% {
  transform: translate(1px, 0) rotate(0); }
  92% {
  transform: translate(-5px, 0) rotate(0); }
  94% {
  transform: translate(-8px, 0) rotate(0); }
  96% {
  transform: translate(0px, 0) rotate(0); }
  98% {
  transform: translate(-8px, 0) rotate(0); }
  0%, 100% {
  transform: translate(0, 0) rotate(0); }
}

.fastchat-shake-horizontal {
  transform-origin: center center;
  animation-name: shake-horizontal;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 4;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 13px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}
/* im弹窗开始  */
.close {
  float: right;
  font-size: 19.5px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 13px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 3px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 13px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 13px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 4px 4px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}