﻿.LC_HL {
    width: 65px;
    height: 65px;
    background-color: var(--si-primary);
    color: #e1e1e1;
    position: fixed;
    left: 20px;
    bottom: 35px;
    border-radius: 50%;
    opacity: 0.9;
    z-index: 999999999999 !important;
    cursor: pointer;
    font-size: 36px;
    display: flex;
    justify-content: center;
    transition: 0.3s;
    -webkit-box-shadow: 0px 0px 18px 3px rgba(191,5,49,0.91);
    -moz-box-shadow: 0px 0px 18px 3px rgba(191,5,49,0.91);
    box-shadow: 0px 0px 18px 3px rgba(191,5,49,0.91);
    opacity: 0;
    animation: SlideUp 2s ease 2s 1 normal forwards;
}

    .LC_HL:hover, .LC_HL:focus, .LC_HL:active {
        color: #FFFFFF;
        -webkit-box-shadow: 0px 0px 32px 3px rgba(191,5,49,0.91);
        -moz-box-shadow: 0px 0px 32px 3px rgba(191,5,49,0.91);
        box-shadow: 0px 0px 32px 3px rgba(191,5,49,0.91);
        transition: 0.3s;
    }

.LC_L {
    margin-top: 13px;
}

.LC_HC {
    background-color: var(--si-body-bg);
    background-image: url();
    position: fixed;
    left: 20px;
    bottom: 35px;
    border-radius: 12px;
    z-index: 999999999999 !important;
    width: 370px;
    height: 650px;
    box-shadow: 0px 0px 3px 0px rgba(135,135,135,0.75);
    -webkit-box-shadow: 0px 0px 3px 0px rgba(135,135,135,0.75);
    -moz-box-shadow: 0px 0px 3px 0px rgba(135,135,135,0.75);
}

@media only screen and (max-width: 900px) {
    .LC_HC {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}


.LC_HC_Show {
    opacity: 0;
    animation: SlideUp 2s ease 0.1s 1 normal forwards;
}

.LC_HC_hide {
    animation: SlideUp 2s ease 0s 1 normal reverse;
}

.LC_HL_Show {
    opacity: 0;
    animation: SlideUp 2s ease 0.1s 1 normal forwards;
}

.LC_HL_hide {
    animation: SlideUp 2s ease 0s 1 reverse forwards;
}

@keyframes SlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ls-box-header {
    width: 100%;
    height: 75px;
    background-color: var(--si-primary);
    border-radius: 12px 12px 0 0;
}

.CloseChat {
    width: 25px;
    height: 25px;
    left: 10px;
    top: 8px;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(13.7px);
    -webkit-backdrop-filter: blur(13.7px);
    transition: 0.3s;
    color: #e2e2e2;
}

    .CloseChat:hover {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(13.7px);
        -webkit-backdrop-filter: blur(13.7px);
        transition: 0.3s;
        color: #FFF;
    }

.Close-ico {
    font-size: 20px;
    margin-top: 8.5px;
}

    .Close-ico:hover {
        font-size: 20px;
        margin-top: 10.5px;
    }
/* Hide scrollbar for Chrome, Safari and Opera */
.RemoveScrollBar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.RemoveScrollBar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}