/*fixed-contact*/
.fixed-contact-wrap {
    z-index:99999;
    position:fixed;
    right:10px;
    top:40%;
    width:50px;
    margin-top:-90px;
    overflow:hidden;
    border-radius:30px;
    opacity:0;
    transition:all .4s;
    transform: translateX(95px);
    -webkit-transform: translateX(95px);
    -moz-transform: translateX(95px);
}
.fixed-contact-wrap.show{  transform:none; opacity:1; }
.fixed-contact-wrap.active {width:260px;}
.fixed-contact-wrap li {position:relative;height:50px;background:#AF2429;overflow:hidden;transition:all .4s;list-style:none}
.fixed-contact-wrap.active li {overflow:inherit; list-style:none}
.fixed-contact-wrap li a {position:relative;z-index:1000;display:block;}
.fixed-contact-wrap li i {
    z-index:1000;
    position:absolute;
    right:0;
    display:block;
    width:50px;
    height:50px;
    transition:all .4s;
	background-color:#AF2429;
	background-repeat: no-repeat;
	background-position: center center;
}
.fixed-contact-wrap.active li:after {
    z-index:1001;
    content:'';
    position:absolute;
    bottom:0;
    left:10px;
	right:10px;
    display:block;
    height:1px;
    background:rgba(255,255,255,.2);
}
.fixed-contact-wrap.active li:last-child:after {display:none;}
.fixed-contact-wrap li:hover i,.fixed-contact-wrap li:hover strong{opacity:.8;}
.fixed-contact-wrap .online_p i {
    background-image:url(../images/right_p.png);
    border-top-left-radius:30px;
    -moz-border-top-left-radius:30px;
    -webkit-border-top-left-radius:30px;
    border-top-right-radius:30px;
    -moz-border-top-right-radius:30px;
    -webkit-border-top-right-radius:30px;
}
.fixed-contact-wrap .online_e i {background-image: url(../images/right_e.png);}
.fixed-contact-wrap .online_w i {background-image: url(../images/right_w.png);}
.fixed-contact-wrap .online_s i {background-image: url(../images/right_s.png);}
.fixed-contact-wrap .online_code i {background-image: url(../images/right_code.png);}

.fixed-contact-wrap li strong {
    position:absolute;
    top:0;
    right:-135px;
    display:block;
    width:190px;
	line-height:110%;
    padding:20px 0 0 30px;
    color:#fff;
    background:#AF2429;
    white-space:nowrap;
    transition:all .4s;
	font-family: 'poppins-semibold';
	font-size:13px;
	text-align: right;
}
.fixed-contact-wrap.active li strong {right:60px;}
.fixed-contact-wrap .online_code strong img{max-width:80px;}
.fixed-contact-wrap.active .online_code{height:130px;}
.fixed-contact-wrap.active .online_code strong p{margin:0;margin-bottom:5px;}
.fixed-contact-wrap li.online_code:hover strong{opacity:1;}

@media only screen and (max-width: 992px) {
	.fixed-contact-wrap{display:none !important;}
	.fixed-contact-wrap.show{opacity:0;}
}