/*+++++++++++++++++++++++++ LIVE CHAT +++++++++++++++++++++++++*/
#liveChatIcons {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    min-height: 50px;
    z-index: 200000000;
    text-align: right;
}



.liveChatIcon, .liveChatPanel {
    -webkit-box-shadow: 0px 3px 12px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 3px 12px 2px rgba(0,0,0,0.4);
    box-shadow: 0px 3px 12px 2px rgba(0,0,0,0.4);
}

.liveChatIcon {
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    margin: 10px;
    width: 50px;
    height: 50px;
    background-color: grey;
    z-index: 200000000;

    text-align: center;
    color: white;
    font-size: 24px;
    line-height: 24px;
    padding: 13px;

    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;

    background-position: center;
    background-size: 50px;
    background-repeat: no-repeat;

    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;

    opacity: 0.3;
}

#liveChatIcons:hover .liveChatIcon {
    opacity: 1;
}

.liveChatIcon.current, .liveChatIcon.newmsg  {
    opacity: 1;
}

.liveChatIcon:active {
    opacity: 1;
}
.liveChatIcon .sticker {
    width: 18px;
    height: 18px;
    background-color: #6fa2f7;
    position: absolute;
    top: -3px;
    left: -3px;

    font-size: 10px;
    line-height: 10px;
    padding: 4px 0;
    text-align: center;

    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;

    background-position: center;
    background-size: 8px;
    background-repeat: no-repeat;


}
.liveChatIcon .sticker.blinked {
    -webkit-animation: blink1 1s linear infinite;
    animation: blink1 1s linear infinite;
}
@-webkit-keyframes blink1 {
    100% { opacity: 0; }
}
@keyframes blink1 {
    100% { opacity: 0; }
}

.liveChatIcon .item-close-btn {
    width: 16px;
    height: 16px;
    background-color: #444444;
    position: absolute;
    top: -3px;
    right: -3px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    background-image: url("../images/LCHRLClose.png");
    background-position: center;
    background-size: 8px;
    background-repeat: no-repeat;
}

#liveChatIcon-main {
    background-image: url("../images/LCHIco2.png");
    background-size: 52px;
    background-color: transparent !important;
    opacity: 1;
}

.liveChatPanel {
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 120px;
    width: 300px;
    height: 500px;
    background-color: white;
    z-index: 200000000;
    overflow: hidden;
    font-size: 12px;
    line-height: 16px;
}

.liveChatPanel div {
	box-sizing: border-box;
}

.livechatpanel-header {
    height: 36px;
    background-color: grey;
    color: white;
}
.livechatpanel-header div {
    display: inline-block;
    vertical-align: middle;
}
.livechatpanel-header-text {
    box-sizing: border-box;
    color: white;
    font-size: 16px;
    line-height: 16px;
    padding: 10px;
}
.livechatpanel-header-tools {
    height: 18px;
    margin: 9px;
    float: right;
}
.livechatpanel-header-tool {
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;

}

.livechatpanel-header-tool:hover {
    background-color: dimgrey;
}

.livechatpanel-header-tool-expand {
    background-image: url("../images/LCHRLArrow.png");
}
.livechatpanel-header-tool-minimize {
    background-image: url("../images/LCHRLMinimize.png");
}
.livechatpanel-header-tool-close {
    background-image: url("../images/LCHRLClose.png");
}

.livechatpanel-toolbar {
    height: 36px;
    background-color: #ebebeb;


}

.livechatpanel-messagefield {
    height: 428px;
    width: 300px;
    box-sizing: border-box;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;

    overflow: auto;
    position: absolute;
    z-index: -1;
    background-color: white;
    padding: 6px 6px;

}
.livechatpanel-messagefield .message {
    margin-bottom: 12px;
}
.livechatpanel-messagefield .incoming-message .user-avatar {
    float: left;
    width: 32px;
    height: 32px;
}
.livechatpanel-messagefield .incoming-message .user-avatar .zagogulina {
    float: right;
    width: 16px;
    height: 16px;
    overflow: hidden;
    background-color: #e6e6e6;
    z-index: -1;
    position: relative;
    right: 0px;
}
.livechatpanel-messagefield .incoming-message .user-avatar .avatar-image {
    box-sizing: border-box;
    float: left;
    position: relative;
    width: 30px;
    height: 30px;
    top: -14px;
    padding: 8px 0 6px;
    text-align: center;
    line-height: 16px;
    font-size: 17px;
    color: white;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;


    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;

    background-color: grey;
    z-index: 2;
}
.livechatpanel-messagefield .incoming-message .user-avatar .zagogulina .inside-zagogulina {
    float: right;
    width: 32px;
    height: 32px;

    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;

    background-color: white;

}
.livechatpanel-messagefield .incoming-message .message-block {
    overflow: hidden;
}
.livechatpanel-messagefield .incoming-message .message-block .message-text {
    background-color: #e6e6e6;
    padding: 8px 10px;
    border: 1px solid #e6e6e6;
    word-wrap: break-word;

    float: left;
    min-width: 50px;
    max-width: 100%;

    -webkit-border-radius: 5px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-topleft: 0;
    border-radius: 5px;
    border-top-left-radius: 0;
}
.livechatpanel-messagefield .incoming-message .message-info {
    font-size: 0.9em;
    color: grey;
    padding-left: 36px;
}

.livechatpanel-messagefield .outcoming-message .user-avatar {
    float: right;
    width: 16px;
    height: 16px;
}
.livechatpanel-messagefield .outcoming-message .user-avatar .zagogulina {
    float: left;
    width: 16px;
    height: 16px;
    overflow: hidden;
    background-color: #f0f0f0;
    z-index: -1;
    position: relative;
    left: 0px;
}
.livechatpanel-messagefield .outcoming-message .user-avatar .avatar-image {
    box-sizing: border-box;
    float: right;
    position: relative;
    width: 30px;
    height: 30px;
    top: -14px;
    padding: 8px 0px 6px;
    text-align: center;
    line-height: 16px;
    font-size: 17px;
    color: white;

    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;

    background-color: grey;
    z-index: 2;
}
.livechatpanel-messagefield .outcoming-message .user-avatar .zagogulina .inside-zagogulina {
    float: left;
    width: 32px;
    height: 32px;

    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;

    background-color: white;

}
.livechatpanel-messagefield .outcoming-message .message-block {
    overflow: hidden;
}
.livechatpanel-messagefield .outcoming-message .message-block .message-text {
    background-color: #f0f0f0;
    padding: 8px 10px;
    border: 1px solid #f0f0f0;
    word-wrap: break-word;

    float: right;
    min-width: 50px;
    max-width: 245px;

    -webkit-border-radius: 5px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-topright: 0;
    border-radius: 5px;
    border-top-right-radius: 0;
}
.livechatpanel-messagefield .outcoming-message .message-info {
    font-size: 0.9em;
    color: grey;
    padding-right: 20px;
    text-align: right;
}

.livechatpanel-textfield {
    height: 36px;
    margin-top: 428px;
}
.livechatpanel-textfield>input, .livechatpanel-searchfield>input {
    padding: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #ebebeb;
    padding-left: 10px;
}
.livechatpanel-textfield>input:focus, .livechatpanel-searchfield>input:focus {
    border-color: grey;

}

.livechatpanel-searchfield {
    height: 36px;
}
.livechatpanel-searchfield:before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;

    background-image: url('../images/LCHSearch.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    opacity: 0.5;

}

.livechatpanel-searchfield.focus:before{
    opacity: 0.8;
}

.livechatpanel-searchfield>input {
    padding-left: 36px;
}
.livechatpanel-addnewchat{
    z-index: 1000;
    position: relative;
}
.livechatpanel-addnewchat.bottom-shadow{
    -webkit-box-shadow:  0px 3px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow:  0px 3px 5px 0px rgba(0,0,0,0.2);
    box-shadow:  0px 3px 5px 0px rgba(0,0,0,0.2);
}

.livechatpanel-userslist.inset-top-shadow{
    -webkit-box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.2);
    box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.2);
}

.livechatpanel-listitem {
    height: 56px;
    padding: 8px 16px;
}
.livechatpanel-listitem:hover {
    background-color: #f0f0f0;
}
.livechatpanel-listitem div {
    display: inline-block;
    vertical-align: middle;
}
.livechatpanel-listitem-icon {
    width: 40px;
    height: 40px;
    background-color: grey;
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;

    margin-right: 8px;

    text-align: center;
    color: white;
    font-size: 20px;
    line-height: 20px;
    padding: 10px;
}
.livechatpanel-listitem-innertext {
    font-size: 16px;
    line-height: 16px;
}

.livechatpanel-userslist {
    height: 410px;
    overflow: auto;
}
.livechatpanel-userssearchlist {
    height: 428px;
    overflow: auto;
}
/*---------------------------- LIVE CHAT ------------------------------*/