#sticky-mobile-custom {
    display: none;
    position: fixed;
    bottom: -81px;
    width: 100%;
    Z-INDEX: 999;
	transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
}

/* TABLET SCREEN */
@media screen and (max-width: 768px){

#sticky-mobile-custom { 
    display: block;
}

}


