#evergreen-timer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ff0000;
    color: #fff;
    font-size: 16px;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 25;
    font-family: Arial, sans-serif;
    animation: pulse 1.5s infinite;
	display:flex;
	flex-direction:column;
}
	#evergreen-timer span{
		color:#fff !important;
	}
	
	#evergreen-timer .letra-pequena{
		font-size:10px !important;
	}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media(max-width:900px){
	
	#evergreen-timer {
		width: 70%;
	}
}