.dvz {
    margin-bottom: 45px;
}

.dvz .container {
    padding: 10px 38px 38px 38px;
}

.dvz .window {
    height: 300px;
    overflow-x: auto;
    padding: 0 10px;
    position: relative;
    margin-right: -10px;
}

.dvz .entries {
    position: relative;
    margin-bottom: 15px;
}

.dvz__panel {

}

.dvz__send-container {
    border: 1px solid #17181e;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    align-items: center;
    padding: 13px;
}

.dvz__send-container:before {
    content: '';
    margin-right: 5px;
    width: 16px;
    height: 14px;
    background: url(../../../images/gta4you/icons-pack.png) no-repeat;
    background-position: -171px -28px;
    margin-left: 15px;
}

.dvz__input {
    flex: 1;
    max-height: 40px;
    overflow-y: auto;
    resize: none;
    color: #7c7f8b;
    border: 0;
    margin: 0;
    background: none;
}

.dvz__button  {
    
}

/** SHOUT **/

.shout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.shout:first-child {
    margin-top: 0
}

.shout__avatar {
    height: 40px;
    width: 40px;
}

.shout__avatar img {
    border-radius: 50%;
}

.shout__container {
    flex: 1;
    margin-left: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.shout__the-message {
    flex: 1 1 auto;
    word-break: break-word;
    padding-right: 15px;
    background: #0d0e11;
    border-top: 1px solid #13151a;
    padding: 17px 21px;
    border-radius: 8px;
    position: relative;
}

.shout__the-message:before {
    content: '';
    left: -10px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-top: 15px solid transparent;
	border-bottom: 15px solid transparent; 
    border-right: 10px solid #0d0e11; 
}

.shout__the-message .text {
    margin-top: 5px
}

.shout .info {
    text-align: center;
    padding-left: 30px;
    padding-right: 10px;
    flex: 0 0 auto;
}

.shout .info a:not(:last-child) {
    background: #5ebf47;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    height: 15px;
    width: 15px;
    font-size: 9px;
    border-radius: 4px;
    margin: 0 3px 5px 3px;
    text-shadow: 0px 1px 1px rgba(5, 6, 6, 0.3);
    transition: 0.3s ease-in-out opacity;
    position: relative;
    z-index: 1;
}

.shout .info a:not(:last-child):hover {
    opacity: 0.7;
}

.shout .info > *:last-child {
    display: block;
}
		
		
		
		
		