.btn-webchat {
    width: 132px;
    height: 132px;
    background-image: url('../img/webHelpAvatar.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position:left center;
    bottom: 32px;
    z-index: 3;
    left: -2px;
    position: fixed;
    transition: all .3s ease-out;
}
.btn-webchat a{
    display: block;
    width: 100%;
    height: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx) {
    .btn-webchat {
        background-image: url('../img/webHelpAvatar2x.png');
    }
}
.btn-webchat a p {
    position: absolute;
    display: block;
    font-size: 15px;
    color: #fff;
    bottom: 15px;
    left: 20px;
}

.btn-webchat a:hover {
    text-decoration: none;
}
.chat-box {
	width: 100%;
    max-width: 388px;
    max-height: 550px;
    margin-top: 72px;
    height: calc( 100% - 72px );
    border: 1px solid #ccc;
    border-left: 0;
    position: fixed;
    z-index: 3;
    bottom: 0;
	left:-100%;
    -webkit-transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    overflow: hidden;
    display: block;
}
@media screen and (max-width: 999px) and (min-width: 740px) {
	.chat-box{
		height: calc( 100% - 56px );
		margin-top: 56px;
	}
}
@media screen and (max-width: 739px) {
	.chat-box {
		height: calc( 100% - 45px );
		margin-top: 45px;
		max-width: 100%;
		max-height: 100%;
	}
	body.scroll-lock {
		overflow: hidden;
		position: fixed;
		height: 100%;
		top: 0;
		left: 0;
		z-index: -99;
	}
}
@media screen and (max-width: 320px) {
	.chat-box {
		min-width: 320px;
		left: -330px;
	}
}
.chat-box.active{
    left:0;
}
.btn-Exit{
    background: none;
    border: none;
	background-image: url('../img/chevron-left.png');
	background-repeat: no-repeat;
    background-position: center center;
	display: block;
	position: absolute;
    z-index: 999;
    padding: 25px 20px;
}
.btn-Exit.active{
	margin-left: 0px;
    outline: none;
}
iframe.chat {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px){
    .class{
        background: #000;
    }
}
@media screen and (max-width: 999px) and (min-width: 740px){
    .btn-webchat {
        width: 104px;
        height: 104px;
        bottom: 12px;
    }
    .btn-webchat a p {
        font-size: 13px;
    }
}
@media screen and (max-width: 739px){
      .btn-webchat {
        width: 60px;
        height: 60px;
        bottom: 10px;
    }
    .btn-webchat.hidden{
    	/* display: none; */
    	left: -100px;
    }
    .btn-webchat a p {
        font-size: 11px;
        bottom: 5px;
        left: 5px;
    }  
}
