.dz-countdownWrapper {
    display: flex;
    justify-content: center;
    transition: all 0.2s ease;
}
.dz-countdown {
    text-align: center;
    overflow: hidden;
    display: flex;
    position: relative;
    margin: 0;
    padding: 0;
    transition: all 0.2s ease;
}
.dz-countdown:before,
.dz-countdown:after {
    content: '';
    border-top: 3px #fff solid;
    position: absolute;
    top: 40%;
    left: 230px;
    right: -2px;
    transition: all 0.2s ease;
}
.dz-countdown:after {
    background: rgba(255, 255, 255, 0.5);
    bottom: 20%;
}
.dz-countdown__item {
    margin: 0;
    padding: 0;
}
.dz-countdown__item:first-child {
    margin-right: 24px;
}
.dz-countdown__num,
.dz-countdown__separator {
    font: 700 100px SamsungSharpSans, sans-serif;
    transition: all 0.2s ease;
}
.dz-countdown__num {
    width: 172px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 16px;
}
.dz-countdown__days {
    background: #343434;
    width: 206px;
    color: #fff;
}
.dz-countdown__separator {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 46px;
}
.dz-countdown__text {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    transition: all 0.2s ease;
}

/* Adaptation */
@media screen and (max-width: 879px) {
    .dz-countdown:before,
    .dz-countdown:after {
        top: 38%;
        left: 160px;
    }
    .dz-countdown:after {
        bottom: 20%;
    }
    .dz-countdown__num,
    .dz-countdown__separator {
        font-size: 70px;
    }
    .dz-countdown__num {
        width: 120px;
        height: 112px;
        border-radius: 8px;
        margin-bottom: 16px;
    }
    .dz-countdown__days {
        width: 144px;
    }
    .dz-countdown__item:first-child {
        margin-right: 16px;
    }
    .dz-countdown__separator {
        width: 16px;
        padding-bottom: 36px;
    }
    .dz-countdown__text {
        font-size: 16px;
    }
}
@media screen and (max-width: 589px) {
    .dz-countdown:before,
    .dz-countdown:after {
        border-top-width: 2px;
        top: 39%;
        left: 118px;
    }
    .dz-countdown__num,
    .dz-countdown__separator {
        font-size: 40px;
    }
    .dz-countdown__num {
        width: 90px;
        height: 84px;
        margin-bottom: 8px;
    }
    .dz-countdown__days {
        width: 102px;
    }
    .dz-countdown__separator {
        padding-bottom: 26px;
    }
    .dz-countdown__text {
        font-size: 14px;
    }
}
@media screen and (max-width: 479px) {
    .dz-countdown:before,
    .dz-countdown:after {
        border-top-width: 2px;
        top: 37.5%;
        left: 88px;
    }
    .dz-countdown__num,
    .dz-countdown__separator {
        font-size: 32px;
    }
    .dz-countdown__num {
        width: 60px;
        height: 56px;
        margin-bottom: 8px;
    }
    .dz-countdown__days {
        width: 72px;
    }
    .dz-countdown__separator {
        padding-bottom: 20px;
    }
    .dz-countdown__text {
        font-size: 10px;
    }
}
@media screen and (max-width: 340px) {
    .dz-countdown:before,
    .dz-countdown:after {
        left: 80px;
    }
    .dz-countdown__item:first-child {
        margin-right: 8px;
    }
}