.mb_custom_floating_circles {
    display: inline-block;
    position: fixed;
    right: 0;
    top: 140px;
    z-index: 99999;
    width: auto;
    background-color: transparent;
    border: none;
    height: auto;
    -webkit-transform: translate3d(170px, 0, 0);
    transform: translate3d(170px, 0, 0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-top: 0;
    width: 105px;
}

.mb_custom_floating_circles.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mb_custom_floating_circles > a {
    width: 100px;
    height: 100px;
    background-color: #00578f;
    display: block;
    transition: all .5s;
    color: #FFF;
    border-radius: 50%;
    margin-bottom: 5px;
    position: relative;
}

.mb_custom_floating_circles > a > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.5s;
}
.mb_custom_floating_circles > a > div:first-child {
    width: 90%;
    height: 90%;
    opacity: 0.4;
    background-size: contain;
    background-position: center center;
}
.mb_custom_floating_circles > a > div:last-child {
    text-align: center;
    width: 100%;
}
.mb_custom_floating_circles > a > div:last-child > span {
    display: block;
    line-height: 16px;
}
.mb_custom_floating_circles > a > div > h3 {
    font-size: 30px;
    color: #FFF;
    text-align: center;
    padding-bottom: 0;
    font-weight: 300;
    margin-bottom: 2px;
}

.mb_custom_floating_circles > a > div > h3 > span {
    font-size: 22px;
    vertical-align: top;
    line-height: 22px;
    transform: rotate(10deg);
    display: inline-block;
}

.mb_custom_floating_circles > a:hover {
    background-color: #73CB30;
}
@media screen and (max-width: 1449px) {
	.mb_custom_floating_circles > a > div > h3.mb_smaller_font {
	    font-size: 18px;
	}
}
@media screen and (min-width: 1450px) {
	
	.mb_custom_floating_circles {
		width: 160px;
	}
	.mb_custom_floating_circles > a {
		width: 150px;
    	height: 150px;
	}
}
@media screen and (max-width: 1050px) {
    body .mb_custom_floating_circles {
        display: none !important;
    }
}

@media screen and (max-height: 550px) {
	body .mb_custom_floating_circles {
        display: none !important;
    }
}