/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/********** COLORS *************
var(--secondary-color) - yellow,
var(--notice-color) - green,
var(--special-color) - red
 *******************************/
/* SPINNER */
.jackpot-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: jackpot-spin 1s linear infinite;
}

.black-spinner {
    border: 2px solid #000000;
    border-top: 2px solid transparent;
}

@keyframes jackpot-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* NOV STYLING */
.shopping-cart {
    width: 20px;
    height: 20px;
}

.outer-div {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}



.inner-div {
    flex: 0 0 auto;
    align-self: flex-start;
    text-align: center;
    font-size: 1.4rem;
    width: 100%;
}

.inline-block {
    flex: 1;
    display: flex;
    justify-content: center;
}


.upper-text {
    max-width: 100%;
}

#jackpot-banner {
    display: flex;
    height: 200px;
}

.first-div {
    flex: 0 0 50%;
    background-color: #000;
    text-align: center;
    padding: 20px;
}

.second-div {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.first-line, .second-line {
    white-space: normal;
    overflow-wrap: break-word;
    text-align: left;
}

.first-line {
    font-size: 1.8em;
    color: white;
    font-weight: bold;
}

.second-line {
    font-size: 1.4em;
    color: white;
}

@media only screen and (max-width: 1024px) {
    .first-line {
        font-size: 1.4em;
    }

    .second-line {
        font-size: 1em;
    }

}

@media only screen and (max-width: 768px) {
    .first-line {
        font-size: 1.4em;
    }

    .second-line {
        font-size: 1em;
        margin-bottom: 0px;
    }

    .inner-div {
        align-self: center;
        font-size: 14px;
    }

    #jackpot-banner {
        display: inline-block;
    }

    .second-div {
        max-height: 100px;
    }

    body.special-offer .actions .noBorderMobile {
        border: none !important;
    }

    .offer-item a img {
        margin-top: 5px;
    }

    .outer-div {
        flex-direction: column;
    }

}

@media only screen and (max-width: 480px) {
    .first-line {
        font-size: 1em;
    }

    .second-line {
        font-size: 0.8em;
    }
}


.second-div img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ti-widget-container {
    background-color: #f7f7f6;
}

.reviews {
    background-color: #f7f7f6;
}

.special-offer-content {
    padding: 30px 15%;
}

@media only screen and (max-width: 768px) {
    .special-offer-content {
        padding: 20px 5px;
    }

    .product-name-jackpot {
        font-size: 13px;
        line-height: 1.3em;
        max-height: 2.6em;
    }

    .second-div img {
        max-height: 100px;
    }
}

.product-name-jackpot {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.2em;
    max-height: 2.4em;
    word-break: break-all;
    font-family: inter;
    font-weight: 500;
}



body.single-product.special-offer {
    padding-bottom: 0;
}

body.special-offer .headerKL .inside-header {
    padding: 5px;
    display: flex;
}

body.special-offer .headerKL .inside-header .col-full span#dostava {
    display: none;
}

body.special-offer .headerKL .inside-header .jackpot-header-cart {
    text-align: right;
}

body.special-offer .headerKL .inside-header .jackpot-header-cart #posAb {
    position: absolute;
    right: 50px;
    top: 50%;
    margin-top: -17.5px;
}

body.special-offer .headerKL .inside-header .jackpot-header-cart #posAb a#cart {
    position: relative;
    display: block;
}

body.special-offer .headerKL .inside-header .jackpot-header-cart #posAb a#cart img {
    max-width: 43px;
    width: 100%;
    height: auto;
    display: block;
}

body.special-offer .headerKL .inside-header .jackpot-header-cart #posAb span#cartNum {
    width: 25px;
    height: 25px;
    position: absolute;
    font-size: 15px;
    display: block;
    color: #fff;
    top: 5px;
    left: 35px;
    text-align: center;
    background: #fdc22a;
}


#jackpot-timer strong.time {
    display: inline-block;
    font-weight: normal;
    animation: blinker 1.5s linear infinite;
}

#jackpot-timer .minutes, #jackpot-timer .seconds {
    background-color: #E6E6E6;
    padding: 5px;
    border-radius: 3px;
    font-weight: bold;
}

#jackpot-timer .colon {
    font-weight: bold;
}


.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}

.columns .columnItem {
    width: 20%;
    padding-left: 30px;
    margin: 15px 0;
    float: left;
}

.columns .columnItem .column-1_4 {
    padding: 15px;
    height: 100%;
    cursor: pointer;
}

.columns .columnItem .column-1_4 .prices {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.columns .columnItem .column-1_4 .prices span.oldPrice {
    font-size: 15px;
    line-height: 25px;
    text-decoration: line-through;
    color: grey;
    position: relative;
    margin-left: 5px;
    text-decoration-color: grey;
}

.columns .columnItem .column-1_4 .prices span.newPrice {
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    color: var(--special-color);
    margin-left: 10px;
}


.columns .columnItem .column-1_4 .buttons {
    display: flex;
    text-align: center;
    width: 100%;
}

.columns .columnItem .column-1_4 .buttons.added {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
}

.columns .columnItem .column-1_4 .buttons a {
    max-width: 100%;
    width: 100%;
    height: auto;
    line-height: 30px;
    display: block;
    padding: 8px;
    text-align: center;
}

.columns .columnItem .column-1_4 .buttons span#added {
    width: 75%;
    height: auto;
    background: #4dd039;
    text-align: center;
    line-height: 46px;
    color: #fff;
    margin-top: 5px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 40px;
}

.columns .columnItem .column-1_4 .buttons a.removeFromOrder {
    width: 20%;
    height: auto;
    margin: 5px 0 0;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    max-height: 40px;
}

@media only screen and (min-width:769px) {
    .columns .columnItem .column-1_4 .buttons.added {
        margin-top: 6px !important;
    }
}

.columns .columnItem .column-1_4 a.addToOrder {
    display: flex;
    align-items: center;
    /* Poravnava elementov v sredino navpično */
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    color: #fefefe;
    border: 1px solid #4dd039;
    background-color: #4dd039;
    border-radius: 8px;
    text-align: center;
    padding: 10px 0px;
    margin-top: 12px;
    height: 40px;
}

.columns .columnItem .column-1_4 .moreInfo {
    border-radius: 8px;
    background: rgb(240, 240, 240);
    margin-top: 4px;
    padding: 10px 0;
    text-align: center;
}

.columns .columnItem .column-1_4 .moreInfo a {
    color: gray !important;
}

.icon-container {
    margin-right: 10px;
    /* Dodajte želeni razmik med ikono in besedilom */
}

.columns .columnItem .column-1_4 a.productDetails {
    background: #dddddd;
    color: #222;
}

.columns .columnItem .column-1_4 a.productDetails:hover {
    background: #cccccc;
    color: #222;
}

.columns .columnItem .column-1_4 a.removeFromOrder {
    background: var(--error-color);
    color: #fff;
    font-size: 30px;
}

.offer-item a img {
    max-height: 200px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

body.special-offer .continue-shopping {
    max-width: 420px;
    width: 100%;
    color: #ffffff;
    background-color: var(--special-color);
    border: 1px solid var(--special-color);
    margin: 0 auto 10px;
    outline: none;
    padding: 20px;
    font-size: 19px;
    margin-top: 10px;
}

body.special-offer .storefront-sticky-add-to-cart__content .buttons .add_to_order {
    width: 100%;
    height: 50px;
    line-height: 48px;
    font-weight: normal;
    text-align: center;
    display: block;
    font-size: 21.5px;
    background-color: #fdc22a;
    padding: 0 30px;
    color: var(--primary-color-light);
}

body.special-offer .storefront-sticky-add-to-cart__content .buttons .add_to_order:hover {
    background-color: #58bea4;
    color: #fff;
}

body.special-offer .storefront-sticky-add-to-cart__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

body.special-offer .storefront-sticky-add-to-cart__content-product-info {
    flex: 1;
}

body.special-offer .storefront-sticky-add-to-cart__content .buttons {
    flex: 1;
    max-width: 250px;
    position: relative;
    background: #58bea4;
}

body.special-offer .storefront-sticky-add-to-cart__content .buttons span.added-to-order {
    width: calc(100% - 40px);
    height: 46px;
    display: block;
    background: #58bea4;
    text-align: center;
    line-height: 42px;
    color: #fff;
    margin-top: 5px;
}

body.special-offer .storefront-sticky-add-to-cart__content .buttons a.remove_from_order {
    width: 40px;
    line-height: 46px;
    background: var(--error-color);
    color: #fff;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}

body.special-offer .special-offer-container .actions {
    margin: 10px auto 20px auto;
    text-align: center;
}

body.special-offer .actions button, body.special-offer .special-offer-complete .completeOrder {
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

body.special-offer .special-offer-container .actions .finishSpecialOffer,
body.special-offer .actions .cancelSpecialOffer {
    display: inline-block;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    margin: 0 auto 15px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

body.special-offer .actions {
    display: block;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    margin: 0 auto 15px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


body.special-offer .special-offer-container .actions .finishSpecialOffer,
body.special-offer .actions .cancelSpecialOffer {
    border-radius: 5px;
}

body.special-offer .special-offer-container .actions .finishSpecialOffer {
    background: #4dd039;
    color: #ffffff;
    font-weight: 600;
}

body.special-offer .actions .cancelSpecialOffer {
    background: #ffffff;
    color: gray;
    font-weight: 400;
}

body.special-offer .special-offer-container .actions .finishSpecialOffer:hover {
    background: #26BE0F;
}

body.special-offer .actions .cancelSpecialOffer:hover {
    background: #f1f1f1;
}






body.special-offer .special-offer-complete .completeOrder {
    background: #fdc22a;
    color: #000;
    padding: 10px 0;
}

body.special-offer .special-offer-complete h2 {
    text-align: center;
}

.special-offer .back-to-special-offer {
    background: var(--primary-color-light) url('images/arrowBack.svg') no-repeat 11px 14px;
    background-size: auto 17px;
    padding: 10px 20px 10px 30px;
    color: #fff;
    display: inline-block;
    margin: 20px;
    margin-left: 0;
    outline: none;
}

.special-offer .back-to-special-offer:hover {
    opacity: 0.8;
}

.site-content#content {
    margin: 0;
}

.single-product .buttons .button.alt {
    width: 100%;
    height: auto;
    font-weight: 400;
    display: block;
    outline: none;
    text-align: center;
    background: #4dd039;
    color: #ffffff;
    font-size: 26px;
    line-height: 30px;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 22px 10px;
}

.single-product .buttons .button.alt:hover {
    background: #3fb82c;
    color: #ffffff;
}

.single-product .buttons #added {
    width: 75%;
    font-size: 19px;
    height: auto;
    padding: 5px 15px;
    background: var(--notice-color);
    text-align: center;
    line-height: 46px;
    color: #fff;
    margin-top: 5px;
}

.single-product .buttons .remove_from_order {
    width: 35px;
    height: 36px;
    line-height: 35px;
    position: relative;
    top: 4px;
    padding: 0 8px;
    display: inline-block;
    background: var(--error-color);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

#priceWrapper #addToCartKL .single_add_to_cart_button.button {
    position: relative;
    padding-left: 76px !important;
    color: var(--primary-color-light);
    font-size: 21px !important;
}

#priceWrapper #addToCartKL .single_add_to_cart_button.button:hover {
    color: #fff;
}

.special-offer #addToCartKL .add_to_order span.cartIcon {
    width: 76px;
    position: absolute;
    display: block;
    height: 100%;
    background: url(images/kosarica.svg) no-repeat center left;
    left: 0;
}

.special-offer-complete {
    padding: 50px 0;
}

body.special-offer .special-offer-complete table tr td {
    padding: 5px 10px;
    margin: 0;
    background: none;
    border: none;
}

.page-template-special-offer {
    padding-bottom: 70px;
}

/* table tbody tr:nth-child(2n) td {background-color: #f2f2f2 !important;}
 */
body.special-offer .special-offer-complete table tr td.price {
    font-size: 20px;
}

body.special-offer .special-offer-complete table tr td.remove span {
    font-size: 24px;
    cursor: pointer;
    border: 1px solid var(--error-color);
    width: 20px;
    height: 20px;
    display: block;
    line-height: 16px;
    text-align: center;
    background: var(--error-color);
    color: #fff;
}

/** Order Details **/

#order-data .woocommerce-order-details {
    width: 100%;
    float: none;
    padding: 0;
}


.woocommerce-order #order-data {
    float: none;
    clear: both;
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


.woocommerce-order .woocommerce-order-slide-container, .woocommerce-order .woocommerce-instructions-slide-container {
    height: 50px;
    margin: 0;
    text-align: left;
    background: #d1d2d4;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocommerce-order .woocommerce-order-slide-container .arrow {
    background-image: url(images/arrowUp.svg);
    background-size: auto 10px;
    background-repeat: no-repeat;
    background-position: center;
    height: 14px;
    width: 24px;
    margin-right: 10px;
    transition-duration: 0.3s;
    transition-property: transform;
}

.woocommerce-order .woocommerce-order-slide-container.open .arrow {
    transform: rotate(180deg);
}

.woocommerce-order .woocommerce-order-slide-title, .woocommerce-order .woocommerce-order-instructions-slide-title {
    line-height: 35px;
    font-size: 28px;
    text-align: left;
    padding-left: 25px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.woocommerce-order .woocommerce-instructions-slide-container {
    margin-top: 10px;
    background: var(--secondary-color);
}

.woocommerce-order .woocommerce-instructions-slide-container h2 {
    color: #000;
}

.woocommerce-order .instructions-body {
    padding: 10px 25px;
    background: #f2f2f2;
}

.woocommerce-thankyou-order-received {
    text-align: center;
    margin: 30px 0;
    width: 100%;
    padding: 15px;
    background: var(--notice-color);
    border-radius: 5px;
}


table.woocommerce-table.order_details {
    margin-bottom: 0;
}

table.woocommerce-table.order_details thead tr th,
table.woocommerce-table.order_details tbody tr td,
.woocommerce-order-details table.woocommerce-table tfoot tr th,
.woocommerce-order-details table.woocommerce-table tfoot tr td {
    font-size: 15px;
}

.woocommerce-order #order-data ul li strong {
    float: none;
    clear: both;
    padding-left: 20px;
    font-weight: 400;
    font-size: 15px !important;
}


#wheel-container {
    margin: 20px auto;
    width: 100%;
    max-width: 370px;
    position: relative;
}

#jackpot {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

#jackpot .spin-notice {
    margin-top: 10px;
    margin-bottom: 20px;
}

#jackpot .actions {
    text-align: center;
    margin-top: 7px;
}

#jackpot .one-spin-notice {
    text-align: center;
    font-weight: 400;
}

#jackpot-start {
    max-width: 500px;
    width: 100%;
    color: #ffffff;
    background: rgb(244, 33, 38);
    background: linear-gradient(180deg, rgba(244, 33, 38, 1) 37%, rgba(252, 81, 38, 1) 100%);
    margin: 0 auto 1em;
    outline: none;
    padding: 15px;
    font-size: 19px;
    border-radius: 1em;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

#jackpot-start:hover {
    background: rgb(244, 33, 38);
    background: linear-gradient(180deg, rgba(244, 33, 38, 1) 37%, rgba(252, 81, 38, 1) 100%);
    transform: scale(1.05);
}


#cancelSpecialOfferStart {
    max-width: 500px;
    width: 50%;
    margin: 0 auto 10px;
    outline: none;
    padding: 10px;
    font-size: 12px;
    border-radius: 1em;
    border: 1px solid lightgray;
    color: gray;

}



#jackpot #wheel-container .marker {
    position: absolute;
    width: 36px;
    left: calc(50% - 18px);
    top: -11px;
    z-index: 2;
}

#newOrderHeader .steps.active.three span.numRadius {
    background: var(--notice-color) url(/wp-content/themes/maneks-theme/images/check.svg) no-repeat center;
    background-size: 25px;
    border: 1px solid var(--notice-color);
    text-indent: -123456px;
}

#newOrderHeader .steps.active.three span.underText {
    color: var(--notice-color);
}

.woocommerce-thankyou-order-received span#checkImg {
    width: auto;
    color: #fff;
    margin: 0 auto;
    background: var(--notice-color);
    padding: 0;
    font-size: 19px;
    font-weight: 400;
}

.woocommerce-thankyou-order-received span#checkImg span.thankYouTxtImg {
    background: url(/wp-content/themes/maneks-theme/images/check.svg) no-repeat left 5px center;
    background-size: 30px;
    padding: 10px;
    color: #fff;
}

.woocommerce-thankyou-order-received p {
    border-radius: 5px;
}

.blur {
    animation: blur 2.5s;
}

@keyframes blur {
    0% {
        filter: blur(1.5px);
    }

    80% {
        filter: blur(1.5px);
    }

    100% {
        filter: blur(0px);
    }
}

#jackpot #wheel-container .wheel {
    width: 100%;
    height: 100%;
    transform: rotate(170deg);
}

.woocommerce-order-received .swal2-popup {
    width: 100%;
    max-width: 650px;
    height: auto;
    padding: 0 !important;
}

.woocommerce-order-received .swal2-content {
    padding: 0 !important;
}

.woocommerce-order-received .swal2-actions {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-order-received .swal2-confirm {
    position: absolute !important;
    bottom: 50px !important;
    width: 250px !important;
}

.woocommerce-order {
    margin-bottom: 10px;
}

body.page-template-special-offer .special-offer-items:before,
body.page-template-special-offer .special-offer-items:after {
    content: normal;
}

body.special-offer li.special-offer-prices {
    clear: both;
    float: none;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

body.special-offer li.special-offer-prices div {
    float: left;
    margin-right: 10px;
}

body.special-offer li div.save-price {
    float: right;
    color: #58bea4;
    font-size: 24px;
}

body.special-offer li.special-offer-prices .special-prices-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

body.special-offer li.special-offer-prices div.regular-price {
    font-size: 1.2em;
    color: #000;
    text-decoration: line-through !important;
}

body.special-offer li.special-offer-prices div.special-offer-price {
    font-size: 1.5em;
    color: #ed1d24;
}

body.special-offer li .remove_from_order {
    cursor: pointer;
}

body.special-offer li .buttons.added {
    background: #58bea4;
    position: relative;
}

body.special-offer li span#added {
    width: 75%;
    height: 46px;
    background: #58bea4;
    text-align: center;
    line-height: 46px;
    color: #fff;
    margin-top: 5px;
}

body.special-offer li a.remove_from_order {
    width: 40px;
    line-height: 40px;
    background: var(--error-color);
    color: #fff;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

body.special-offer #masthead #aroundKL ul#help {
    display: none;
}

body.special-offer #custom-prices {
    display: none;
}

.woocommerce #jackpot-popup-container {
    display: none;
}

.swal2-container #jackpot-popup-container {
    display: block;
    background: #235d8b url('images/jackpot-popup.jpg') no-repeat center bottom -60px;
    background-size: auto 1000px;
    padding: 10% 50px 45% 50px;
    height: 790px;
}

.swal2-container #jackpot-popup-container h1 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    font-size: 48px;
}

.swal2-container #jackpot-popup-container h1.price {
    font-size: 48px;
}

.swal2-container #jackpot-popup-container h3.discount {
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 20px;
}

/** LOADER **/
.loading-container {
    display: none;
}

.loading-container .background {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00000090;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    color: #ffffff;
    font-size: 20px;
    margin: 100px auto;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}


@-webkit-keyframes load4 {

    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

@keyframes load4 {

    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

@media only screen and (max-width: 1450px) {
    .columns .columnItem .column-1_4 .buttons {
        flex-wrap: wrap;
    }

    .columns .columnItem .column-1_4 .buttons a {
        margin: 5px 0;
    }
}

@media only screen and (max-width: 1150px) {
    .columns {
        margin-left: -25px;
    }

    .columns .columnItem {
        width: 33.33%;
        padding-left: 25px;
    }
}

@media only screen and (max-width: 850px) {
    body.special-offer li div.save-price {
        max-width: 180px;
    }
}

@media only screen and (max-width: 800px) {
    .woocommerce-thankyou-order-received {
        margin: 10px 0;
    }

    .woocommerce-thankyou-order-received span#checkImg {
        width: auto;
        padding: 0;
        margin-top: 0;
        font-size: 15px;
        line-height: 23px;
    }

    body.special-offer .special-offer-container .actions {
        margin-bottom: 0;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: #275384;
        padding: 1em;
        display: flex;
        flex-direction: column;
        flex-direction: row;
        justify-content: space-between;

    }

    body.special-offer .special-offer-container .actions .finishSpecialOffer,
    body.special-offer .actions .cancelSpecialOffer {
        width: 48%;
        font-size: 14px;
        padding: 5px;
        margin: 0;
    }

    @media only screen and (min-width: 801px) {
        body.special-offer .special-offer-container .actions {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        body.special-offer .special-offer-container .actions .finishSpecialOffer,
        body.special-offer .actions .cancelSpecialOffer {
            width: 100%;
            max-width: 500px;
            margin: 10px auto;
        }
    }



    .responsive {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
    }

    .responsive button {
        flex: 1;
        margin: 5px 0;
    }



    .columns {
        margin-left: -5px;
    }

    .columns .columnItem {
        width: 50%;
        padding-left: 5px;
        margin: 2.5px 0;
    }

    body.special-offer .special-offer-container .actions {
        margin-bottom: 0;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: #275384;
        padding: 1em;
    }

    body.special-offer .special-offer-container .actions .finishSpecialOffer {
        font-size: 15px;
    }

    .responsive {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: auto;
    }

    .responsive button {
        flex: 0 0 48%;
        margin: 0;
    }



    body.special-offer li div.save-price {
        font-size: 22px;
    }

    .swal2-container #jackpot-popup-container {
        padding-bottom: 50%;
    }
}

@media only screen and (max-width: 768px) {
    .single-product .buttons .button.alt {
        margin: 0;
        margin-bottom: 10px;
        font-size: 23px;
    }

    /*.woocommerce-order.order-jackpot-visible .woocommerce-order-slide-container {display: none;}*/
}


@media only screen and (max-width: 650px) {
    .woocommerce-thankyou-order-received {
        text-align: center;
        margin: 15px 0;
        margin-bottom: 10px;
    }

    .woocommerce-order .woocommerce-order-slide-container.open, .woocommerce-order .woocommerce-instructions-slide-container.open {
        font-size: 20px;
        height: 35px;
        padding-left: 0
    }

    .woocommerce-order-details h2.woocommerce-order-details__title,
    .woocommerce-order .woocommerce-order-slide-title, .woocommerce-order .woocommerce-order-instructions-slide-title {
        font-size: 20px;
        padding-left: 25px;
    }

    .woocommerce-order .instructions-body {
        padding: 5px 10px;
        font-size: 15px;
    }

    .woocommerce-order .instructions-body ul {
        margin-left: 20px;
        margin-bottom: 0;
    }

    .woocommerce-order .woocommerce-order-slide-container, .woocommerce-order .woocommerce-instructions-slide-container {
        height: 35px;
    }

    .swal2-container #jackpot-popup-container {
        padding-bottom: 55%;
    }

    .swal2-container #jackpot-popup-container h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 600px) {

    /*     #jackpot-banner h2 {font-size: 35px; line-height: 40px;}
    #jackpot-banner span {font-size: 18px; line-height: 20px; display: block;}
 */
    #jackpot #wheel-container .marker {
        width: 40px;
        left: calc(50% - 20px);
        top: -20px;
    }

    #wheel-container {
        width: 85%;
        margin-top: 30px;
    }

    .swal2-container #jackpot-popup-container h1 {
        font-size: 35px;
    }

    #jackpot-start {
        width: 100%;
    }

    .swal2-container #jackpot-popup-container {
        padding: 8% 25px 82% 25px;
        height: 100vh;
    }

    .swal2-container {
        height: 100vh !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .offer-item a img {
        max-height: 130px;
        width: auto;
    }
}

@media only screen and (max-width: 550px) {
    .swal2-container #jackpot-popup-container h1 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 500px) {
    .columns .columnItem .column-1_4 {
        padding: 5px;
    }

    .columns .columnItem .column-1_4 .prices {
        margin: 5px 0;
    }

    .columns .columnItem .column-1_4 .prices span.newPrice {
        font-size: 19px;
        line-height: 25px;
    }

    .columns .columnItem .column-1_4 a.addToOrder,
    .columns .columnItem .column-1_4 a.productDetails {
        font-size: 13px;
        line-height: 20px;
    }

    .columns .columnItem .column-1_4 .prices span.oldPrice {
        top: 0;
    }


    .swal2-container #jackpot-popup-container h1 {
        font-size: 32px;
    }

    .woocommerce-thankyou-order-received span#checkImg {
        line-height: 17px;
    }

    .woocommerce-order-details h2.woocommerce-order-details__title,
    .woocommerce-order .woocommerce-order-slide-title,
    .woocommerce-order .woocommerce-order-instructions-slide-title {
        font-size: 15px;
    }
}

@media only screen and (max-width: 450px) {
    body.special-offer li div.save-price {
        max-width: 150px;
        font-size: 21px;
    }

    .swal2-container #jackpot-popup-container h1 {
        font-size: 25px;
    }

    #jackpot-timer {
        padding: 1px 0;
        font-size: 12px;
    }

    .woocommerce-thankyou-order-received span#checkImg {
        margin-top: 10px;
    }

    .woocommerce-thankyou-order-received span#checkImg {
        margin: 0;
    }
}

@media only screen and (max-width: 415px) {

    /**** START THANK YOU PAGE*****/
    .cart-collaterals .cross-sells .product .mobileHidden .regular span, .cart-collaterals .cross-sells .product .mobileHidden .sale {
        font-size: 17px;
    }

    .woocommerce-order .woocommerce-order-slide-container, .woocommerce-order .woocommerce-instructions-slide-container {
        height: auto;
        min-height: 35px;
        margin: 0;
        padding: 0;
    }

    .woocommerce-order-details h2.woocommerce-order-details__title, .woocommerce-order .woocommerce-order-slide-title, .woocommerce-order .woocommerce-order-instructions-slide-title {
        margin: 0;
        padding: 0;
        line-height: 15px;
        display: block;
        padding: 10px;
    }

    ul.order_details li {
        padding: 10px;
    }

    table.woocommerce-table.order_details thead tr th,
    table.woocommerce-table.order_details tbody tr td,
    .woocommerce-order-details table.woocommerce-table tfoot tr th,
    .woocommerce-order-details table.woocommerce-table tfoot tr td {
        padding: 10px;
    }

    /**** END THANK YOU PAGE*****/
}

@media only screen and (max-width: 400px) {

    /*     #jackpot-banner h2 {font-size: 30px;}
    #jackpot-banner p {font-size: 30px; line-height: 35px;}
 */
    body.special-offer .special-offer-complete h2 {
        font-size: 30px;
        line-height: 35px;
    }

    #jackpot #wheel-container .marker {
        width: 36px;
        left: calc(50% - 18px);
        top: -20px;
    }


    body.special-offer li.special-offer-prices div.special-offer-price {
        font-size: 1.2em;
    }

    body.special-offer li.special-offer-prices div.regular-price {
        font-size: 1em;
    }

    body.special-offer li.special-offer-prices div.save-price {
        font-size: 20px;
    }

    body.special-offer li.special-offer-prices .special-prices-container, body.special-offer li.special-offer-prices .save-price {
        margin-right: 0;
    }
}


@media only screen and (max-width: 350px) {
    .columns {
        margin-left: 0;
    }

    .columns .columnItem {
        width: 100%;
        padding-left: 0;
    }

    body.special-offer li.special-offer-prices div.special-offer-price {
        font-size: 1.1em;
    }

    body.special-offer li.special-offer-prices div.regular-price {
        font-size: 0.9em;
    }

    body.special-offer li.special-offer-prices div.save-price {
        font-size: 18px;
    }

    .swal2-container #jackpot-popup-container h1 {
        font-size: 20px;
    }

    .swal2-container #jackpot-popup-container {
        background-size: auto 800px;
    }

    .single-product .buttons .button.alt {
        font-size: 20px;
        line-height: 25px;
    }
}


@media only screen and (max-width: 320px) {

    body.special-offer li.special-offer-prices {
        flex-direction: column;
    }

    body.special-offer li.special-offer-prices .special-prices-container {
        margin-bottom: 5px;
    }

}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 0 10px;
}

.quantity-selector label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    white-space: nowrap;
}

.quantity-selector .quantity-select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

.quantity-selector .quantity-select:hover {
    border-color: #999;
}

.quantity-selector .quantity-select:focus {
    outline: none;
    border-color: var(--primary-color, #2d3256);
    box-shadow: 0 0 0 2px rgba(45, 50, 86, 0.1);
}

.buttons.added + .quantity-selector .quantity-select {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .quantity-selector {
        padding: 0 5px;
        gap: 8px;
    }
    
    .quantity-selector label {
        font-size: 13px;
    }
    
    .quantity-selector .quantity-select {
        font-size: 13px;
        padding: 6px 10px;
        padding-right: 28px;
    }
}

.offer-item .column-1_4 {
    display: flex;
    flex-direction: column;
}

.offer-item .buttons {
    margin-top: 10px;
}

.offer-item .moreInfo {
    margin-top: 8px;
}