@import "../../fonts.googleapis.com/css-family=Noto+Sans.css"/*tpa=https://fonts.googleapis.com/css?family=Noto+Sans*/;
/*::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(25, 147, 147, 0.1);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(25, 147, 147, 0.2);
}*/

.chat-thread {
  margin: 40px auto 0 auto;
  padding: 10px;
  list-style: none;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: rgb(235,235,235);
}

.chat-thread li {
  position: relative;
  clear: both;
  display: inline-block;
  padding: 10px 30px 10px 20px;
  margin: 0 0 20px 0;
  font: 16px/20px 'Noto Sans', sans-serif;
  border-radius: 10px;
}

/* Chat - Avatar */
.chat-thread li:before {
  position: absolute;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 38px;
  content: '';
}

/* Chat - Speech Bubble Arrow */
.chat-thread li:after {
    content: "";
    height: 10px;
    width: 10px;
    background: #fff;
    position: absolute;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.chat-thread li.one-side{
  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: 80px;
  background-color: rgb(178,226,129);
}

.chat-thread li.one-side:before {
  right: -80px;
  background-size: 38px;
}

.chat-thread li.one-side:after {
  border: 1px solid rgb(178,226,129);
  border-bottom: none;
  border-right: none;
  background-color: rgb(178,226,129);
  right: -5px;
  top:13px;
}

.chat-thread li.other-side {
  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: 80px;
  background-color: rgb(255,255,255);
}

.chat-thread li.other-side:before {
  left: -80px;
  background-size: 38px;
}

.chat-thread li.other-side:after {
  border: 1px solid rgb(255,255,255);
  border-top: none;
  border-left: none;
  background-color: rgb(255,255,255);
  left: -5px;
  top:13px;
}
}

.chat-window {
  position: fixed;
  bottom: 18px;
}

.chat-window-message {
  width: 100%;
  height: 48px;
  font: 32px/48px 'Noto Sans', sans-serif;
  background: none;
  color: #0AD5C1;
  border: 0;
  border-bottom: 1px solid rgba(25, 147, 147, 0.2);
  outline: none;
}

/* Small screens */
@media all and (max-width: 767px) {
  .chat-thread {
    width: 90%;
    height: 260px;
  }

  .chat-window {
    left: 5%;
    width: 90%;
  }
}
/* Medium and large screens */
@media all and (min-width: 768px) {
  .chat-thread {
    width: 85%;
    height: 500px;
  }

  .chat-window {
    left: 25%;
    width: 50%;
  }
}
@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;
  }
}
.credits{
  text-align:center;
  margin-top:35px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Noto Sans', sans-serif;
}
.credits a{
  text-decoration:none;
  color: rgba(255, 255, 255, 0.35);
}


#modal-rongcloud {
    display: none;
    position: fixed;
    top:20%;
    right: 0;
    background-color: rgb(255,255,255);
    padding: 0;
    max-height: 100%;
    width: 30%;
    margin: auto;
    overflow-y: auto;
    border-radius: 2px;
    will-change: top, opacity;
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
    z-index: 999;
}

#modal-rongcloud input{

    width:85%;
    border: 0;
    margin: 5px auto 5px 7.5%;
    background: #fafafa;
}

#modal-rongcloud .modal-close{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 30px;
}

.login-status{
  display: block;
  color: gray;
  font-size: 5px;
  text-align: center;
}
