.nvct-timer,
.nvct-timer * {
    box-sizing: border-box;
}

.nvct-timer {
    position: relative;
    width: 100%;
    min-height: var(--nvct-height, 76px);
    overflow: hidden;
    color: var(--nvct-text, #fff);
    background: var(--nvct-bg, #29c685);
    font-family: var(--nvct-font, inherit);
}

.nvct-background {
    position: absolute;
    inset: 0;
    background: var(--nvct-bg, #29c685);
    z-index: 1;
}

.nvct-has-gradient .nvct-background {
    background: linear-gradient(var(--nvct-gradient-direction, 90deg), var(--nvct-bg, #29c685), var(--nvct-gradient, #54aa78));
}

.nvct-has-image .nvct-background {
    background-image: linear-gradient(rgba(41, 198, 133, .82), rgba(41, 198, 133, .82)), var(--nvct-image, none);
    background-position: center;
    background-size: cover;
}

.nvct-has-image.nvct-has-gradient .nvct-background {
    background-image: linear-gradient(rgba(41, 198, 133, .82), rgba(84, 170, 120, .82)), var(--nvct-image, none);
    background-image: linear-gradient(var(--nvct-gradient-direction, 90deg), color-mix(in srgb, var(--nvct-bg, #29c685) 82%, transparent), color-mix(in srgb, var(--nvct-gradient, #54aa78) 82%, transparent)), var(--nvct-image, none);
}

.nvct-wave {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.nvct-wave-top {
    left: -4%;
    top: -28px;
    width: 108%;
    height: 72px;
    background: var(--nvct-top-wave, #54aa78);
    border-radius: 0 0 50% 50% / 0 0 42% 42%;
    transform: rotate(-0.35deg);
}

.nvct-wave-bottom {
    left: -4%;
    bottom: -50px;
    width: 108%;
    height: 86px;
    background: var(--nvct-bottom-wave, #ffffff);
    border-radius: 50% 50% 0 0 / 42% 42% 0 0;
    transform: rotate(0.25deg);
}

.nvct-inner {
    position: relative;
    z-index: 3;
    width: min(1140px, calc(100% - 48px));
    min-height: var(--nvct-height, 76px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 10px 0;
}

.nvct-dash {
    display: inline-block;
    width: 27px;
    height: 2px;
    background: var(--nvct-accent, #e6007e);
    flex: 0 0 auto;
}

.nvct-label {
    font-size: var(--nvct-font-size, 13px);
    font-weight: var(--nvct-weight, 800);
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nvct-count {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-left: 12px;
}

.nvct-unit {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-width: 54px;
}

.nvct-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 28px;
    background: var(--nvct-box, #1e325a);
    color: var(--nvct-text, #fff);
    font-size: var(--nvct-number-size, 10px);
    font-weight: 500;
    line-height: 1;
}

.nvct-caption {
    color: var(--nvct-text, #fff);
    font-size: var(--nvct-caption-size, 12px);
    font-weight: var(--nvct-weight, 800);
    line-height: 1;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .nvct-timer {
        min-height: var(--nvct-height-mobile, 170px);
    }

    .nvct-wave-top {
        top: -20px;
        left: -10%;
        width: 120%;
        height: 62px;
    }

    .nvct-wave-bottom {
        left: -10%;
        width: 120%;
        height: 76px;
        bottom: -46px;
    }

    .nvct-inner {
        width: min(100% - 30px, 430px);
        min-height: var(--nvct-height-mobile, 170px);
        display: grid;
        grid-template-columns: 28px 1fr;
        align-content: center;
        gap: 12px 16px;
        text-align: left;
    }

    .nvct-label {
        white-space: normal;
    }

    .nvct-count {
        grid-column: 1 / -1;
        width: 100%;
        margin: 8px 0 0;
        gap: 8px;
        justify-content: center;
    }

    .nvct-unit {
        min-width: 0;
        width: 25%;
        gap: 7px;
    }

    .nvct-number {
        width: 100%;
        max-width: 64px;
        height: 34px;
    }
}

@media (max-width: 380px) {
    .nvct-inner {
        width: calc(100% - 20px);
    }

    .nvct-count {
        gap: 5px;
    }

    .nvct-caption {
        font-size: max(9px, calc(var(--nvct-caption-size, 12px) - 2px));
    }
}

.nvct-no-background {
    background: transparent !important;
}

.nvct-no-background .nvct-background {
    background: transparent !important;
    background-image: none !important;
}
