:root {
    --container_size: 100%;
    --static_color: #f1f1f1;
    --duration_color: #2eb459;
    --line_width: 30px;
    --line_height: 2px;
    --number_font_size: 40px;
    --number_font_family: 'DM Sans', sans-serif;
    --number_font_color: #000;
    --dot_color: #f1f1f1;
    --remaining_font_size: 30px;
    --remaining_color: #f1f1f1;
    --remaining_font_family: 'DM Sans', sans-serif;
}

.items {
    width: var(--container_size);
    position: relative;
    margin: 0 auto;
    padding-top: 52.25%;
}

.items .item {
    width: 50%;
    height: var(--line_height);
    background: transparent;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right;
    transition: 0.3s
}

.items .item:after {
    content: "";
    display: block;
    width: 4px;
    height: 2px;
    background: var(--dot_color);
    position: absolute;
    left: var(--line_width);
    margin-left: 10px
}

.items .item>div {
    width: var(--line_width);
    height: 100%;
    position: absolute;
    left: 0
}

.items .item .static_color {
    background: var(--static_color);
    z-index: 1;
}

.items .item .duration_color {
    z-index: 2;
    display: block;
    position: relative;
}

.percent-marker-current-block {
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
}

.percent-marker-current-block {
    background: var(--duration_color);
}

.percent-marker-current-block.expired {
    width: 100%;
}

.center-time {
    position: absolute;
    z-index: 999;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.center-time .times {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: baseline;
}

.center-time .remaining-time {
    display: flex;
    justify-content: center;
}

.center-time .times * {
    font-family: var(--number_font_family);
    color: var(--number_font_color)
}

.center-time h2 {
    font-size: var(--number_font_size);
    line-height: 1;
    margin-bottom: 0;
}
.center-time .remaining-time  h3 {
    font-size: var(--remaining_font_size);
    color: var(--remaining_color);
    color: var(--remaining_font_family);
    text-transform: uppercase
}
@media all and (max-width: 1040px) {
    .center-time h2 {
        font-size: 70px;
    }
}

@media all and (max-width: 767px) {
    .center-time h2 {
        font-size: 7vw;
    }
}

.pass-graph-container {
    position:relative;
}