.tippy-box {
	padding: 10px;
	padding-right: 3px;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 0 0 1px rgba(0,0,0,.1),0 5px 20px rgba(0,0,0,.2);	
	font-family: "PT Sans", Arial, Helvetica, sans-serift;
}
.tippy-content {
	font-family: "PT Sans", Arial, Helvetica, sans-serift;
}
.tippy-arrow {
	display: none;
}

.cl-btn-7 {
    width: 30px;
    height: 25px;
    border-radius: 10px;
    position: relative;
    z-index: 99999;
    cursor: pointer;
	float: right;
	display: none;
}
.cl-btn-7:before {
    content: '+';
    color: #337AB7;
    position: absolute;
    z-index: 2;
    transform: rotate(45deg);
    font-size: 35px;
    line-height: 1;
    top: -5px;
    right: 6px;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);
}
.cl-btn-7:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #337AB7;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);
    transform: scale(0.01);
}
.cl-btn-7:hover:after {
    transform: scale(1);
}
.cl-btn-7:hover:before {
    transform: scale(0.8) rotate(45deg);
    color: #fff;
}
.cl-btn-7:first-of-type {
    display:block;;
}