.discount-timer {
    background-color: #f6f6f6;
    border-radius: 10px;
    font-size: 16px;
    overflow: hidden !important;
    margin-bottom: 2rem;
    position: relative;
}

.discount-timer header, .discount-timer section {
    z-index: 100;
}

/* remove scroll */
.discount-timer section,
.discount-timer section .discountCarousel {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.discount-timer section::-webkit-scrollbar,
.discount-timer section .discountCarousel::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.discount-timer img {
    z-index: 0;
    min-height: 100%;
    position: absolute;
}

.discount-timer header {
    align-items: center;
    display: flex;
    padding: 16px 24px;
    z-index: 1000;
    position: relative;
}

.discount-timer header aside h3 {
    font-size: 1em;
    font-weight: 700;
    font-family: 'ITC Avant Garde Std Md';
    color: #343434;
    margin-left: 0.5rem;
    width: 75%;
    text-align: left;
    letter-spacing: .8px;
}

.discount-timer header section .counter {
    background-color: #343434;
    color: #fff;
    display: flex;
    font-size: 21.33px;
    padding: 8px 4px;
    border-radius: 8px;
}

.discount-timer header section .counter .counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: .65em 13.85px .15em 11.85px;
    justify-content: center;
    position: relative;
}

.discount-timer header section .counter .counter-item .counter-number {
    font-family: 'ITC Avant Garde Std Md';
    font-weight: 700;
    letter-spacing: 1.067px;
    line-height: normal;
}

.discount-timer header section .counter .counter-item .counter-label {
    font-size: 10px;
    font-family: 'Oswald';
    font-weight: 500;
}

.discount-timer header section .counter .dots::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--color-dots);
    border-radius: 50%;
    position: absolute;
    top: 14%;
    left: 135%;
}

.discount-timer header section .counter .dots::after {
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--color-dots);
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 135%;
}

.discount-timer section .discountCarousel {
    display: flex;
    overflow-x: auto;
    padding: 0 24px 24px 24px;
}

.discount-timer section .discountCarousel div div {
    margin-right: 16px;
}

.discount-timer section .discountCarousel div div:last-child {
    margin-right: 0;
}

.discount-timer section .discountCarousel div div .discountCarousel-item {
    background-color: #fff;
    border-radius: 10px;
    margin-right: 16px;
    padding: 10px;
    min-width: 245px;
    min-height: 185px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.discount-timer section .discountCarousel div div .discountCarousel-item:last-child {
    margin-right: 0;
}

.discount-timer section .discountCarousel div div .discountCarousel-item * {
    z-index: 50;
    font-family: 'Oswald';
}

.discount-timer section .discountCarousel div div .discountCarousel-item img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.discount-timer section .discountCarousel div div .discountCarousel-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 4px;
    color: #343434;
}

.discount-timer section .discountCarousel div div .discountCarousel-item aside {
    background-color: #1C4DA1;
    max-height: 52px;
    min-width: 92px;
    padding: 2px 1px 2px 6px;
    text-align: right;
    line-height: 1.14;

    display: flex;
    background: #1C4DA1;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.discount-timer section .discountCarousel div div .discountCarousel-item aside span {
    font-size: 24px;
    color: var(--color-text);
}

.discount-timer section .discountCarousel div div .discountCarousel-item aside span:last-child {
    font-size: 16px;
    font-weight: 300;
    position: relative;
    margin-right: 7px;
    margin-top: 2px;
}

.discount-timer section .discountCarousel div div .discountCarousel-item aside span:last-child::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 0;
}

@media screen and (min-width: 990px){
    .discount-timer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .discount-timer header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 0 0 32px;
    }

    .discount-timer  section {
        overflow-x: auto;
    } 

    .discount-timer .timer {
        align-items: flex-start;
    }

    .discount-timer header aside h3 {
        font-size: 22px;
        letter-spacing: 1.2px;
        width: 70%;
    }

    .discount-timer header section .counter .counter-item .counter-number {
        font-size: 26px;
    }

    .discount-timer header section .counter .counter-item {
        margin: .65em 16.85px .15em 12.85px;
    }

    .discount-timer header section .counter .counter-item .counter-label {
        font-size: 11.556px;
    }
    
    .discount-timer section .discountCarousel div div .discountCarousel-item{
        min-width: 243px;
        min-height: 252px;
        padding: 16px;
    }
    .discount-timer section .discountCarousel div div .discountCarousel-item img {
        bottom: 0%;
    }

    .discount-timer section .discountCarousel{
        display: flex;
        overflow-x: auto;
        padding: 24px 48px 24px 24px;
    }
}

@media screen and (min-width: 1280px){
    .discount-timer  section {
        overflow-x: auto;
    } 

    .discount-timer header aside h3 {
        width: 65%;
    }
}