/* Redeem Page */
.sports-page {
    display: flex;
    flex-direction: column;
}

.sports-page h3 {
    text-transform: uppercase;
    margin: 0 auto;
    margin-top: 19px;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 57px;
}

.sports-page h3.item-type {
    margin-bottom: 28px;
}

.sports-page .redeem-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    margin-bottom: 22px;
}

.sports-page .redeem-container > img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sports-page .redeem-container > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.7);
    font-weight: 900;
    font-size: 13px;
    height: 100%;
    color: white;
}

.sports-page .redeem-item-container {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.sports-page .redeem-item-container .product-container {
    height: 177px;
    width: 177px;
    border-radius: 8px;
    background-color: white;
    color: black;
}

.sports-page .redeem-item-container .product-container .product {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

.sports-page .redeem-item-container .product-container .product img {
    width: 100%;
    height: auto;
}

.sports-page .redeem-item-container ul {
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    right: 0;
}

.sports-page .slider-container {
    width: 177px;
    margin: auto;
}

.sports-page .redeem-item-container ul > li.prev {
    position: absolute;
    left: 15px;
    list-style: none;
}

.sports-page .redeem-item-container ul > li.next {
    position: absolute;
    right: 15px;
    list-style: none;
}

.sports-page .redeem-item-container ul > li > img {
    height: 24px;
    width: 12px;
}

.sports-page #item-name {
    width: 40%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 12px;
    text-align: center;
    color: var(--theme-color);
    font-weight: 900;
}

.sports-page .info-container {
    display: flex;
    flex-direction: row;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 12px;
    font-weight: 900;
    font-size: 14px;
}

.sports-page .info-container > div:not(:nth-child(2)) {
    width: 49%;
}

.sports-page .info-container > div:nth-child(3) {
    display: flex;
    flex-direction: row;
}

.sports-page #redeem-button {
    width: 70%;
    height: 35px;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    background-color: var(--theme-color-success);
    border-radius: 16px;
    text-decoration: none;
}

.sports-page #player-points,
.sports-page #required-points,
.sports-page #stock-left {
    margin-left: 3px;
}
/* Redeem Page end */