* {
    font-family: 'Poppins';
    font-weight: 400;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bodyBackgroundColor);
    color: var(--textBaseColor);
    margin: 0;
    padding: 0;
}

.strikethrough {
    position: relative;
}

.strikethrough:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;

    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

/* ALL SIZE FOR REAL ITEMSHOP CARDS */
/* 318 x 167 */
/* 318 x 263 */
/* 636 x 551 */
/* 954 x 551 */

@media only screen and (max-width : 1220px) {

    html {
        scroll-behavior: smooth;
    }

    #loading-waiting {
        position: fixed;
        width: 100%;
        top: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 30;
        pointer-events: none;
    }

    .loader {
        width: 80px;
        display: flex;
        margin: auto;
        position: absolute;
    }

    .container-boutique {
        margin: 0 auto;
        width: 100%;
    }

    .shop-container {
        width: 100%;
        display: block;
        padding: 0;
        border-radius: 10px;
        margin: 20px 0;
    }

    .container {
        width: 100%;
        display: block;
        margin: 75px auto;
    }

    .shop-header {
        position: fixed;
        z-index: 5;
        bottom: 15px;
        right: 5px;
        width: auto;
        height: 50px;
        border-radius: 15px;
        background-color: rgba(0, 0, 0, 0.70);
    }

    .shop-countdown {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .shop-countdown-title {
        font-size: 15px;
        font-family: 'Oswald';
        text-transform: uppercase;
        padding: 0 10px;
    }

    .shop-countdown-text {
        font-size: 15px;
        font-style: italic;
        font-family: 'Oswald';
        text-transform: uppercase;
        padding: 0 10px;
    }

    #shop-featured {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        width: 100%;
        flex-direction: none;
    }

    .section {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        width: 100%;
        flex-direction: none;
    }

    .sectionContainer h3 {
        margin-left: 10px;
        text-transform: uppercase;
        font-family: var(--fontFamilyItemTitle);
        font-weight: 200;
    }

    .sectionContainer {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        width: 100%;
        flex-direction: none;
    }

    .sectionContent {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: left;
        width: 100%;
        margin: auto;
    }

    .sectionSparks {
        width: 100%;
        justify-content: center;
        margin: auto;
        display: flex;
        /* display: none; */
        flex-flow: row wrap;
    }

    .sectionHeight {
        max-height: 600px;
        overflow: hidden;
    }

    .news-card {
        position: relative;
        display: flex;
        margin: 5px;
        padding: 5px;
        border-radius: 17px;
        box-shadow: 0 0 0 0 transparent;
        background-color: var(--jamTracksItemBackground);
        cursor: pointer;
        overflow: hidden;
    }

    .news-card:hover {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
    }

    .news-card-jam-a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: row wrap;
        border-radius: 18px;
    }

    .news-card-img {
        width: 100%;
        height: 100%;
        margin: auto;
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        transition: .3s ease-in-out;
        animation: 2s variantPreviewAnimation;
        /* animation-fill-mode: forwards; */
        z-index: 2;
        /* opacity: .8; */
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .news-card-img-featured {
        height: 100%;
        display: flex;
        margin: auto;
        transition: .3s ease-in-out;
    }

    @keyframes variantPreviewAnimation {
        from {
            height: 0;
            /* opacity: 0; */
        }

        to {
            height: 100%;
            /* opacity: 1; */
        }
    }

    .img-hover {
        width: 100%;
        height: 150px;
        display: flex;
        flex-flow: row wrap;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 15px;
        justify-content: center;
    }

    .news-card:hover .img-hover {
        overflow: hidden;
        /* opacity: 1; */
    }

    .news-card:hover .news-card-img-zoom {
        transform: scale3d(1.08, 1.08, 1.08);
        /* opacity: 1; */
    }

    .shopItemBanner {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: auto;
        max-width: 140px;
        min-height: 20px;
        padding: 8px 10px;
        display: none;
    }

    .shopItemBannerBG {
        width: auto;
        height: 100%;
        overflow: hidden;
        border-radius: 10px;
        display: flex;
        margin: auto;
        padding: 3px 5px;
    }

    .shopItemBannerBG-Yellow {
        background-color: var(--shopItemBannerYellow);
    }

    .shopItemBannerBG-White {
        background-color: var(--shopItemBannerWhite);
    }

    .shopItemBannerText {
        font-size: 8px;
        color: black;
        display: flex;
        margin: auto;
        text-align: center;
        text-transform: uppercase;
        padding: 0 5px;
        text-wrap: nowrap;
        font-family: 'Titillium Web';
        font-weight: 900;
        font-style: italic;
    }

    .pop-up-card {
        border-radius: 0 0 15px 15px;
        width: auto;
        height: 100%;
        overflow: hidden;
        transition: .3s;
    }

    /* .pop-up-content {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    } */

    .price {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        font-size: 15px;
        color: rgb(255, 255, 255, .8);
    }

    .price-item {
        display: flex;
        align-items: center;
    }

    .price img {
        width: 13px;
        margin: auto 5px;
        font-family: 'Poppins';
    }

    .price-style {
        display: flex;
        margin: auto 0 auto auto;
    }

    .news-title {
        text-align: left;
        margin-left: 5px;
        font-size: 13px;
        font-family: var(--fontFamilyItemTitle);
        font-weight: 400;
        text-transform: uppercase;
        transition: .2s;
    }

    .news-card:hover .news-title {
        transform: translateY(-5px);
    }

    .news-title-type {
        margin: 0 5px;
        max-height: 0;
        opacity: 0;
        font-family: 'Poppins';
        font-size: 11px;
        font-weight: 200;
        transition: .2s;
    }

    .news-card:hover .news-title-type {
        max-height: 20px;
        opacity: 1;
    }

    .itemOutShop {
        text-align: left;
        font-size: 13px;
        font-style: italic;
        transition: .2s;
        opacity: 0;
        max-height: 0px;
        margin-left: 5px;
        margin-bottom: -10px;
    }

    .news-card:hover .itemOutShop {
        opacity: 1;
        max-height: 30px;
        margin-bottom: 0;
    }

    .slideshow {
        display: block;
    }

    @keyframes scrollBigBanner {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .preview-bigBanner {
        animation: scrollBigBanner 10s linear infinite;
    }

    .bundleTile {
        width: 350px;
        height: 350px;
    }

    .sparkTile {
        width: 150px;
        height: 250px;
    }

    .smallTile {
        width: 150px;
        height: 200px;
    }

    .littleTile {
        width: 170px;
        height: 220px;
    }

    .bigTile {
        width: 350px;
        height: 250px;
    }

    .megaTile {
        width: 350px;
        height: 320px;
    }

    .megaTile .news-card-img {
        width: 100%;
        height: 100%;
    }
}

@media only screen and (min-width : 1220px) {
    #loading-waiting {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0%;
        left: 0%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 30;
        pointer-events: none;
    }

    .loader {
        width: 150px;
        display: flex;
        margin: auto;
        position: absolute;
    }

    .closeItem {
        position: absolute;
        width: 100%;
        top: 30px;
        left: 0;
        right: 0;
        display: flex;
        margin: auto;
    }

    .button-cta {
        border: none;
        cursor: pointer;
        background-color: rgba(29, 29, 29, 0.8);
        border-radius: 20px;
        color: white;
        transition: .3s;
        display: flex;
        margin: auto;
        width: 100%;
        height: 40px;
    }

    .button-cta p {
        text-align: center;
        display: flex;
        margin: auto;
    }

    .container {
        width: 100%;
        display: block;
        margin-top: 1px;
    }

    .shop-container {
        width: 100%;
        display: block;
        padding: 0 10px;
        border-radius: 10px;
        margin: 20px 0;
    }

    .container-boutique {
        margin: 0 auto;
        width: 60%;
    }

    .shop-header {
        position: fixed;
        z-index: 5;
        bottom: 15px;
        right: 5px;
        width: auto;
        height: 50px;
        border-radius: 15px;
        background-color: rgba(0, 0, 0, 0.70);
    }

    .questCategoryFilters {
        position: fixed;
        margin: auto 10px;
    }

    .cosmeticsFilterRarity {
        min-width: 250px;
        width: 100%;
        height: 100%;
        display: flex;
        margin: auto 2px;
        position: relative;
    }

    .cosmeticsFilterRarityContainer {
        margin: 5px auto;
        padding-bottom: 5px;
        width: auto;
        max-height: 550px;
        overflow-y: scroll;
    }

    .filterRarityItem {
        margin: 4px;
        width: 100%;
        min-height: 30px;
        height: auto;
        padding: 2px 4px;
    }

    .filterRarityItemP {
        width: 100%;
    }

    .shop-countdown {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .shop-countdown-title {
        font-size: 15px;
        font-family: 'Oswald';
        text-transform: uppercase;
        padding: 0 10px;
    }

    .shop-countdown-text {
        font-size: 15px;
        font-style: italic;
        font-family: 'Oswald';
        text-transform: uppercase;
        padding: 0 10px;
    }

    #shop-featured {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        width: 100%;
        flex-direction: column;
    }

    .sectionContainer {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        width: 100%;
        flex-direction: column;
    }

    .sectionSpacing {
        margin: 20px auto;
    }

    .sectionContent {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        max-height: 650px;
        margin: auto;
    }

    .sectionContentSparks {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        margin: auto;
    }

    .sectionSparks {
        width: 100%;
        justify-content: left;
        margin: auto;
        display: flex;
        flex-flow: row wrap;
    }

    .sectionHeight {
        max-height: 520px;
        overflow: hidden;
    }

    .sectionContainer h3 {
        margin-left: 10px;
        text-transform: uppercase;
        font-family: var(--fontFamilyItemTitle);
        font-weight: 200;
        font-size: 25px;
    }

    .button-sparks-more {
        margin: 20px auto;
        width: 750px;
        height: 40px;
        display: flex;
    }

    .button-sparks-more p {
        text-align: center;
        display: flex;
        margin: auto;
    }

    .bundleTile {
        width: 300px;
        height: 300px;
    }

    .sparkTile {
        width: 200px;
        height: 200px;
    }

    .smallTile {
        width: 210px;
        height: 238px;
    }

    .littleTile {
        width: 280px;
        height: 420px;
    }

    .bigTile {
        width: 574px;
        height: 420px;
    }

    /* width: 320px; */
    .megaTile {
        width: 1162px;
        height: 490px;
    }

    .bigTile .news-card-img {
        width: 80%;
        background-position: top;
    }

    .megaTile .news-card-img {
        background-position: top;
        width: 80%;
    }

    .news-card {
        position: relative;
        width: 200px;
        height: 300px;
        display: flex;
        margin: 5px;
        padding: 5px;
        border-radius: 18px;
        box-shadow: 0 0 0 8px transparent;
        background-color: var(--jamTracksItemBackground);
        transition: .3s;
        overflow: hidden;
        cursor: pointer;
    }

    .news-card:hover {
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 1);
    }

    .news-card-jam-a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: row wrap;
        border-radius: 18px;
        overflow: hidden;
    }

    .news-card-img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border: none;
        transition: .3s ease-in-out;
        /* animation: 2s variantPreviewAnimation; */
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .news-card-img-featured {
        height: 100%;
        display: flex;
        transition: .3s ease-in-out;
    }

    @keyframes variantPreviewAnimation {
        from {
            height: 0;
        }

        to {
            height: 100%;
        }
    }

    .img-hover {
        width: 100%;
        height: 200px;
        display: flex;
        flex-flow: row wrap;
        margin: 0 auto;
        overflow: hidden;
        justify-content: center;
        border-radius: 15px;
    }

    .news-card:hover .img-hover {
        overflow: hidden;
        opacity: 1;
    }

    .news-card:hover .news-card-img-zoom {
        /* transform: scale3d(1.08, 1.08, 1.08); */
        opacity: 1;
    }

    .shopItemBanner {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 95%;
        height: 30px;
        margin: 7px auto auto 5px;
        padding: 0 3px;
        z-index: 5;
        display: none;
    }

    .shopItemBannerBG {
        width: auto;
        height: 100%;
        overflow: hidden;
        border-radius: 15px;
        display: flex;
        margin: auto;
    }

    .shopItemBannerBG-Yellow {
        background-color: var(--shopItemBannerYellow);
    }

    .shopItemBannerBG-White {
        background-color: var(--shopItemBannerWhite);
    }

    .shopItemBannerText {
        font-size: 12px;
        color: black;
        display: flex;
        margin: auto;
        text-align: center;
        text-transform: uppercase;
        padding: 0 10px;
        text-wrap: nowrap;
        font-family: 'Titillium Web';
        font-weight: 900;
        font-style: italic;
    }

    .pop-up-card {
        width: auto;
        overflow: hidden;
        transition: .3s;
        border-radius: 0 0 15px 15px;
        display: flex;
    }

    /* .news-card:hover .pop-up-card-hover,
    .sparkTile:hover .pop-up-card {
        background-color: rgb(0, 0, 0, 0.6);
    } */

    .pop-up-content {
        margin: auto 0 0 0;
        width: 100%;
    }

    .price {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        font-size: 13px;
        margin: 0;
        color: rgb(255, 255, 255, .8);
    }

    .price-item {
        display: flex;
        margin: auto 3px;
    }

    .price img {
        width: 15px;
        height: 15px;
        margin: auto 5px;
        font-family: 'Poppins';
    }

    .price-style {
        display: flex;
        margin: auto 5px auto auto;
        transition: .2s;
        transform: rotate(0deg);
    }

    .news-card:hover .price-style {
        transform: rotate(90deg);
    }

    .price-style img {
        width: 15px;
        height: 15px;
        display: flex;
        margin: auto;
    }

    .news-title {
        margin: 0 5px;
        text-align: left;
        text-transform: uppercase;
        font-family: var(--fontFamilyItemTitle);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 1px;
        /* transition: .2s; */
    }

    /* .news-card:hover .news-title {
        transform: translateY(-5px);
    } */

    .news-title-type {
        margin: 0 5px;
        max-height: 0;
        opacity: 0;
        font-family: 'Poppins';
        font-size: 11px;
        font-weight: 200;
        transition: .2s;
    }

    .news-card:hover .news-title-type {
        max-height: 20px;
        opacity: 1;
    }

    .news-description {
        font-size: 11px;
    }

    .itemOutShop {
        text-align: left;
        font-size: 13px;
        font-style: italic;
        transition: .2s;
        opacity: 0;
        max-height: 0px;
        margin-left: 5px;
        margin-bottom: -10px;
    }

    .news-card:hover .itemOutShop {
        opacity: 1;
        max-height: 30px;
        margin-bottom: 0;
    }

    .slideshow {
        display: block;
    }

    @keyframes scrollBigBanner {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .preview-bigBanner {
        animation: scrollBigBanner 10s linear infinite;
    }
}