.my-points {
    position: relative;
    background-color: var(--bg-primary);
    padding: 35px;
    border-radius: 5px;

    & p {
        color: var(--game-text-primary);
        text-align: center;
        opacity: .7;
        margin-top: 25px;
    }
}

.welcome-points {
    border-bottom: 2px solid #535151;
    padding-bottom: 10px;
    margin-bottom: 20px;

    & h2 {
        color: var(--game-text-primary);
        font-size: 1.5rem;
        font-weight: 700;
    }

    & h3 {
        color: var(--game-text-primary);
        font-size: 1.2rem;
        opacity: .5;
        font-weight: 400;
    }
}

.container-points {
    & h2 {
        color: var(--game-text-primary);
        font-size: 1.2rem;

        & strong {
            color: var(--primary);
        }
    }
}

.content-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    gap: 15px;
}

.item-point {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background: var(--modal-bg);
    border-radius: 5px;
    gap: 5px 10px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 5px 10px var(--bg-shadow);
    transition: .25s cubic-bezier(0.68, -0.55, 0.27, 1.55);

    &:hover {
        box-shadow: 0 0 10px rgba(77, 182, 172, 0.10);
    }

    &.not-marked:hover {
        box-shadow: 0 0 10px rgba(182, 77, 77, 0.1);
    }

    & .redeem {
        & .btn-primary {
            background: var(--primary);
            padding: 15px 20px;
            color: #fff;
            font-weight: 700;
            border-radius: 5px;
            text-align: center;
            width: 100%;
            transition: .25s cubic-bezier(0.68, -0.55, 0.27, 1.55);

            &:hover {
                transform: scale(.98);
                opacity: .8;
            }

            &:active {
                transform: scale(.98);
                opacity: 1;
            }
        }
    }

    & .info {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;

        & .mark {
            color: var(--game-text-primary);
            font-size: 1.3rem;
        }

        & .divisor {
            color: var(--primary);
            font-weight: bold;
            font-size: 2rem;
            margin: 0 20px;
        }

        & .value {
            display: flex;
            flex-direction: column;
            justify-content: center;

            & h2 {
                color: var(--primary);
                font-size: 2rem;
                line-height: 70%;
                font-weight: 700;

                & small {
                    font-size: 1rem;
                }
            }

            & h3 {
                color: var(--game-text-primary);
                font-size: .8rem;
                font-weight: 400;
                font-weight: 300;
            }
        }
    }

    &.not-marked .info {
        opacity: .4;
    }

    &.not-marked .redeem {
        & .btn-danger {
            background: var(--danger);
            padding: 15px 20px;
            color: #fff;
            font-weight: 700;
            border-radius: 5px;
            text-align: center;
            width: 100%;
            transition: .25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            position: relative;
            margin-top: 10px;
            text-transform: uppercase;
            cursor: not-allowed !important;

            &::before {
                content: 'Restante';
                color: var(--game-text-primary);
                text-transform: capitalize;
                position: absolute;
                font-size: 1rem;
                top: -20px;
                left: 50%;
                transform: translate(-50%, 0);
                font-weight: 300;
            }
        }
    }
}

@media (max-width: 700px) {
    .item-point {
        flex-direction: column;

        & .redeem {
            width: 100% !important;

            & .btn-danger::before {
                top: 50% !important;
                left: 10px !important;
                transform: translate(0, -50%) !important;
                font-size: 12px !important;
                opacity: .6;
            }
        }
    }
}

@media (max-width: 530px) {

    .my-points {
        padding: 35px 15px;
    }

    .welcome-points {
        & h2 {
            font-size: 1.2rem;
        }

        & h3 {
            font-size: 1rem;
        }
    }

    .item-point {
        padding: 10px;

        & .info {
            gap: 0 5px;

            & .value {
                & h2 {
                    font-size: 1rem;
                }
            }

            & .mark {
                font-size: 1rem;
            }

            & .divisor {
                margin: 0;
            }
        }
    }
}

@media (max-width: 340px) {
    & .btn-danger {
        text-align: end !important;
    }
}