/*
--------
DZM Sale Countdown
--------
 */

.dzm-scd-wrapper .productbox-price{
    font-size: 1.2rem !important;
}

.dzm-scd-wrapper .splide__arrow svg {
    height: 2.2rem;
    transition: fill .2s linear;
    width: 1.2rem;
    transform: translateX(33px);
    background-color: white;
    /*border:1px solid var(--primary);*/
    padding: 4px;
    border-radius: 2px;
}

.dzm-scd-wrapper .splide__arrow--prev svg {
    transform: scale(-1) translateX(33px);
}

.dzm-scd-wrapper .dzm-scd-banderole {
    background-color:var(--danger);
    font-weight:bolder;
    font-size: .8rem;
    color: white;
    transform: rotate(-45deg);
    padding: 4px;
    width: 150px;
    text-align: center;
    left: -24px;
    top: 20px;
}

.dzm-scd-wrapper .dzm-scd-banderole:empty {
    display: none;
}

.dzm-scd-wrapper .item-slider img {
    border-radius: 8px;
}

/*.dzm-scd-wrapper .splide__arrow {
    display: none;
}*/


.timeItem {

    border-radius: 3px;
    color: var(--secondary);
    /* min-width:55px; */
    /* aspect-ratio: 1/1;*/

}

.timeUnit {
    font-size: clamp(2rem, 2.5vw, 3rem);
    font-weight: 700;
}

.timeDesc {
    font-size: 0.8rem;
}

.countdownWrap {
    position:relative;
}

.countdownOverlay {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    /* background-color:rgb(158, 46, 46); */
    background-color:var(--primary);
    height:125px;
    border-radius:0 0 10px 10px;
    z-index: 999;
    font-size: 1.4rem;
    transition: display .2s ease-in-out;
    opacity: 1;
}

.countdownOverlay:empty {
    /* display:none; */
    opacity: 0;
    transition: all .2s ease-in-out;
}

.countdownWrap {
    /* transform:translateY(-100px); */
}

.goe-sale-countdown-item {
    background-color:white;

    border-radius: 10px;
    padding-bottom: 75px !important;
}

.dzm-scd-wrapper {
    /* border-radius: 10px;*/
    /* box-shadow: 0px 10px 40px 0px rgb(0 0 0 / 6%);*/
    overflow: hidden;
}

.dzm-scd-heading {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    text-align: center;
}

.dzm-scd-wrapper .dzm-ps-item-price {
    color:var(--danger) !important;
}



/*
# COUPON COPY
 */

.dzm-cc-codeBox-wrapper {
    background-color:whitesmoke;
    color:var(--primary);
    border-radius: 10px;
}

#dzm-cc-toast-container {
    position: absolute;
    bottom:0;
    right:0;
    width:100%;
    display: flex;
    justify-content: center;
}

.dzm-cc-toast {
    /*position: absolute;
    bottom: 0;
    right: 0;*/
    border-radius: 3px;
    background-color:var(--success);
    color: #fff;
    padding: 10px;
    font-size: 16px;
    z-index: 999;
    animation: fadeOut 2s forwards;

}

.dzm-cc-wrapper .dzm-cc-banderole {
    background-color: var(--danger);
    font-weight: bolder;
    font-size: .8rem;
    color: white;
    transform: rotate(45deg);
    padding: 4px;
    width: 150px;
    text-align: center;
    right: -35px;
    top: 25px;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform:translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-110%);
    }
    40% {
        opacity: 1;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/*
# PRODUCT SHOWCASE
 */

.dzm-psc-wrapper {
    position: relative;
}

.dzm-psc-heading {
    position: relative;
    z-index: 3;
}

/* Background Options */

.dzm-psc-bg-gold {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,242,195,1) 100%);
}

.dzm-psc-bg-bronze {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(242,225,219,1) 100%);
}

.dzm-psc-bg-grey {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(249,249,249,1) 100%);
}

.dzm-psc-bg-transparent {
    background: rgb(255,255,255,0);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(249,249,249,0) 100%);
}



/* Shooting Stars */

span.dzm-psc-stars {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1);
    animation: animate 12s linear infinite;
}
span.dzm-psc-stars::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}
@keyframes animate {
    0% {
        transform: rotate(-90deg) translateX(10px);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: rotate(-90deg) translateX(-300px);
        opacity: 0;
    }
}
span.dzm-psc-stars:nth-child(1) {
    top: 0;
    left: 45%;
    animation-delay: 0s;
    animation-duration: 2s;
}

span.dzm-psc-stars:nth-child(2) {
    top: 0;
    right: 33%;
    left: initial;
    animation-delay: 0.2s;
    animation-duration: 3s;
}

span.dzm-psc-stars:nth-child(3) {
    top: 0;
    left: 33%;
    animation-delay: 0.4s;
    animation-duration: 4s;
}

span.dzm-psc-stars:nth-child(4) {
    top: 0;
    right: 5%;
    left: initial;
    animation-delay: 0.6s;
    animation-duration: 1.5s;
}

span.dzm-psc-stars:nth-child(5) {
    top: 0;
    left: 40%;
    animation-delay: 0.8s;
    animation-duration: 2.5s;
}

span.dzm-psc-stars:nth-child(6) {
    top: 0;
    right: 35%;
    animation-delay: 1s;
    animation-duration: 3s;
}
span.dzm-psc-stars:nth-child(7) {
    top: 0;
    left: 10%;
    animation-delay: 1s;
    animation-duration: 4.75s;
}

span.dzm-psc-stars:nth-child(8) {
    top: 0;
    right: 23%;
    left: initial;
    animation-delay: 1.4s;
    animation-duration: 3.25s;
}

span.dzm-psc-stars:nth-child(9) {
    top: 0;
    right: 80%;
    left: initial;
    animation-delay: 0.75s;
    animation-duration: 3.25s;
}

span.dzm-psc-stars:nth-child(10) {
    top: 0;
    right: 90%;
    left: initial;
    animation-delay: 2.75s;
    animation-duration: 6.25s;
}




.nav-item .active {
    border-bottom: 1px solid var(--primary);
    transition: all .3s ease-in-out;
}

.dzm-psc-nav-tabs  .nav-tabs {
    display: flex;
    justify-content: center;
    border-bottom: none;
}

.dzm-psc-nav-tabs .nav-link {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.dzm-psc-nav-tabs .nav-link::after {
    border-width: 0 0 1px !important;
}


/*
# TOP SELLER
 */

.dzm-topseller-wrapper {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,241,211,1) 100%);

}

/*
# COUPON COPY
 */


.dzm-cc-coupon-image {
    background-position: center;
}
@media screen and (max-width: 991px) {
    .dzm-cc-coupon-image {
        height:150px;
    }
}

@media screen and (min-width: 992px) {
    .dzm-cc-coupon-image {
        height:100%;
        aspect-ratio: 1/1;
    }
}


.dzm-cc-codeSubText {
    line-height: .8rem;
    font-size: .7rem;
}

.dzm-cc-wrapper {
    background-color:white;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.dzm-cc-copy-confirmer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #136F63;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    pointer-events: none;
    font-size: 1.3rem;
    transition: all .3s ease-in-out;
    opacity: 0;

}