.popupTeleconsulta {
    position: fixed;
    z-index: 999;
    bottom: 30px;
	right: -400px;
    width: 260px;
    padding: 30px;
    background-color: #ecc424;
    color: #32a497;
    -webkit-box-shadow: 0px 0px 175px -54px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 0px 175px -54px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 80px -54px rgba(0,0,0,0.7);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: all 0.4s;
}

.popupTeleconsulta.show{
	right: 0;
}
.titulo {
    font-family: open-sans, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    color: white;
}

.texto {
    font-size: 14px;
    line-height: 20px;
    font-family: museo-sans, sans-serif;
    font-weight: 600;
    margin: 10px 0 10px;
}

.outros {
    line-height: 20px;
    font-size: 12px;
    font-family: museo-sans, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.cruz{
	position: absolute;
	top:0px;
	right: 0px;
	padding: 10px;
	color: white;
	font-family: open-sans, sans-serif;
    font-weight: 700;
    cursor: pointer;
}