/* Valencia - Car Hire HTML Template */

.floating-call-mobile { position: fixed; bottom: 15px; width: 72px; height: 72px; border-radius: 100px; background: #FF5722; z-index: 99; display: flex; justify-content: center; align-items: center; left: 15px; } 
.floating-call-mobile a { color: #fff; font-size: 24px; z-index: 999;}
.circle {
    border-radius: 50%;
    background-color: rgba(255, 87, 34, 0.5);
    width: 150px;
    height: 150px;
    position: absolute;
    opacity: 0;
    animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
}
@keyframes scaleIn { from { transform: scale(.5, .5); opacity: .5; } to { transform: scale(2.5, 2.5); opacity: 0; } }
	
}
