/* style1 */
.countdown-style1-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 4px;
    text-align: center;
    padding-left: 2px;
}
.countdown-style1-box {
    background-color: #FF3838;
    color: white;
    border-radius: 8px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
    justify-content: center;
    min-height: 40px;
}
.countdown-style1-value {
    font-size: 18px;
    line-height: 18px;
    color: #fff!important;
}
.countdown-style1-container span {
    color: #fff!important;
    font-size: 10px;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 400;
    align-self: stretch;
}

/* style2 */
.countdown-style2-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 8px;
    text-align: center;
}
.countdown-style2-box {
    display: flex;
    width: 34px;
    padding: 2px 4px;
    flex-direction: column;
    align-items: center;
    border-radius: 2px;
    border-top: 2px solid #F00;
    background: #313131;
}
.countdown-style2-value {
    color: #FFF!important;
    text-align: center;
    font-family: "Source Sans Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.countdown-style2-container span {
    color: #fff!important;
    font-size: 10px;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 400;
    align-self: stretch;
}

/* style 3 */

.countdown-style3-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 4px;
    text-align: center;
}
.countdown-style3-box {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 2px 4px;
    flex-direction: column;
    align-items: center;
    border-radius: 56px;
    background: #E62929;
}
.countdown-style3-value {
    color: #FFF!important;
    text-align: center;
    font-family: "Source Sans Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.countdown-style3-container span {
    color: #E62929;
    font-size: 9.5px;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 400;
    align-self: stretch;
    margin-top: 6px;
}

/* style 4 */

.countdown-style4-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 4px;
    text-align: center;
}
.countdown-style4-box {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 2px 4px;
    flex-direction: column;
    align-items: center;
    border-radius: 56px;
    background: #295FE6;
}
.countdown-style4-value {
    color: #FFF!important;
    text-align: center;
    font-family: "Source Sans Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.countdown-style4-container span {
    color: #295FE6;
    font-size: 9.5px;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 400;
    align-self: stretch;
    margin-top: 6px;
}
/* style 5 */

.countdown-style5-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 4px;
    text-align: center;
}
.countdown-style5-box {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 2px 4px;
    flex-direction: column;
    align-items: center;
    border-radius: 56px;
    background: linear-gradient(0deg, #D3D3D3 50.95%, #E8E8E8 50.96%);
}
.countdown-style5-value {
    color: #141414;
    text-align: center;
    font-family: "Source Sans Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.countdown-style5-container span {
    color: #000;
    font-size: 9.5px;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 400;
    align-self: stretch;
    margin-top: 6px;
}

@media (min-width: 320px) and (max-width: 480px) {
    .countdown-style5-value {
        font-size: 16px;
    }
    .countdown-style4-value {
        font-size: 16px;
    }
    .countdown-style3-value {
        font-size: 16px;
    }
    .countdown-style5-box {
        width: 26px;
        height: 26px;
        padding: 2px 4px;
    }
    .countdown-style4-box {
        width: 26px;
        height: 26px;
        padding: 2px 4px;
    }
    .countdown-style3-box {
        width: 26px;
        height: 26px;
        padding: 2px 4px;
    }
    .countdown-style3-container span {
        font-size: 8px;
    }
    .countdown-style4-container span {
        font-size: 8px;
    }
    .countdown-style5-container span {
        font-size: 8px;
    }

}