/* DVZ Shoutbox */
#shoutbox { 
	background: #191919;
    margin-bottom: 16px;
    padding: 1px;
    border: 2px solid #191919;
    border-radius: 5px;
}
#shoutbox .head {
	background: #191919;
    color: #ffffff;
    padding: 15px 15px;
    height: 60px;
    line-height: 60px;
    border-bottom: solid 3px #161616;
    font-family: HACKED;
    font-size: 20px;
}
#shoutbox .head i {
	background: linear-gradient(#057da5, #0ba0d1);
    height: 35px;
    line-height: 35px;
    width: 35px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    margin-right: 10px;
}		
		
#shoutbox.front .head { cursor: pointer; }
#shoutbox .head .right { float: right; margin: 0; font-size: 13px; }

#shoutbox.collapsed .head { 
	background: #191919;
	color: #757575;
}
#shoutbox.collapsed .head i { 
	background: linear-gradient(#454545, #4b4b4b);
	height: 35px;
    line-height: 35px;
    width: 35px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    margin-right: 10px;
}

#shoutbox.collapsed .body { display: none; }

#shoutbox .panel { border-top: solid 2px rgba(0,0,0,0.1); }

#shoutbox input.text {
    background: #191919;
    margin: 0;
    padding: 10px 8px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #fff;
}
#shoutbox .minposts, #shoutbox .blocked { padding: 6px; font-size: 11px; }
#shoutbox .panel.minposts { background: #FFFED8; color: #727250; }
#shoutbox .panel.blocked { background: #FCEFEF; color: #543A3A; }
#shoutbox .panel p { margin: 0; }

#shoutbox .window {
	background: #191919;
    border-top: solid 2px rgba(0,0,0,0.1);
    overflow-y: scroll;
}
#shoutbox .data { 
	display: table;
    width: 100%;
    border-top: solid 2px rgba(0, 0, 0, 0.1);
    font-family: 'Lato';
    font-size: 12px;
}
#shoutbox.front .data { border-top: none; }

#shoutbox .entry {     
	display: inline-block;
	margin-top: 10px;
    width: 100%;
    transition: background-color 0.2s;
}
#shoutbox .entry:nth-child(even) { background-color: rgba(0,0,0,0.01); }
#shoutbox .entry.new { background-color: rgba(255,255,100,0.1); }
#shoutbox .entry:target { background-color: rgba(50,200,255,0.1); }
#shoutbox .entry > div { border-bottom: dashed 1px rgba(0,0,0,0.05); }
#shoutbox .entry:last-child > div { border-bottom: none; }

#shoutbox .entry > div { 
    /* display: inline; */
    /* padding: 6px; */
}
#shoutbox .avatar {
   	float: left;
    max-height: 30px;
    max-width: 30px;
    width: 30px;
    height: 30px;
    padding: 10px;
}
#shoutbox .avatar img {
    margin: 0 auto;
    vertical-align: middle;
    max-height: 29px;
    max-width: 29px;
    width: 29px;
    height: 29px;
    border: solid 2px rgb(7 135 178);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
    cursor: pointer;
}
#shoutbox .user { 
    white-space: nowrap;
    overflow: hidden;
    padding: 1px 1px 1px 10px;
}

#shoutbox .text { 
	display: inline-block;
    color: #d6d6d6;
    padding: 8px;
    word-break: break-all;
    border-radius: 5px;
    word-wrap: break-word;
    box-shadow: 1px 0px 2px rgba(0,0,0,0.5);
    background: #2d2d2d;
    margin: 0px 0px 5px 10px;
    text-shadow: 1px 0px 2px rgba(0,0,0,0.5);
}
#shoutbox .text-thead-box { 
	display: inline-block;
    width: 70%;
	
}
#shoutbox .info {
    font-size: 10px;
    color: #AAA;
    white-space: nowrap;
    margin: 0px 20px 0px 15px;
}
#shoutbox .entry.unread .info:before { display: inline-block; position: relative; top: -2px; margin-right: 10px; height: 4px; width: 4px; content: ''; background: rgba(255,100,0,0.8); border-radius: 10px; }
#shoutbox .info a { color: inherit; }
#shoutbox .mod { padding: 6px 8px; font-size: 9px; font-weight: bold; color: #AAA; text-decoration: none; }
#shoutbox .mod:nth-of-type(2) { margin-right: 5px; border-left: solid 1px rgba(0,0,0,0.1); }
#shoutbox  .ip { margin-right: 10px; color: #CECECE; }

		
		
		
		