.number {
    width: 50px;
    height: 50px;
    display: flex;
    border: 5px solid rgba(13, 34, 66, 1);
    color: #fff;
    font-size: 24px;
    justify-content: center;
    border-radius: 2rem;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .number {
        align-items: center;
    }
}

@media screen and (min-width: 992px) {
    .sub-number {
        margin-left: 1px;
    }
}

.card {
    background-color: rgba(13, 34, 66, 1);
    border-radius: 1rem;
}

@keyframes shine {
    0% {
        background-position: -10%;
    }

    50% {
        background-position: 100%;
    }

    100% {
        background-position: 200%;
    }
}

.discount-ribbon {
    position: absolute;
    top: 0.5em;
    right: -0.5em;
    background-color: rgba(145, 3, 65, 0.65);
    color: white;
    padding: 0.2em 1.7em 0.2em 0.5em;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 0.25em 0.375em rgba(0, 0, 0, 0.4);

    /* Dark Gradient Background for Subtle Shine Effect */
    background: linear-gradient(110deg, rgba(90, 0, 40, 0.65), rgba(145, 3, 65, 0.75), rgba(90, 0, 40, 0.65));
    background-size: 200%;
    animation: shine 2s linear infinite;
}

.unlimited-text {
    font-weight: bold;
    background: linear-gradient(270deg, rgb(0, 0, 139), rgb(70, 130, 180), rgb(60, 179, 113), rgb(255, 215, 0), rgb(255, 0, 0));
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 10s ease infinite;
}


.manual-label {
    background-color: rgba(133, 3, 85, 0.65);
    padding: 0.2em;
    border-radius: 0.25em;
    color: whitesmoke;
    box-shadow: 0 0.25em 0.375em rgba(0, 0, 0, 0.4);

    /* Dark Gradient Background for Subtle Shine Effect */
    background: linear-gradient(270deg,
            rgb(139, 0, 0),
            rgb(120, 40, 20),
            rgb(160, 60, 30),
            rgb(120, 90, 40),
            rgb(113, 60, 60));
    background-size: 200%;
    animation: gradient-animation 5s ease infinite;
}

.auto-label {
    background-color: rgba(133, 3, 85, 0.65);
    padding: 0.2em;
    border-radius: 0.25em;
    color: whitesmoke;
    box-shadow: 0 0.25em 0.375em rgba(0, 0, 0, 0.4);

    /* Dark Gradient Background for Subtle Shine Effect */
    background: linear-gradient(270deg,
            rgb(0, 0, 139),
            rgb(20, 40, 120),
            rgb(50, 90, 160),
            rgb(60, 140, 120),
            rgb(60, 179, 113));
    background-size: 200%;
    animation: gradient-animation 5s ease infinite;
}

.grocery-label {
    background-color: rgba(3, 133, 42, 0.65);
    padding: 0.2em;
    border-radius: 0.25em;
    color: whitesmoke;
    box-shadow: 0 0.25em 0.375em rgba(0, 0, 0, 0.4);

    /* Green Gradient Background */
    background: linear-gradient(270deg,
            rgb(0, 100, 0),
            rgb(34, 139, 34),
            rgb(50, 205, 50),
            rgb(34, 139, 34),
            rgb(0, 128, 0));
    background-size: 200%;
    animation: gradient-animation 5s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5em;
    width: 12em;
    border-radius: 0.5em;
}

.list-group-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15em;
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    max-height: 75%;
    margin-bottom: 1em;
    object-fit: contain;
    transition: transform 0.2s;
}

.product-img:hover {
    transform: scale(1.2);
}

.product-name-form {
    margin-bottom: 0;
    overflow: visible;
    white-space: normal;
    line-height: 1.2em;
}

.nominal-price {
    color: whitesmoke;
}

.price-strikethrough {
    color: red;
    text-decoration: line-through;
    margin-right: 0.5em;
}

.price-discounted {
    color: green;
    font-weight: bold;
}

@media (max-width: 768px) {
    .product-card {
        width: 100%;
    }

    .product-card {
        display: inline-block;
        width: calc(50% - 0.5em);
        height: calc(50% - 0.5em);
    }
}

/*.list-nominal{*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    width: 100%;*/
/*}*/
/*.nominal{*/
/*    position: relative;*/
/*    flex:none;*/
/*}*/
/*.label-nominal{*/
/*    width:100%;*/
/*    display: flex;*/
/*    text-align: center;*/
/*    line-height: 1rem;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    height: 54px;*/
/*    padding:.85rem;*/
/*    cursor: pointer;*/
/*    font-weight: 600;*/
/*    border-radius: 1rem;*/
/*    border:1px solid #2a528a;*/
/*    background-color: #0b274e;*/
/*    color:#fff;*/
/*}*/
/*.label-nominal:hover{*/
/*    background-color: #2a528a;*/
/*    color: #fff;*/
/*    border: 1px solid #2a528a;*/
/*}*/
/*.nominal input[type="radio"]{*/
/*    display: none;*/
/*    -webkit-appearance: none;*/
/*    -moz-appearance: none;*/
/*    appearance: none;*/
/*}*/
/*.nominal input[type="radio"]:checked + .label-nominal{*/
/*    background-color: #3abaf4;*/
/*    box-shadow: 0 0 2.22222vw #3abaf4, inset 0 2.40741vw 8.05556vw #3abaf4, inset 0 -8.24074vw 11.48148vw #3abaf4;*/
/*    color:#fff;*/
/*    border:1px solid #3abaf4;*/
/*}*/
.list-payment {
    display: flex;
    flex-direction: column;
}

.payment {
    position: relative;
    margin-top: .8rem;
}

.payment:first-child {
    margin-top: 0;
}

.label-payment {
    position: relative;
    padding: .85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    border-radius: 1rem;
    border: 1px solid #2a528a;
    background-color: #0b274e;
    color: #fff;
}

.img-payment {
    width: 100px;
    height: auto;
    object-fit: cover;
}

.title-payment {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.678);
    font-weight: bold;
}

.payment input[type="radio"] {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.payment input[type="radio"]:checked+.label-payment .title-payment {
    color: rgba(255, 255, 255, 0.89);
}

.payment input[type="radio"]:checked+.label-payment {
    background-color: #2a528a;
    color: #fff;
    border: 1px solid #2a528a;
}

.label-payment .check-payment {
    display: none;
}

.label-payment:hover {
    background-color: #2a528a;
    color: #fff;
    border: 1px solid #2a528a;
}

.payment input[type="radio"]:checked+.label-payment .check-payment {
    position: absolute;
    display: block;
    top: -1px;
    right: -1px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 15px 0px 15px;
    padding: 3px 8px;
    font-size: 12px;
    background: #0B274E;
}

.label-payment .info-payment {
    display: none;
}

.payment input[type="radio"]:checked+.label-payment .info-payment {
    position: absolute;
    display: block;
    bottom: -1px;
    left: -1px;
    color: #fff;
    display: flex;
    align-items: center;
    width: calc(100% + 2px);
    ;
    border-radius: 0px 0px 15px 15px;
    padding: 5px 10px;
    font-size: 12px;
    background: rgb(11, 39, 78, .5);
}

.label-nominal .check-nominal {
    display: none;
}

.nominal input[type="radio"]:checked+.label-nominal .check-nominal {
    position: absolute;
    display: block;
    top: -1px;
    right: -1px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 15px 0px 15px;
    padding: 5px 10px;
    font-size: 12px;
    background: #0B274E;
}