.display-none{
    display:none!important;
}
.loader-custom{
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    background-color: rgba(0, 0, 0, .7)
}
.loader-custom #loader2{
    position: absolute;
    top: 40%;
    left: 48%;
    color: #fff;
}
.chat-widget-float-btn{
    position: fixed;
    right: 10px;
    bottom: 15px;
    text-align: center;
}
.chat-widget-float-btn #chat-widget-open-btn{
    background: #3e416d;
    color: #fff;
    font-size: 34px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 6px 3px 10px 10px;
    box-shadow: 2px 2px 3px #999;
}
.chat-widget-float-btn .count{
    position: absolute;
    top: -15px;
    font-size: 18px;
    color: #fff;
    background: #3e416d;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    right: 0;
}
.chat-widget{
    /*width: 500px;*/
    /*position: fixed;
    right: 20px;*/
    z-index: 9999999;
    /*bottom: 75px;*/
    bottom: -380px;
    /*bottom: -440px;*/
    display: none;
    /*position: relative;*/
}
.visitor-chat-widget{
    height: auto;
}
.chat-widget .loading_screen{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9;
    display: none;
}
.chat-widget .loading_screen span{
    font-size: 32px;
    left: 40%;
    position: absolute;
    top: 40%;
    font-weight: 600;
}
.chat_msg_count_iframe{
    border: none;
    width: 25px;
    height: 35px;
    overflow: hidden;
    position: relative;
    top: -4px;
}
.chat_notification {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #fff;
    color: #333;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    left: 50%;
    top: -60px;
    font-size: 17px;
    font-weight: 600;
    z-index: 99999999;
}

.chat_notification.show {
    visibility: visible;
    /*-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;*/

    -webkit-animation: fadein 0.5s, fadeout 0.10s 4.5s;
    animation: fadein 0.5s, fadeout 0.10s 4.5s;
    top: 30px;
}

.lock_section{
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    background-color: rgba(0, 0, 0, .7)
}
.lock_section .lock-icon{
    position: absolute;
    top: 40%;
    left: 48%;
    color: #fff;
}

@-webkit-keyframes fadein {
    from {top: -60px; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@keyframes fadein {
    from {top: -60px; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: -60px; opacity: 0;}
}

@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: -60px; opacity: 0;}
}

@media print {
    body {
        height: 100%;
        width: 1200px;
    }
    @page {
        margin: 0;
        padding: 0;
        height: 100%;
        size: 4in 6in landscape;
        orientation: landscape;
    }
}