/*--------------------
Mixins
--------------------*/
/*--------------------
Body
--------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
:root {
  --color_fill: #ff0000;
}
*/

:root {
  --usercolor: #0073EC;
}

html,
body {
  height: 100%;
  width:100%;
  padding:0px;
  margin:0px;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
}

body {
  
  /*background: linear-gradient(135deg, #044f48, #2a7561);
  
  background-image: linear-gradient(60deg, #30ff90 0%, #ed2ded 25%, #c99826 50%, #30ffe6 75%, #30ff90 100%);
   */
  background-size: cover;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  width:100%;
  position:absolute;
  padding:0px;
  margin:0px;
  z-index:0;
  background:#222529;
}
body:after {
  content:'';
  position:absolute;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  background-image: linear-gradient(60deg, #30ff90 0%, #ed2ded 25%, #c99826 50%, #30ffe6 75%, #30ff90 100%);
  z-index:1;
opacity:0.35;
}

.bg {
 
  top: 0;
  left: 0;
  z-index: 1;

  /*
  background: url("https://images.unsplash.com/photo-1451186859696-371d9477be93?crop=entropy&fit=crop&fm=jpg&h=975&ixjsv=2.1.0&ixlib=rb-0.3.5&q=80&w=1925") no-repeat 0 0;
 
  
  background-image: linear-gradient(60deg, #30ff90 0%, #ed2ded 25%, #c99826 50%, #30ffe6 75%, #30ff90 100%);
    */
  filter: blur(10px);
  /*transform: scale(1.2);*/
  position:absolute;
  right:0;
  bottom:0;
}

/*--------------------
Chat
--------------------*/
.chat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  /*max-height: 1240px;*/
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/*--------------------
Chat Title
--------------------*/
.chat-title {
  flex: 0 1 85px;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 10px 10px 95px;
}
.chat-title h1, .chat-title h2 {
  font-weight: normal;
  font-size: 28px;
  margin: 0;
  padding: 0;
  margin-top:1px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
}
.chat-title h2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
  letter-spacing: 1px;
  margin-top:0px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}
.chat-title .avatar {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 12px;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.24);
}
.chat-title .avatar img {
  width: 100%;
  height: auto;
}

/*--------------------
Messages
--------------------*/
.messages {
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.messages .messages-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.messages .message {
  clear: both;
  float: left;
  padding: 6px 10px 7px;
  border-radius: 10px 10px 10px 0;
  background: rgba(0, 0, 0, 0.3);
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.4;
  margin-left: 35px;
  margin-left:10px;
  position: relative;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  display:block;
  width: calc(100% - 10px);
}
.messages .message .timestamp {
  position: absolute;
  bottom: -15px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
}
.messages .message::before {
  content: "";
  position: absolute;
  bottom: -6px;
  border-top: 6px solid rgba(0, 0, 0, 0.3);
  left: 0;
  border-right: 7px solid transparent;
}
.messages .message .avatar {
  position: absolute;
  z-index: 1;
  bottom: -15px;
  left: -35px;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.24);
  display:none;
}
.messages .message .avatar img {
  width: 100%;
  height: auto;
  display:none;
}
.messages .message.message-personal {
  float: right;
  color: #fff;
  text-align: right;
  background: linear-gradient(120deg, #248A52, #257287);
  border-radius: 10px 10px 0 10px;
}
.messages .message.message-personal::before {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 5px solid transparent;
  border-top: 4px solid #257287;
  bottom: -4px;
}
.messages .message:last-child {
  margin-bottom: 30px;
}
.messages .message.new {
  transform: scale(0);
  transform-origin: 0 0;
  -webkit-animation: bounce 500ms linear both;
          animation: bounce 500ms linear both;
}
.messages .message.loading::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
          animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  border: none;
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.messages .message.loading span {
  display: block;
  font-size: 0;
  width: 20px;
  height: 10px;
  position: relative;
}
.messages .message.loading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
          animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: -9px;
}
.messages .message.loading span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
          animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: 9px;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.msg-content {
  position: relative;
  display:inline-block;
  width:100%;
  height:auto;
  overflow:hidden;
  border-radius: 10px;
}

.msg-content img {
  display: inline-block;
    position: relative;
    width: 100%;
}


/*--------------------
Message Box
--------------------*/
.message-box {
  flex: 0 1 90px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  position: relative;
}
.message-box .message-input {
  background: none;
  border: none;
  outline: none !important;
  resize: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 38px;
  height: 60px;
  margin: 0;
  padding-right: 20px;
  width: calc(100% - 140px);
  margin-top: 6px;
  margin-left: 10px;
  padding-top:4px;
  resize: none;
  overflow: hidden;
}
.message-box textarea:focus:-webkit-placeholder {
  color: transparent;
}
.message-box .message-submit {
  position: absolute;
  z-index: 1;
 bottom: 12px;
  right: 10px;
  color: #fff;
  border: none;
  background: #007a5a;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
  outline: none !important;
  transition: background 0.2s ease;
}
.message-box .message-submit:hover {
  background: #148567;
}



/*--------------------
Custom Srollbar
--------------------*/
.mCSB_scrollTools {
  margin: 1px -3px 1px 0;
  opacity: 0;
}

.mCSB_inside > .mCSB_container {
  /*margin-right: 0px;
  margin-right: 34px;*/
  margin-right:10px;
  padding: 20px 10px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.5) !important;
}


.mCustomScrollbar,
.mCustomScrollbar.mCS_touch_action,
.mCustomScrollbar.mCS_touch_action .mCS-aviva.mCSB_scrollTools {
	-ms-touch-action: auto;
	    touch-action: auto;
}

.mCustomScrollBox {
	-ms-touch-action: pan-x;
	    touch-action: pan-x;
}

.mCustomScrollBox.mCSB_vertical_horizontal {
	-ms-touch-action: auto;
	    touch-action: auto;
}

.mCustomScrollBox.mCSB_horizontal {
	-ms-touch-action: pan-y;
	    touch-action: pan-y;
}

/*--------------------
Bounce
--------------------*/
@-webkit-keyframes bounce {
  0% {
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@keyframes bounce {
  0% {
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-webkit-keyframes ball {
  from {
    transform: translateY(0) scaleY(0.8);
  }
  to {
    transform: translateY(-10px);
  }
}
@keyframes ball {
  from {
    transform: translateY(0) scaleY(0.8);
  }
  to {
    transform: translateY(-10px);
  }
}





.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 30px;
  margin-right: 10px;
}


#gradient{
  overflow:hidden;
}

.bgxx:after {
  content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    background-image: linear-gradient(60deg, #30ff90 0%, #ed2ded 25%, #c99826 50%, #30ffe6 75%, #30ff90 100%);

}

.bgxx:before {
  content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    
    background-image: linear-gradient(60deg, #30ff90 0%, #ed2ded 25%, #c99826 50%, #30ffe6 75%, #30ff90 100%);

}

#gradientxx:before {
    content: "";
    position: absolute;
    left: -200px;
    top: 0px;
    right: -200px;
    bottom: 0px;
    z-index: 1;
      background-image: linear-gradient(60deg, #30ff90 0%, #ed2ded 25%, #c99826 50%, #30ffe6 75%, #30ff90 100%);
      background-size: cover;
      background-position: center center;
      /*animation: move 15s infinite linear;*/
      opacity: 1;
      transition: opacity 1s;
  }
  
  
  @keyframes move {
    from {background-position: -3000px 10px;}
      to {background-position: 0px 10px;}
  }


.btn-scrollto {
 position:absolute;
 top:-85px;
 right:20px;
 width:80px;
 height:80px;
 background:#2a2d30;
 background:#22313aba;
 z-index: 2;
  box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px, rgb(0 0 0 / 20%) 0px -3px 0px inset;
border-radius:16px;

fill: #1d9bd1;
fill: #e8912d;
fill: #fff;
cursor:pointer;
}

.btn-scrollto svg {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  opacity:0.35;
  width:80px;
  height:80px;
}



/**********************************************
 *  USER AVATAR
 **********************************************/
 /*.user-nav-menu{
  display: inline-block;
  position: relative;
  float: right;
  background-color: rgba(255,0,0,0.0);
  height:60px;
  white-space: nowrap;
  padding-top:6px;
  cursor: pointer;
}

.user-dropdown-menu {
  position:relative;
  display:inline-block;
  width: 30px;
  margin-left: -4px;
  user-select: none;
}

.user-nav-menu *{
user-select: none;
}


<div class="">
<div class="iconDiv">
<div class="innerIcon"></div>

</div>
</div>
*/


.user-avatar {
  position:relative;
  display:inline-block;
  --usercolor: #0073EC;
  user-select: none;
  pointer-events: none;
  transition: transform 0.25s linear, filter 0.25s linear;
}

.user-avatar .iconDiv {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 5%;
  background-color: var(--usercolor,#0abcf0);
  color: var(--usercolor,#0abcf0);
  float: left;
  overflow: hidden;
  text-transform: capitalize;
  text-align: center;
  line-height: 125px;
  font-size: 100px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
  /*box-shadow: 6px 6px 35px rgba(0, 0, 0, 0.3);*/
  animation: iconAnim 300ms cubic-bezier(0, 0, 0.55, 1.27);
  pointer-events: none;
}

.user-avatar .iconDiv .innerIcon {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background-color: rgba(0, 0, 0, 0.7);
}

.user-avatar .iconDiv {
    width: 55px;
    height: 55px;
    line-height: 32px;
    font-size: 42px;
  }

  .user-avatar .innerIcon .iconTxt {
    position:relative;
    top:6px;
  }


  .user-nav-menu:hover .user-avatar{
    transform:scale(1.1);
    filter: brightness(1.25);
  }


.btn-favorite {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 220px;
  right: 20px;
  background-image: url(upload/_assets/images/start-on.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}






  /*
   *
   *
   *
   ******************************************************************************/

   body {
    font-family: 'Ubuntu', sans-serif;

  }
  .msg-header {
    display:block;
    position:relative;
   
   
    padding: 10px;
    padding-left:0px;
    padding-top:5px;
  }
  .msg-icon {
    width:60px;
    height:60px;
    display:inline-block;
    vertical-align:top;
    position:absolute;
  }
  .msg-icon img {
    width:60px;
    height:60px;
    border-radius:5px;
  }
  .msg-details {
    
    display:inline-block;
    vertical-align:top;
    position:relative;
    margin-left:6px;
    left:64px;
    top:-6px;
    font-size:1px;
  }
  .msg-author, .msg-stats, .msg-deets {
    margin:0px;
    color:#fff;
    font-size:20px !important; 
  }
  .msg-author{
    font-weight:bold;
    font-size:20px;
    color:#bbb7b2;
  }
  .msg-stats {
    font-size:18px;
    font-weight:bold;
    color:#cbc7b8;
  }
  .msg-percent {
    background-color:#2a2d30;
    border:1px solid #434548;
    color: #e8912d;
    padding-left:5px;
    padding-right:5px;
    border-radius:4px;
    font-size:24px;
    margin-left:6px;
    top:2px;
    position:relative;
  }
  .msg-tag {
    background-color:#71502b;
    border:0px solid #71502b;
    color: #f2c744;
    padding-left:2px;
    padding-right:2px;
    border-radius:4px;
    font-size:20px;
    margin-left:4px;
    margin-right:4px;
    text-transform: capitalize;
  }
  .msg-params {
    background-color: #1a1d21;
    color: #d1d2d3;
    border:1px solid #515357;
    border-radius: 8px;
    width:100%;
    
    resize:none;
    overflow:hidden;
    font-size:20px;
    margin-bottom:0px;
    padding:8px;
    padding-top:4px;
    padding-bottom:4px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    line-height: 135%;
    letter-spacing:0.02em;
    background-color: #222529;
    border: 1px solid #565856;
    
  }

  .msg-params {
      box-sizing: border-box;
      max-height: 140px; /* optional, but recommended */
      min-height: 31px;
      overflow-x: hidden; /* for Firefox (issue #5) */
  }

  .msg-app {
    background-color:#3c3e42;
    border:0px solid #434548;
    color: #b5b5b7;
    padding-left:5px;
    padding-right:5px;
    border-radius:4px;
    font-size:20px;
    text-transform:uppercase;
    font-weight:bolder;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
  }
  .msg-timestamp {
    color: #b5b5b7;
    font-size:20px;
    text-transform:uppercase;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    margin-left: 12px;
  }
  .msg-totaljobs {
    color:#b5b5b7;
    font-size:16px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    margin-left: 0px;
    position:absolute;
    top:0px;
    right:0px;
    display:inline-block;
  }
  .msg-jobcount {
    color:dodgerblue;
    font-size:20px;
    text-transform:uppercase;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    margin-left: 0px;
  }
  .msg-variation {
    color:#555;
    font-size:20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    margin-left: 0px;
    font-style: italic;
    margin-bottom:4px;
    
  }
  .img-options {
    display:block;
    position:relative;
    min-height:60px;
    margin-bottom:6px;
    padding-top:4px;
  }
  .img-edge {
    width:4px;
    position:absolute;
    top:0px;
    bottom:0px;
    border-radius:10px;
    background-color:#35373b;
  }
  .img-divider {
    display:block;
    position:relative;
    height:1px;
    background-color:#35373b;
    margin-left:14px;
    
  }
  .img-row {
    display:block;
    position:relative;
    padding-left:10px;
    padding-top:6px;
  }
  .msg-button {
    background-color:#1a1d21;
    border:1px solid #57595d;
    color: #d1d2d3;
    border-radius:6px;
    padding:24px;
    padding-top:8px;
    padding-bottom:8px;
    font-size:24px;
    font-weight:bold;
    display:inline-block;
    min-width: 90px;
    text-align: center;
    margin:4px;
    cursor:pointer;
    user-select: none;
  }
  .msg-button.wasclicked {
    background-color:#3164ce;
  }

  .message-submit {
    cursor:pointer;
    user-select: none;
  }
  .msg-avatar {
    width:32px;
    height:32px;
    position:relative;
    display:inline-block;
    top:6px;
    margin-right:6px;
  }
  .user-container {
    width:64px;
    height:64px;
    position:relative;
    display:inline-block;
    top:0px;
    margin-right:6px;
    border-radius: 8px;
/*    border: 2px solid rgba(255, 255, 255, 0.24);*/
    overflow:hidden;
  }
  .user-avatar {
    width:64px;
    height:64px;
    position:relative;
  }

  .menu-dots {
    width:55px;
    height:55px;
    position:absolute;
    display:inline-block;
    top:4px;
    right:6px;
    background-image:url('https://snapps.io/menu-dots2.png');
    background-size:64px 64px;
    background-repeat:no-repeat;
    background-position:center center;
    opacity:0.75;
  }
  .chat-menu {
    position:absolute;
    top:10px;
    right:0px;
    height:64px;
    width:120px;
  }
  .msg-paramdyk {
    color:#b5b5b7;
    font-size:16px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    margin:0px;
    margin-bottom: 20px;
    margin-top: -4px;
  }
  .msg-tag.isBot {
    background-color: #22313a;
    border: 0px solid #22313a;
    color: #1d9bd1;
  }
  .messages .message {
    margin-bottom:20px;
  }
  .chat {
    background-color:#222529;
  }




  .message-inner {
    position:relative;
    margin:5px;
    background-color:#222529;
    border-radius: 15px;
    border: 1px solid #818385;
    padding:12px;
  }
  .message-toolbox {
    display:block;
    position:relative;
    vertical-align:middle;
  }

.input.prompt {
  background-color: #1a1d21;
    color: #d1d2d3;
    border: 0px solid #515357;
    border-radius: 8px;
    width: calc(100% - 140px);
    font-size: 28px;
    margin-bottom: 0px;
    padding: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left:0px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.02em;
    background-color: #222529;
    border: 0px solid #565856;
    display:block;
    margin-bottom:10px;
    padding-left: 4px;
    display:inline-block; white-space: pre-wrap;
    position:relative;
}
.input.prompt.placeholder:after{
  content:"#prompt";
  position:absolute;
  top:4px;
  left:4px;
  z-index:2;
  pointer-events:none;
  opacity:0.35;
}

[contenteditable] {
  outline: 0px solid transparent;
}

.prompt-button {
    background-color:#1a1d21;
    border:1px solid #57595d;
    color: #d1d2d3;
    border-radius:6px;
    padding:24px;
    padding-top:8px;
    padding-bottom:8px;
    font-size:24px;
    font-weight:bold;
    display:inline-block;
    min-width: 40px;
    text-align: center;
    margin:4px;
    cursor:pointer;
    user-select: none;
  }
  .prompt-button.wasclicked {
    background-color:#3164ce;
  }

.prompt-button {
background-color: #1a1d2157;
height: 50px;
    max-height: 50px;
    font-size:36px;
    padding:0px;
    padding-left:10px;
    padding-right:10px;
}
.prompt-button .msg-span{
  font-size: 20px;
    vertical-align: middle;
    margin: 0px;
    position: relative;
    /* line-height: 10px; */
    top: -3px;
    margin-left: 2px;
    margin-right:4px;
}
.prompt-button .msg-emoji{
  font-size: 36px;
    vertical-align: middle;
    margin: 0px;
    position: relative;
    /* line-height: 10px; */
    top: -5px;
}
.msg-emoji-box {
  position:relative;
  display:inline-block;
  width:48px;height:48px;
  background:rgba(255,0,0,0);

}





















@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

.btn-image-options {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 220px;
  right: 0px;
}

.list-container {
  position: relative;
}
.list-container.active .more-button-list {
  opacity: 1;
  transform: scale(1);
}
.list-container.active .more-button-list-item {
  -webkit-animation: fadeInItem 0.6s 0.2s forwards;
          animation: fadeInItem 0.6s 0.2s forwards;
}
.list-container.active .more-button-list-item:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.list-container.active .more-button-list-item:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.list-container.active .more-button-list-item:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.list-container.active .more-button {
  -webkit-animation: onePulse 0.6s forwards linear;
          animation: onePulse 0.6s forwards linear;
}
.list-container.active .menu-icon-wrapper {
  transform: rotate(-45deg);
}
.list-container.active .menu-icon-line.first {
  transform: rotate(-90deg) translateX(1px);
}
.list-container.active .menu-icon-line.last {
  transform: rotate(-90deg) translateX(-1px);
}

.more-button {
  background-color: #232529;
  box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.2s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  opacity: 0.85;
}
.more-button:hover, .more-button:focus {
  box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.3);
  background-color: #e8912d;
}
.more-button:focus {
  outline: 0;
}
.more-button-list {
  background-color: #fff;
  border-radius: 8px;
  list-style-type: none;
  width: 140px;
  height: 170px;
  box-shadow: 0px 0px 4px 4px rgba(25, 25, 25, 0.16);
  padding: 0;
  padding: 6px;
  position: absolute;
  right: 55px;
  top: 5px;
  opacity: 0;
  transform: scale(0);
  transform-origin: top right;
  transition: all 0.3s ease 0.1s;
}
.more-button-list li {
  opacity: 0;
}
.more-button-list-item {
  display: flex;
  align-items: center;
  color: #1c3991;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease-in;
  transform: translatex(-10px);
}
.more-button-list-item:hover {
  color: #5c67ff;
}
.more-button-list-item:after {
  content: "";
  position: absolute;
  height: 1px;
  width: calc(100% - 24px);
  left: 12px;
  bottom: 0;
  background-color: rgba(132, 160, 244, 0.1);
}
.more-button-list-item:last-child:after {
  display: none;
}
.more-button-list-item svg {
  width: 18px;
  height: 18px;
}
.more-button-list-item span {
  display: inline-block;
  line-height: 20px;
  font-size: 14px;
  margin-left: 8px;
}

@-webkit-keyframes onePulse {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.3);
  }
}

@keyframes onePulse {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.3);
  }
}
@-webkit-keyframes fadeInItem {
  100% {
    transform: translatex(0px);
    opacity: 1;
  }
}
@keyframes fadeInItem {
  100% {
    transform: translatex(0px);
    opacity: 1;
  }
}


.menu-icon-wrapper {
  border-radius: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 330ms ease-out;
}

.menu-icon-line {
  background-color: #fff;
  border-radius: 2px;
  width: 100%;
  height: 2px;
}
.menu-icon-line.half {
  width: 50%;
}
.menu-icon-line.first {
  transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
  transform-origin: right;
}
.menu-icon-line.last {
  align-self: flex-end;
  transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
  transform-origin: left;
}







.mCSB_container {
  max-width: 800px !important;
}


@media only screen and (max-width: 1920px) {
  .mCSB_container {
    max-width: 800px !important;
 }
}

/* If the screen size is 600px wide or less, hide the element */
@media only screen and (max-width: 1024px) {
  .mCSB_container {
    max-width: none !important; 

 }
}


