

/* Start:/local/templates/escalada/css/action-timer.css?17701742255089*/
.timer-container {
    --timer-bg: #050607;
    --timer-muted: rgba(255, 255, 255, 0.12);
    --timer-accent: #2597d4;
    --timer-text: #fff;
    --timer-size: 212px;
    --timer-gap: 84px;
    --timer-title-size: 44px;
    --timer-subtitle-size: 36px;
    --timer-label-size: 32px;
    --timer-value-size: 90px;
    --timer-cta-width: 353px;
    --timer-cta-height: 60px;
    
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 90px auto;
    box-sizing: border-box;
	padding: 0 10px;
}

.timer-header {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timer-title {
	font-family: 'Tahoma-Bold';
    font-size: var(--timer-title-size);
    line-height: 1.2;
    margin: 0;
}

.timer-highlited-title {
    color: #EEC33E;
}

.timer-bonus {
	font-family: 'Open Sans', 'Arial', sans-serif;
}

.timer-subtitle {
    color: var(--timer-accent);
	font-family: 'Tahoma-Bold';
    font-size: var(--timer-subtitle-size);
    line-height: 1.2;
}

.timer-wrap {
    display: flex;
    gap: var(--timer-gap);
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.timer-panel {
    width: var(--timer-size);
    text-align: center;
    flex-shrink: 0;
}

.timer-circle {
    position: relative;
    width: var(--timer-size);
    height: var(--timer-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px auto;
}

.timer-center-number {
	font-family: 'Tahoma';
    font-size: var(--timer-value-size);
    font-weight: 400;
    line-height: 1;
}

.timer-label {
    font-size: var(--timer-label-size);
    color: var(--timer-text);
    text-transform: lowercase;
    font-weight: normal;
    display: block;
}

.timer-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.timer-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform-origin: 0 0;
    opacity: 1;
    transition: background 0.25s, opacity 0.25s, transform 0.25s;
    background: var(--timer-muted);
    box-shadow: 0 0 6px rgba(23, 162, 255, 0.07);
}

.timer-dot.active {
    background: var(--timer-accent);
    box-shadow: 0 6px 18px rgba(23, 162, 255, 0.14);
}

.timer-cta {
    display: block;
    width: var(--timer-cta-width);
    height: var(--timer-cta-height);
    margin: 0 auto;
    padding: 16px 23px;
    border: 2px solid var(--timer-accent);
    border-radius: 4px;
    background: transparent;
    color: var(--timer-text);
	font-family: 'Open Sans', 'Arial', sans-serif;
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.timer-cta:hover {
    background: var(--timer-accent);
}

@media (max-width: 1439px) {
    .timer-container {
        --timer-size: 162px;
        --timer-gap: 50px;
        --timer-title-size: 34px;
        --timer-subtitle-size: 26px;
        --timer-value-size: 68px;
        --timer-label-size: 25px;
        --timer-cta-width: 270px;
		--timer-cta-height: 45px;
        gap: 35px;
    }

	.timer-dot {
		width: 6px;
		height: 6px;
	}

	.timer-cta {
		font-size: 14px;
		padding: 11px 20px;
	}

}

@media (max-width: 1023px) {
    .timer-container {
        --timer-size: 140px;
        --timer-gap: 30px;
        --timer-title-size: 28px;
        --timer-subtitle-size: 20px;
        --timer-value-size: 51px;
        --timer-label-size: 20px;
        --timer-cta-width: 241px;
		--timer-cta-height: 34px;
        gap: 35px;
    }
    
    .timer-wrap {
        gap: var(--timer-gap);
    }
    
    .timer-header {
        gap: 18px;
    }
    
    .timer-dot {
        width: 5px;
        height: 5px;
    }

	.timer-circle {
		margin: 0 auto 10px auto;
	}

	.timer-cta {
		padding: 6px 18px;
	}

}

@media (max-width: 767px) {
    .timer-container {
        --timer-size: 110px;
        --timer-gap: 20px;
        --timer-title-size: 22px;
        --timer-subtitle-size: 16px;
        --timer-value-size: 40px;
        --timer-label-size: 16px;
        --timer-cta-width: 187px;
		--timer-cta-height: 26px;
        gap: 30px;
    }
    
    .timer-wrap {
        gap: var(--timer-gap);
    }
    
    .timer-header {
        gap: 15px;
    }
    
    .timer-dot {
        width: 4px;
        height: 4px;
    }
    
    .timer-cta {
		padding: 3px 16px;
        font-size: 12px;
    }

	.timer-circle {
		margin: 0 auto 6px auto;
	}

}

@media (max-width: 575px) {
    .timer-container {
        --timer-size: 78px;
        --timer-gap: 0px;
        --timer-title-size: 18px;
        --timer-subtitle-size: 14px;
        --timer-value-size: 27px;
        --timer-label-size: 12px;
        --timer-cta-width: 268px;
		--timer-cta-height: 50px;
        gap: 25px;
    }
    
    .timer-wrap {
        gap: var(--timer-gap);
    }
    
    .timer-header {
        gap: 12px;
    }

    .timer-dot {
        width: 3px;
        height: 3px;
    }
    
    .timer-cta {
		padding: 3px 16px;
        font-size: 13px;
    }
}
/* End */
/* /local/templates/escalada/css/action-timer.css?17701742255089 */
