body {
    text-align: center;
    background-color: #050a14;
    color: white;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    text-align: center;
    font-family: 'Poppins';
    font-weight: 100;
}

@media only screen and (max-width : 1220px) {
    .bp-selection {
        width: 100%;
        display: flex;
        margin: 50px auto;
    }

    .bp-selection-modes {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
    }

    .bp-mode-card {
        position: relative;
        width: 350px;
        height: auto;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        margin: 7px;
        padding: 7px;
        border-radius: 15px;
        box-shadow: 0 0 0 8px transparent;
        overflow: hidden;
        transition: .3s;
    }

    .bp-mode-card:hover {
        box-shadow: 0 0 0 4px white;
    }

    .bp-mode-card a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: row wrap;
        text-decoration: none;
        border-radius: 13px;
        overflow: hidden;
    }

    .bp-mode-card-hover {
        position: absolute;
        z-index: 0;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #00000066;
        border-radius: 15px;
        transition: .3s;
    }

    .bp-mode-card:hover .bp-mode-card-hover {
        background-color: #00000080;
    }

    .bp-mode-card-tile {
        width: 100%;
        height: 100%;
        display: flex;
        margin: auto;
        background-color: var(--battlepassItemBackground);
        background: linear-gradient(-90deg, #1D1D37, #1a1a1a);
    }

    .bp-mode-card-tile-img {
        width: 100%;
        height: 100%;
        display: flex;
        margin: auto;
    }

    .bp-mode-card-header {
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto auto 5px 20px;
        border-radius: 0 0 15px 15px;
    }

    .bp-mode-card-header-title {
        text-align: left;
        text-transform: uppercase;
        font-family: var(--fontFamilyItemTitle);
        font-size: 18px;
    }

    .bp-mode-card-header-timer {
        text-align: left;
        font-size: 14px;
        color: var(--itemColorTitleValue);
    }

    .title-page {
        font-family: 'HeadingNow';
        font-weight: 400;
        font-size: 17px;
        text-transform: uppercase;
        text-align: left;
        margin-left: 10px;
    }

    .page-rewards-container {
        display: inline-flex;
        flex-flow: row wrap;
        justify-content: center;
        box-sizing: border-box;
        width: 100%;
    }

    .page-rewards {
        display: inline-flex;
        flex-flow: row wrap;
        justify-content: left;
        width: 100%;
        align-items: center;
        margin: auto;
    }

    .item-card {
        position: relative;
        display: inline-block;
        box-sizing: border-box;
        padding: 5px;
        width: 130px;
        min-height: 200px;
        height: auto;
        border: none;
        border-radius: 18px;
        cursor: pointer;
        overflow: hidden;
        transition: .3s;
    }

    .item-card-icon {
        border-radius: 15px;
        overflow: hidden;
    }

    .item-card .item-card-icon-img {
        display: flex;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
        transition: .3s;
        border-radius: 15px;
    }

    .item-card-tag-free {
        position: absolute;
        top: 10px;
        left: 10px;
        width: auto;
        height: auto;
        padding: 5px;
        background-color: var(--shopItemBannerYellow);
        border-radius: 15px;
        overflow: hidden;
    }

    .item-card-tag-free-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .item-card-tag-free-p {
        display: block;
        margin: 0;
        text-align: center;
        font-size: 13px;
        color: black;
    }

    .item-card-header {
        color: white;
        font-size: 25px;
        min-height: 30px;
        width: 100%;
    }

    .item-card-header-title {
        text-align: left;
        text-transform: uppercase;
        font-family: var(--fontFamilyItemTitle);
        font-size: 13px;
    }

    .footer {
        height: auto;
    }
}

@media only screen and (min-width : 1220px) {

    html,
    body {
        height: 100%;
        margin: 0;
    }

    body {
        display: grid;
        grid-template-rows: auto 1fr auto;
        min-height: 100vh;
    }

    .container {
        display: block;
    }

    .bp-selection {
        width: 100%;
        display: flex;
        margin: 50px auto;
    }

    .bp-selection-modes {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
    }

    .bp-mode-card {
        position: relative;
        width: 350px;
        height: auto;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        margin: 7px;
        padding: 7px;
        border-radius: 15px;
        box-shadow: 0 0 0 12px transparent;
        overflow: hidden;
        transition: .2s;
    }

    .bp-mode-card:hover {
        box-shadow: 0 0 0 4px white;
    }

    .bp-mode-card a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: row wrap;
        text-decoration: none;
        border-radius: 13px;
        overflow: hidden;
    }

    .bp-mode-card-hover {
        position: absolute;
        z-index: 0;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        /* background-color: #00000033; */
        border-radius: 15px;
        transition: .3s;
    }

    .bp-mode-card:hover .bp-mode-card-hover {
        background-color: #00000080;
    }

    .bp-mode-card-tile {
        width: 100%;
        height: 100%;
        display: flex;
        margin: auto;
        background-color: var(--battlepassItemBackground);
        background: linear-gradient(-90deg, #1D1D37, #1a1a1a);
    }

    .bp-mode-card-tile-img {
        width: 100%;
        height: 100%;
        display: flex;
        margin: auto;
    }

    .bp-mode-card-header {
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto auto 5px 20px;
        border-radius: 0 0 15px 15px;
    }

    .bp-mode-card-header-title {
        text-align: left;
        text-transform: uppercase;
        font-family: var(--fontFamilyItemTitle);
        font-size: 18px;
    }

    .bp-mode-card-header-timer {
        text-align: left;
        font-size: 14px;
        color: var(--itemColorTitleValue);
    }

    .title-page {
        font-size: 25px;
        text-transform: uppercase;
        text-align: left;
        margin-left: 70px;
    }

    .page-rewards-container {
        display: inline-flex;
        flex-flow: row wrap;
        justify-content: center;
        box-sizing: border-box;
        width: 100%;
        margin: 50px auto;
    }

    .page {
        width: 90%;
        display: flex;
        flex-flow: row wrap;
    }

    .title-page {
        font-size: 25px;
        text-transform: uppercase;
        text-align: left;
        width: 100%;
        margin-left: 10px;
    }

    .page-rewards {
        width: 100%;
        display: inline-flex;
        flex-flow: row wrap;
        justify-content: left;
        align-items: center;
        margin: auto;
    }

    .item-card {
        position: relative;
        display: inline-block;
        margin: 5px;
        padding: 5px;
        width: 200px;
        min-height: unset;
        height: 200px;
        border-radius: 18px;
        box-shadow: 0 0 0 12px transparent;
        cursor: pointer;
        overflow: hidden;
        transition: .2s;
    }

    .item-card:hover {
        box-shadow: 0 0 0 4px rgb(255, 255, 255);
    }

    .item-card-hover {
        position: absolute;
        padding: 5px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        background-color: var(--battlepassItemBackground);
        opacity: 0;
        transition: .2s;
    }

    .item-card:hover .item-card-hover {
        opacity: 1;
    }

    .item-card-icon {
        display: flex;
        margin: auto;
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
    }

    .item-card-icon-img {
        width: 100%;
        height: auto;
    }

    .item-card-tag-free {
        position: absolute;
        z-index: 2;
        display: flex;
        margin: auto;
        top: 10px;
        left: 10px;
        width: auto;
        height: 25px;
        padding: 5px;
        background-color: var(--shopItemBannerYellow);
        border-radius: 15px;
        overflow: hidden;
    }

    .item-card-tag-free-content {
        width: 100%;
        display: flex;
        margin: 0;
        justify-content: center;
        align-items: center;
    }

    .item-card-tag-free-p {
        display: block;
        margin: 0;
        text-align: center;
        font-size: 13px;
        color: black;
    }

    .item-card-header {
        position: absolute;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: left;
        width: auto;
        max-height: 100%;
        left: 15px;
        bottom: 5px;
        right: 15px;
    }

    .item-card-header-title {
        width: 100%;
        font-size: 13px;
        font-family: var(--fontFamilyItemTitle);
        text-transform: uppercase;
        text-align: left;
        transition: .3s;
        color: white;
    }

    .item-card-header-title-desc {
        font-size: 13px;
    }
}