@import url(http://fonts.cdnfonts.com/css/sf-ui-display);
@import url(http://fonts.cdnfonts.com/css/avenir);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap);

/* Convert to pure css in order to be able to minify */
:root {
    --jump-primary-color: #000;
    --jump-background-color: #FFF;
    --jump-card-background-color: #FFF;
    --jump-item-button-color: #504851;
    --jump-item-button-text-color: #FFF;
    --jump-font-family-default: 'Open Sans', 'sf ui display', sans-serif;
    --jump-font-family-shop-name: 'Open Sans', 'sf ui display', sans-serif;
    --jump-font-weight-shop-name: 700;
    --jump-font-size-shop-name: 22px;
    --jump-font-height-shop-name: 26px;
    --jump-font-family-description: 'Open Sans', 'Avenir', sans-serif;
    --jump-font-family-products: 'Roboto', sans-serif;
    --jump-jump-font-family-shop-subtitle: 'Open Sans', 'sf ui display', sans-serif;
    --jump-item-button-color: #504851;
    --jump-item-button-text-color: #FFF;
    --jump-header-name-text-color: #383838;
    --jump-header-description-text-color: #181818;
    --jump-header-title-text-color: #9d9d9d;
    --jump-header-slider-overlay-color: #8d8d8d;
    --jump-header-slider-btn-color: #ffffff8f;
    --jump-header-slider-btn-hover-color: #000000;
    --jump-header-icon-yt-color: #e5e5e5;
    --jump-content-start-icon-color: #ffd23f;
    --jump-content-card-text-color: #393939;
    --jump-content-card-price-color: #4d4d4d;
    --jump-footer-text-color: #999999;
    --jump-toast-bg-color: #424242;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    width: 100%;
    letter-spacing: .06rem;
    margin: 0;
}

.cntJumpAll {
    width: 100%;
    background-color: var(--jump-background-color);

    .cntJumpHeader {
        max-width: 1135px;
        margin: 0 auto;

        &.widebanner {
            max-width: none;

            .cntPresentation {
                max-width: 1135px;
                margin: 0 auto;
                width: 100%
            }
        }

        .cntTop {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;

            .itmBanner {
                text-align: center;

                img {
                    width: 100%;
                    max-height: 200px;
                    border-radius: 0 0 5px 5px !important;
                    -o-object-fit: cover;
                    object-fit: cover;
                    -webkit-transition: none;
                    -o-transition: none;
                    transition: none;
                    background-color: transparent;
                    opacity: 1
                }
            }

            .cntPresentation .cntProfile {
                -webkit-box-flex: 1;
                -ms-flex: 1;
                flex: 1;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flexbox;
                display: flex;
                display: -webkit-flex;
                padding-top: 10px;
                max-width: 100%;

                &.centerAligned {
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;

                    .itmDescription {
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        padding-left: 0;

                        .txtContext {
                            max-width: 500px;
                            text-align: center
                        }
                    }

                    .itmImage {
                        img {
                            margin-top: -40%;
                            margin-left: 0
                        }
                    }
                }

                &.leftAligned {
                    -webkit-box-align: center;
                    -ms-flex-align: start;
                    align-items: flex-start;
                    -webkit-box-orient: horizontal;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: row;
                    flex-direction: row
                }

                .itmImage {
                    width: 16%;

                    img {
                        width: 180px;
                        min-width: 180px;
                        max-width: 180px;
                        height: 180px;
                        min-height: 180px;
                        max-height: 180px;
                        border: 5px solid var(--jump-background-color);
                        border-radius: 50% !important;
                        background-color: var(--jump-background-color);
                        margin-top: -50%;
                        margin-left: 10px;
                        -webkit-transition: none;
                        -o-transition: none;
                        transition: none;
                        background-color: transparent;
                        opacity: 1
                    }
                }

                .itmDescription {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    max-width: 81%;
                    padding-left: 45px;

                    .cntShopName {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flexbox;
                        display: flex;
                        -webkit-box-align: baseline;
                        -ms-flex-align: baseline;
                        align-items: baseline;
                        gap: 20px;

                        .txtShopName {
                            font-family: var(--jump-font-family-default);
                            font-weight: var(--jump-font-weight-shop-name);
                            font-size: var(--jump-font-size-shop-name);
                            color: var(--jump-header-name-text-color);
                        }

                        .cntShareLink {
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-orient: horizontal;
                            -webkit-box-direction: normal;
                            -ms-flex-direction: row;
                            flex-direction: row;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            justify-content: center;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            align-items: center;
                            cursor: pointer;
                            width: auto;

                            i {
                                -webkit-transition: color .5s linear;
                                -o-transition: color .5s linear;
                                transition: color .5s linear;
                                color: var(--jump-primary-color) !important;
                                font-size: 18px;
                            }
                        }
                    }

                    .cntSocialMedia {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        gap: 10px;
                        padding: 10px 0;

                        .itmMedia {
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            justify-content: center;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            align-items: center;
                            width: 30px;
                            height: 30px;
                            border: 1px solid #E9ECF2;
                            border-radius: 5px;
                            text-decoration: none;

                            i {
                                color: var(--jump-footer-text-color) !important;
                            }
                        }
                    }

                    .txtContext {
                        font-size: 18px;
                        line-height: 20px;
                        color: var(--jump-header-description-text-color);
                        font-family: var(--jump-font-family-products);
                        display: block;
                        -webkit-box-pack: start;
                        -ms-flex-pack: start;
                        justify-content: flex-start;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        font-weight: 500;
                    }

                    .cntCouponWarning {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        margin: 10px 0;
                        background: #929292;
                        padding: 10px 12px;
                        max-width: -webkit-fit-content;
                        max-width: -moz-fit-content;
                        max-width: fit-content;
                        border-radius: 5px;
                        gap: 10px;

                        span {
                            color: #fff;
                            font-family: var(--jump-font-family-products);
                            font-style: italic;
                            font-size: 12px;
                            font-weight: 500;
                            line-height: 14px;
                        }

                        i {
                            color: #5DD39E;
                        }
                    }
                }
            }
        }
    }

    .cntJumpSocial {
        max-width: 1135px;
        margin: 0 auto;

        .cntSlideShow {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            padding: 30px 0;
            width: 100%;
            position: relative;

            .swiper {
                width: 99%;
            }

            .swiper-slide {
                max-width: 210px;
            }

            .swiper-button-next {
                right: -5px;
            }

            .swiper-button-prev {
                left: -5px;
            }

            .swiper-button-next,
            .swiper-button-prev {
                background-color: #000000A6;
                border-radius: 5px;
                width: 40px;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 16px;
                color: #fff;
                font-weight: 500;
            }

            .cntSlide {
                max-width: 210px;
                height: 260px;
                cursor: pointer;

                .itmVideoOverlay {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    max-width: 210px;
                    max-height: 260px;
                    top: 0;
                    -webkit-transition: .6s ease;
                    -o-transition: .6s ease;
                    transition: .6s ease;
                    z-index: 10;
                    border-radius: 5px !important;
                    background: rgba(0, 0, 0, .3);
                    cursor: pointer;

                    &:hover {
                        background: rgba(0, 0, 0, .1);
                    }

                    &.backgroundInstagram {
                        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
                    }
                }

                .iconYtPlay {
                    position: absolute;
                    z-index: 25;
                    left: 10px;
                    bottom: 10px;
                    font-size: 24px;
                    color: var(--jump-header-icon-yt-color);
                    cursor: pointer;
                }

                img {
                    width: 100%;
                    height: 100%;
                    cursor: pointer;
                    position: relative;
                    border-radius: 5px !important;
                    object-fit: cover;
                }
            }
        }
    }

    .cntJumpContent {
        max-width: 1135px;
        margin: 0 auto;
        position: relative;

        .cntFavorite {
            display: flex;
            display: -webkit-box;
            display: -ms-flexbox;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 20px 0 10px;
            overflow-x: auto;

            .navbarJump {
                display: flex;
                display: -webkit-box;
                display: -ms-flexbox;
                margin: 0;
                padding: 0;
                list-style: none;

                li {
                    font-size: 18px;
                    line-height: 30px;
                    color: var(--jump-footer-text-color);
                    font-weight: 700;
                    font-family: var(--jump-font-family-products);
                    cursor: pointer;
                    margin-right: 20px;

                    &.active {
                        color: var(--jump-header-name-text-color);
                        border-bottom: 1px solid var(--jump-header-name-text-color);
                    }

                    &:hover {
                        color: var(--jump-header-name-text-color);
                    }
                }
            }
        }

        .cntProducts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 263px));
            padding: initial;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            grid-column-gap: 27px;
            grid-row-gap: 15px;
            margin: 20px 0;

            .crdBox {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                background: var(--jump-card-background-color);
                padding: 20px 15px;
                border: 1px solid #E9ECF2;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                margin-bottom: 10px;
                -webkit-transition: all ease .8s;
                -o-transition: all ease .8s;
                transition: all ease .8s;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                border-radius: 5px;
                width: 260px;
                min-width: 260px;
                max-width: 260px;
                cursor: pointer;
                min-height: 340px;

                &.hideBorders {
                    border: none;
                }

                .cntImageProduct {
                    -webkit-box-flex: 1;
                    -ms-flex: 1;
                    flex: 1;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -ms-flex-wrap: wrap;
                    flex-wrap: wrap;

                    .imgProductInternal {
                        max-width: 212px;
                        min-width: 212px;
                        max-height: 210px;
                        min-height: 210px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;

                        img {
                            display: block;
                            margin-left: auto;
                            margin-right: auto;
                            width: auto;
                            height: auto;
                            max-height: 210px !important;
                            max-width: 210px !important;
                            border-radius: 5px !important;
                            -webkit-transition: none;
                            -o-transition: none;
                            transition: none;
                            background-color: transparent;
                            opacity: 1;
                        }
                    }
                }

                .cntDescriptionProduct {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-flex: 1.1;
                    -ms-flex: 1.1;
                    flex: 1.1;
                    -webkit-box-pack: space-evenly;
                    -ms-flex-pack: space-evenly;
                    justify-content: space-evenly;
                    width: 100%;
                    margin-top: 8px;
                    gap: 4px;

                    .cntOffer .txtTitle {
                        font-size: 18px;
                        line-height: 20px;
                        list-style: none;
                        font-family: var(--jump-font-family-products);
                        color: var(--jump-content-card-text-color);
                        margin: auto;
                        min-height: 20px;
                        font-weight: 400;
                        overflow: hidden;
                        margin-bottom: 0;
                        text-align: center;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                    }

                    .itmPrice .txtValue {
                        font-family: var(--jump-font-family-products);
                        color: var(--jump-content-card-text-color);
                        font-size: 20px;
                        line-height: 23px;
                        text-align: center;
                        font-weight: 700;
                    }
                }

                .variantSelect {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    width: 100%;

                    select {
                        width: 100%;
                        font-family: var(--jump-font-family-products);
                        color: var(--jump-content-card-text-color);
                        border: 1px solid rgba(0, 0, 0, .25);
                        border-radius: 5px;
                        font-size: 16px;
                        padding: 5px 10px;
                        margin-top: 10px;
                    }
                }

                .cntBtnCart {
                    z-index: 1;
                    margin-top: 20px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    width: 100%;
                    height: 35px;
                    border-radius: 5px;
                    color: #fff;
                    background-color: #4B4545;
                    font-family: var(--jump-font-family-products);
                    font-size: 14px;
                    font-weight: 700;
                }
            }
        }
    }

    .cntJumpFooter {
        max-width: 1135px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 15px 0;

        .cntLearnMore {
            text-align: center;
            font-size: 14px;
            font-weight: 300;
            line-height: 16px;
            font-family: var(--jump-font-family-products);
            margin: 20px 0 10px;
            letter-spacing: 1px;

            a {
                color: var(--jump-primary-color);
                text-decoration: none;
                font-weight: 700;
            }
        }

        .cntJumpLogo {
            margin-bottom: 15px;

            img {
                max-width: 90px;
            }
        }
    }

    .cntJumpViewMore {
        max-width: 1135px;
        margin: 0 auto;

        .viewMore {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;

            a {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                font-size: 14px;
                font-weight: 500;
                font-family: var(--jump-font-family-products);
                color: var(--jump-header-name-text-color);
                border-radius: 5px;
                width: 160px;
                height: 36px;
                text-decoration: none;
                border: 1px solid rgba(0, 0, 0, .25);
            }
        }
    }
}

#cntJumpModalPicture {
    display: none;
    background-color: #2229;
    position: fixed;
    z-index: 99999;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    -webkit-overflow-scrolling: none;
    transition: all ease .8s;
    -webkit-transition: all ease .8s;
    -moz-transition: all ease .8s;
    -ms-transition: all ease .8s;
    -o-transition: all ease .8s;

    #jumpModalPicture {
        position: absolute;
        width: initial;

        #jumpCloseImgBtn {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            margin: 0 0 1px;
            padding-right: 5px;
            width: 100%;

            i {
                cursor: pointer;
            }

            img {
                width: 100%;
                max-width: 1000px;
                max-height: 800px;
                border-radius: 10px !important;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                -ms-border-radius: 10px;
                -o-border-radius: 10px;
                -webkit-transition: none;
                -o-transition: none;
                transition: none;
                background-color: transparent;
                opacity: 1
            }
        }
    }
}

#cntJumpModalVideo {
    display: none;
    background-color: #2229;
    position: fixed;
    z-index: 99999;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    -webkit-overflow-scrolling: none;
    transition: all ease .8s;
    -webkit-transition: all ease .8s;
    -moz-transition: all ease .8s;
    -ms-transition: all ease .8s;
    -o-transition: all ease .8s;

    #jumpModalVideo {
        width: 100%;
        margin-top: -5%;

        iframe {
            width: 100%;
            max-width: 710px;
            max-height: 400px;
            height: 400px;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
        }

        .tiktok-embed iframe {
            width: 100%;
            max-width: 710px;
            max-height: 90%;
            border: none;
        }

        .instagram-embed iframe {
            max-height: 700px;
            height: 700px;
        }
    }

    #jumpCloseBtn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0 0 1px;
        padding-right: 5px;
        max-width: 710px;
        width: 100%;

        &.instagram {
            max-width: 500px;
        }

        i {
            cursor: pointer;
        }
    }
}

#jumpCtnToast {
    visibility: hidden;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    bottom: 30px;
}

#jumpToastCopy {
    min-width: 240px;
    margin: 0 5%;
    text-align: center;
    border-radius: 30px;
    padding: 12px 20px;
    background-color: var(--jump-toast-bg-color);
    color: var(--jump-item-button-text-color);
    font-family: var(--jump-font-family-description);
    opacity: .8
}

#jumpCtnToast.show {
    visibility: visible;
    -webkit-animation: fadeIn .5s, fadeOut .5s 2.7s;
    animation: fadeIn .5s, fadeOut .5s 2.7s
}

@-webkit-keyframes fadeIn {
    from {
        bottom: 0;
        opacity: 0
    }

    to {
        bottom: 30px;
        opacity: .8
    }
}

@keyframes fadeIn {
    from {
        bottom: 0;
        opacity: 0
    }

    to {
        bottom: 30px;
        opacity: .8
    }
}

@-webkit-keyframes fadeOut {
    from {
        bottom: 30px;
        opacity: .8
    }

    to {
        bottom: 0;
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        bottom: 30px;
        opacity: .8
    }

    to {
        bottom: 0;
        opacity: 0
    }
}

.jump-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.jump-spinner div {
    -webkit-transform-origin: 40px 40px;
    -ms-transform-origin: 40px 40px;
    transform-origin: 40px 40px;
    -webkit-animation: jump-spinner 1.2s linear infinite;
    animation: jump-spinner 1.2s linear infinite;
}

.jump-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #3d3d3d;
}

.jump-spinner div:nth-child(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
    display: block !important
}

.jump-spinner div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    display: block !important
}

.jump-spinner div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -.9s;
    animation-delay: -.9s;
    display: block !important
}

.jump-spinner div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -.8s;
    animation-delay: -.8s;
    display: block !important
}

.jump-spinner div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -.7s;
    animation-delay: -.7s;
    display: block !important
}

.jump-spinner div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -.6s;
    animation-delay: -.6s;
    display: block !important
}

.jump-spinner div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -.5s;
    animation-delay: -.5s;
    display: block !important
}

.jump-spinner div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -.4s;
    animation-delay: -.4s;
    display: block !important
}

.jump-spinner div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -.3s;
    animation-delay: -.3s;
    display: block !important
}

.jump-spinner div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -.2s;
    animation-delay: -.2s;
    display: block !important
}

.jump-spinner div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -.1s;
    animation-delay: -.1s;
    display: block !important
}

.jump-spinner div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    display: block !important
}

@-webkit-keyframes jump-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes jump-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes jump-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes jump-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

#jumpLoading {
    position: absolute;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1000;
    display: none;

    .jumpSpinner {
        border: 8px solid #f3f3f3;
        border-top: 8px solid #383838;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: jump-spin 1s linear infinite;
        animation: jump-spin 1s linear infinite;
    }
}

@media screen and (max-width:1170px) {

    .cntJumpAll .cntJumpSocial,
    .cntJumpAll .cntJumpContent {
        padding: 0 10px;
    }

    .cntJumpAll .cntJumpFooter {
        padding: 15px 10px;
    }
}

@media screen and (max-width:1024px) {
    .cntJumpAll .cntJumpContent .cntProducts:has(>:last-child:nth-child(1)) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cntJumpAll .cntJumpContent .cntProducts:has(>:last-child:nth-child(2)) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cntJumpAll .cntJumpContent .cntProducts:has(>:last-child:nth-child(3)) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cntJumpAll .cntJumpContent .cntProducts:has(>:last-child:nth-child(4)) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media screen and (max-height:1000px) {
    #cntJumpModalPicture img {
        max-height: 650px
    }
}

@media screen and (max-width:900px) {
    #cntJumpModalVideo #jumpCloseBtn {
        max-width: 600px
    }

    #cntJumpModalVideo #jumpModalVideo iframe {
        max-width: 600px;
        max-height: 338px;
        height: 338px
    }

    #cntJumpModalVideo #jumpModalVideo .tiktok-embed iframe {
        max-width: 600px;
        max-height: 80vh;
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmImage {
        width: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmImage img {
        width: 100%;
        min-width: 100px;
        min-height: auto;
        height: 100%;
        max-height: 180px;
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile.centerAligned {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile.centerAligned .itmDescription {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 0
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding: 10px;
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmDescription {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-left: 0
    }
}

@media screen and (max-height:800px) {
    #cntJumpModalPicture img {
        max-height: 500px
    }
}

@media screen and (max-width:768px) {
    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmImage img {
        margin-top: -30%
    }
}

@media screen and (max-width:680px) {
    .cntJumpAll .cntJumpContent .cntProducts .crdBox {
        max-width: none;
        min-width: 300px;
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .cntJumpAll .cntJumpContent .cntProducts {
        grid-gap: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media screen and (max-width:665px) {
    #cntJumpModalPicture img {
        max-width: 300px
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmImage img {
        margin-left: 0
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmDescription {
        padding-left: 0;
        max-width: 90%
    }

    #cntJumpModalPicture #jumpModalPicture {
        top: 15% !important
    }
}

@media screen and (max-width:600px) {
    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmImage {
        width: 40%
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmImage img {
        max-width: 140px;
        max-height: 140px;
    }
}

@media screen and (max-height:600px) {
    #cntJumpModalPicture img {
        max-height: 350px
    }
}

@media screen and (max-width:500px) {
    .cntJumpAll .cntJumpContent .cntProducts:has(>:last-child:nth-child(1)) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cntJumpAll .cntJumpContent .cntProducts:has(>:last-child:nth-child(2)) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cntJumpAll .cntJumpContent .cntProducts:has(>:last-child:nth-child(3)) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cntJumpAll .cntJumpContent .cntProducts:has(>:last-child:nth-child(4)) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    #jumpLoading {
        -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
    }
}

@media screen and (max-width:465px) {
    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile.centerAligned .itmDescription {
        text-align: center
    }

    .cntJumpAll .cntJumpHeader .cntTop .cntPresentation .cntProfile .itmDescription {
        text-align: left;
    }
}