.TSCountDownTimer {
    display: block;
    text-align: center;
    margin: 5px 0;
    padding: 0;
    width: 100%;
}
.cdtTitle {
    display: block;
    margin: 0 0 3px 0;
    padding: 0;
    font-size: 12px;
    font-weight: normal;
    color: #003764;
    line-height: 100%;
}
.cdtTablet {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    flex-wrap: nowrap;
}
.cdtDays,
.cdtHrs,
.cdtMins,
.cdtSecs {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 2px;
    min-width: auto;
    flex: 0 1 auto;
}
.cdtDays div:first-child,
.cdtHrs div:first-child,
.cdtMins div:first-child,
.cdtSecs div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    background-color: transparent;
    background-image: none;
    background-repeat: repeat-x;
    background-size: 100% 100%;
    border: 1px solid #003764;
    border-radius: 3px;
    text-align: center;
    line-height: 1;
}
.cdtDays div:first-child span,
.cdtHrs div:first-child span,
.cdtMins div:first-child span,
.cdtSecs div:first-child span {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ff6100;
    text-align: center;
    line-height: 35px;
}
.cdtDays div:last-child,
.cdtHrs div:last-child,
.cdtMins div:last-child,
.cdtSecs div:last-child {
    display: block;
    margin: 2px 0 0 0;
    padding: 0;
    font-size: 9px;
    color: #003764;
    text-align: center;
    line-height: 120%;
    white-space: nowrap;
}
.cdtSeparator1,
.cdtSeparator2,
.cdtSeparator3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6px;
    margin: 0 1px;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    color: #003764;
    text-align: center;
    line-height: 1;
    height: 35px;
}

/* Tablet için ayarlar */
@media (min-width: 768px) and (max-width: 1024px) {
    .cdtDays div:first-child,
    .cdtHrs div:first-child,
    .cdtMins div:first-child,
    .cdtSecs div:first-child {
        min-width: 38px;
        height: 38px;
    }
    .cdtDays div:first-child span,
    .cdtHrs div:first-child span,
    .cdtMins div:first-child span,
    .cdtSecs div:first-child span {
        font-size: 22px;
        line-height: 38px;
    }
    .cdtSeparator1,
    .cdtSeparator2,
    .cdtSeparator3 {
        font-size: 22px;
        height: 38px;
    }
}

/* Masaüstü için ayarlar */
@media (min-width: 1025px) {
    .cdtDays div:first-child,
    .cdtHrs div:first-child,
    .cdtMins div:first-child,
    .cdtSecs div:first-child {
        min-width: 41px;
        height: 41px;
    }
    .cdtDays div:first-child span,
    .cdtHrs div:first-child span,
    .cdtMins div:first-child span,
    .cdtSecs div:first-child span {
        font-size: 28px;
        line-height: 39px;
    }
    .cdtDays div:last-child,
    .cdtHrs div:last-child,
    .cdtMins div:last-child,
    .cdtSecs div:last-child {
        font-size: 10px;
    }
    .cdtSeparator1,
    .cdtSeparator2,
    .cdtSeparator3 {
        font-size: 28px;
        height: 39px;
    }
}

/* Çok küçük mobil cihazlar için */
@media (max-width: 360px) {
    .cdtDays,
    .cdtHrs,
    .cdtMins,
    .cdtSecs {
        margin: 0 1px;
    }
    .cdtDays div:first-child,
    .cdtHrs div:first-child,
    .cdtMins div:first-child,
    .cdtSecs div:first-child {
        min-width: 30px;
        height: 30px;
    }
    .cdtDays div:first-child span,
    .cdtHrs div:first-child span,
    .cdtMins div:first-child span,
    .cdtSecs div:first-child span {
        font-size: 16px;
        line-height: 30px;
    }
    .cdtDays div:last-child,
    .cdtHrs div:last-child,
    .cdtMins div:last-child,
    .cdtSecs div:last-child {
        font-size: 8px;
    }
    .cdtSeparator1,
    .cdtSeparator2,
    .cdtSeparator3 {
        font-size: 16px;
        height: 30px;
        width: 4px;
    }
}