body,html{height: 100%;width: 100%;padding: 0;margin: 0;}
.translucent-relative{
    position: relative;
}
.translucent-absolute{
    /*position: absolute;*/
    position:fixed;
}
.translucent-shadow{
    box-shadow: rgb(163, 163, 163) 0px 2px 10px 0px;
}
.translucent-title{
    width: 100%;
    border-bottom: 1px solid #ffffff;
    box-sizing: border-box;
    z-index: 10;
    padding:0px 10px;
}

.closed .translucent-title{
    border-radius:50%;
}

.translucent-content{
    width: 100%;
    z-index: 10;
    padding:10px;
    overflow-y: scroll;
    height: 100%;
}

.translucent-content div.tools a.btn{
    padding:5px 5px;
}

.translucent-center{
    text-align: center;
}
.translucent-move{
    cursor: move;
}
.translucent-filter{
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(225, 225, 225,0.5);
    z-index: 2;
}
.translucent-control{
    width: 90px;
    height: 20px;
    position: absolute;
    right: 0;
    text-align: right;
}
.translucent-control img{
    width: 16px;
    height: 16px;
    margin-top: 2px;
}
.translucent-control img:hover{
    cursor: pointer;
}
.translucent-control img:nth-child(1){
     margin-left: 6px;
     margin-right: 6px;
}
.translucent-control img:nth-child(2){
    margin-left: 6px;
    margin-right: 6px;
}
.translucent-control img:nth-child(3){
    margin-left: 6px;
    margin-right: 6px;
}
.marginCenter{
    margin: 0 auto;;
}

#translucent_big,
#translucent_close{
    display:none;
}

div.translucent-container{
    overflow-y: hidden;
}

div.translucent-container.closed span{
    display:none;
}

.translucent-title span.avatar img{
    border-radius: 50%;
}

.close .translucent-title span{
    display:none;
}

.translucent-content div.tools{
    margin-bottom:15px;
}

.translucent-content div.chat{
    background-color:#4DA460;
    color:#fff;
    border-radius: 10px;
    padding:5px;
    margin-bottom:20px;
    position: relative;
    width:96%;
    float:left;
}

.translucent-content div.chat.self{
    background-color:#eee;
    color:#000;
    float:right;
}

.translucent-content div.chat .user,
.translucent-content div.chat .created{
    font-size:12px;
    text-align: right;
}

.translucent-content div.chat .avatar img{
    border-radius: 50%;
    margin-right:2px;
    margin-left:3px;
}

.translucent-content div.chat p{
    margin-bottom: 0px;
    padding:1px 5px;
}

.translucent-content div.chat.self::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  bottom: 10px;
  border-left: 10px solid #eee;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}


.translucent-content div.chat.other::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  bottom: 10px;
  border-right: 10px solid #4DA460;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.translucent-content div.chat .display_name a{
    color:#fff;
    text-decoration: underline;
}

.translucent-content div.chat.self .display_name a{
    color:#000;
}

.translucent-content div.sender p.user{
    border:1px solid #ccc;
    border-radius: 5px;
    padding:10px 5px;
}

.translucent-content div.sender p.user span.count,
.translucent-content div.sender p.user span.last_updated{
    display:block;
    text-align: right;
    font-size:12px;
    color:#999;
}

.translucent-content div.sender p.user span.count{
    color:#990000;
}
.translucent-content div.sender p.user span.unread0{
    color:#999;
}



.translucent-content div.sender span.avatar{
    padding-right:5px;
}

.translucent-content a:hover div.sender p.user{
    background-color: #D1EDFF;
    text-decoration: none;
}
.translucent-content a{
    text-decoration: none;
}

.translucent-content form textarea{
    width:100%;
    height:100px;
}

.translucent-content form button{
    background-color:#2764A2;
    color:#fff;
    border:none;
}

.translucent-content form button[type="submit"]:before{
    content:"\f1d8";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

#chatcount{
    font-size: 12px;
    font-weight: bold;
    color:#fff;
    background-color:#c00;
    display: inline-block;
    width:25px;
    height:25px;
    border-radius: 50%;
    overflow:hidden;
    text-align: center;
    position: absolute;
}