/*
--------
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-wrapper section {
    padding-top:0;
}

.dzm-psc-heading {
    position: relative;
    z-index: 3;
}

.dzm-psc-stars {
    pointer-events: none;
}

/* 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;
}



/*
# 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;

}

/*
CONVERSION BOOSTER WIDGETS GENERAL
*/

#dzm_conversion_booster_container.row .col-12:empty {
    display: none;
}

.info-essential + .product-offer {
    margin-top:15px;
}

#dzm_conversion_booster_container .alert {
    margin-bottom: 0;
}

/*
OBSERVER
 */

.dzm-con-obs-wrapper {
    font-size: .85rem;
}

.dzm-con-obs-wrapper i {
    transform: translateY(1px);
}


/*
# VERSAND COUNTDOWN
 */

.dzm-ctd-wrapper {
    font-size: .85rem;
}

.dzm-ctd-wrapper i {
    margin-right:.25rem;
}

/*
LOW STOCK ALERT
 */
.dzm-con-lsa-wrapper{
    font-size: .85rem;
}
.dzm-con-lsa-wrapper i {
    margin-right:.25rem;
}


/* DZM COUPON CALENDAR */

.dzm-ccal-door {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 100px;

}

.dzm-ccal-door-content {
    background-size: cover;
    background-position: center center;
}

.dzm-ccal-door-closed {
    filter:grayscale(100%);
    pointer-events: none;
    opacity: .9;
}

.dzm-ccal-door-open {
    box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.63) inset;
    perspective: 1200px;
}



.dzm-ccal-door-content .h4, .dzm-ccal-door-content .h1 {
    color:currentColor !important;
    font-weight: bold;
}


.dzm-ccal-door-open-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    z-index: 1;
}

.dzm-ccal-door-open-cover.dzm-ccal-door-animation-1:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(58, 53, 53);
    z-index: -1;
    transform: translateZ(-0.01rem);
    border-radius: inherit;
}



.dzm-ccal-door-animation-1 {
    transform-style: preserve-3d;
    transform-origin: left;
    pointer-events: none;
    transform:rotateY(0deg);
    transition: all .4s ease;
}

.dzm-ccal-door:hover .dzm-ccal-door-animation-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    transform-origin: left;
    transform:rotateY(-130deg);
    transition: all .6s cubic-bezier(1,.85,.27,1.15);
    transform-style: preserve-3d;
}

.dzm-ccal-door-animation-2 {
    opacity: 1;
    transition: all .4s ease;

}

.dzm-ccal-door:hover .dzm-ccal-door-animation-2 {
    opacity: 0;
    transition: all .4s ease;
    pointer-events: none;
}

.dzm-ccal-door:hover .dzm-ccal-door-animation-2 .dzm-ccal-door-open-cover {
    pointer-events: none;
}

.dzm-ccal-door-animation-3 {
    transform: translateY(0);
    transition: all .4s ease;
    opacity: 1;
}

.dzm-ccal-door:hover .dzm-ccal-door-animation-3 {
    transform: translateY(-100%);
    transition: all .4s ease;
    opacity: 0;
}

.dzm-ccal-door-tag {
    position: absolute;
    top: 30px;
    right: -35px;
    transform: rotate(45deg);
    z-index: 9;
    background-color: red;
    width: 150px;
    text-align: center;
}

.dzm-ccal-door-tag-closed {

    background-color:var(--danger);
}

.dzm-ccal-door-tag-open {
    background-color:var(--primary);
}

.dzm-ccal-door-content-open {
    position: relative;
    z-index: -1;
}

.dzm-ccal-door-additional-info-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left:0;
    z-index: 0;
    pointer-events: none;
}

.dzm-ccal-door-additional-info-trigger {
    bottom:9px;
    right:9px;
    z-index: 0;
    pointer-events: all !important;
}

.dzm-ccal-door-additional-info {
    width: 100%;
    height:100%;
    transform: scale(0);
    transform-origin: center center;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 0;
    border-radius: inherit;
    padding:12px;
    opacity: 0;
}

.dzm-ccal-door-additional-info.active {
    transform: scale(1);
    transition: transform .3s ease, opacity .3s ease;
    position: relative;
    z-index: -1;
    border-radius: inherit;
    opacity: 1;
}

.dzm-ccal-door-additional-info-trigger {
    font-size: .8rem;
    line-height: .8rem;
    text-transform: uppercase;
    padding: 5px 12px;
    background-color: #fdfdfd;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 #06060614;
}

.dzm-ccal-door-additional-info-trigger:hover {
  cursor: pointer;
}

@media screen and (max-width: 991px) {
    .dzm-ccal-door-additional-info-trigger {
        font-size: .8rem;
    }
}

.dzm-ccal-door-additional-info-trigger i {
    transform: translateY(0.03rem);
}

.dzm-ccal-door-additional-info-trigger i::before {
    margin-right:3px;
    transform: translateY(1px);
}



