.conference
{
	transition: all 1s;
	position:fixed;
	top:59%;
    left:0px;
	height: 69px;
	cursor:pointer; 
	background: #219145;
	z-index:999;
	width: 320px;
} 
.conference_icon
{
	position:absolute;
	right:50px;  
	top:20px;
}
.conference_arrow
{
	position:absolute;
    right: 0px;
    top: 0px;
	width:33px;
	text-align: center;
    line-height: 69px;
	z-index:99;
	cursor:pointer;
	height:69px;
}

.conference_text
{
	position:absolute;
	top:0px;
	left:30px; 
	cursor:pointer;
	transition: all 1s;
	font-size: 14px;
	height: 69px;
	line-height:69px;
	color:#FFFFFF;
}
.conference:after
{
	position: absolute;
	display: block;
	content: " ";
	width: 33px;
	
	height: 69px;
	bottom: 0;
	right: 0;
	z-index: 1;
	background: #C8C8C8;
}
.conference:hover 
{
	color:black;
	background: #f0f3f4;
}
.conference:hover .conference_text
{
color:black; 
}
.conference:hover .conference_icon svg path
{
fill:#219145;
}
.conference.chide .conference_text
{
	top:0px;
	left:-400px;
}
.conference.chide .conference_arrow
{
	transform: rotate(180deg);
	
}
.conference.chide
{  
	width: 85px;
}

@media (max-width: 792px) {
	.conference
{
	display:none;
}
}